Base64 is a set of encoding schemes that represent binary data in an ASCII string format.
0
votes
0answers
3 views
Uiimage to Base64 and back
I tri to convert NSData to Base64 to save an UIImage in the database, in a blob, that is located at a remote server.
To parse:
NSData *imagenData = UIImagePNGRepresentation(self.imagen.image);
...
0
votes
0answers
23 views
Java, convert string to a RSA publicKey
i am trying ton convert a string representation of a public key into a publicKey java object use to encrypt data but i keep getting the following error below:
...
-2
votes
0answers
28 views
How to send Image to server using webservices in android? [closed]
Bitmap bmp=BitmapFactory.decodeResource(getResources(), R.drawable.moon);
ByteArrayOutputStream bao=new ByteArrayOutputStream();
bmp.compress(Bitmap.CompressFormat.JPEG, 100, bao);
byte [] ...
1
vote
1answer
38 views
How can I convert a zip/compressed file into a string of characters in PHP?
I'm making a php script that would create/build an XML request, zip the xml and then encode it into base64.
Here's a snippet of my code:
$url = "http://cc-dev.com/servlet/Integration";
$xml = ...
0
votes
2answers
27 views
Why eclipse impose restriction on BASE64Encoder?
I came across a scenario where I was required to use BASE64Encoder for encoding and decoding.
I found that in eclipse, restriction is on this class.
I want to know is there any specific reason due to ...
0
votes
1answer
27 views
converting text string to image
I am converting a text string into an image in my android application. By following various posts on SO, I have written this code. But it doesn't display the image.
Is there something wrong with the ...
0
votes
1answer
26 views
encode string as utf-16 to base64 in javascript
I'm struggling to find any resources on this online, which is concerning.
I've been reading about UCS-2 and UTF-16 woes, but I can't find a solution.
I need to get a value from an input:
var val = ...
1
vote
0answers
22 views
Out of memory Exception during base64 encoding in android?
I have to upload four images from android to server using multipart entity.I am sending images by decoding it with base64.And it shows out of memory exception.I have posted the code below.
Please ...
1
vote
2answers
58 views
How to parse base64 image from JSON
What's the reason that I can't parse a base64 string from a JSON request? when I make it a small string it works.
To clarify a little:
else if([connection isEqual:self.appearanceConnection]){
...
0
votes
0answers
6 views
browser not recognizing bytes of image retrieved from server and output into img src tag
I am retrieving an array of bytes of an image from the server using the following C#
string id = ctx.Request.QueryString["id"];
int bookId = -1;
if (int.TryParse(id, out bookId))
...
0
votes
1answer
27 views
Google Storage REST PUT With Signed URLs
I'm trying to upload the base64 data of an image directly through javascript to Google Storage using signed URLs as authentication, which is apparently possible to do.
According to ...
0
votes
0answers
10 views
Iframe src base64 encoded not working as expected
I'm trying to set an iframe with the src encoded, in this case base64. This is kinda of what i want to do. Note: there's nothing wrong with the link, this is just an example.
<?php
$src = ...
0
votes
1answer
17 views
While converting string data to an Image via imageIcon, height and width are getting -1, in java2EE
While converting string data to an Image via imageIcon, height and width are getting -1. What could be the problem?
String image = request.getParameter("image");
if (image != null && ...
3
votes
2answers
28 views
Ruby character encoding when using Base64.encode
Looking at the source of Ruby's Base64.encode I cannot determine what character encoding a string is converted to, if at all, before encoding that data in Base64. A Utf-8 string encoded in Base64 is ...
0
votes
4answers
42 views
Eval Base64 virus Wordpress
I'm using a wordpress blog today i got a comment like this .
<!-- unsafe comment zapped --> ...
0
votes
2answers
21 views
base64 encode and serialize array WHMCS
I use WHMCS API. I am trying to use their API to make request.That api need that array need to be serialize and in base64_encode. They give example with php and I try to convert it into C# code but it ...
0
votes
0answers
18 views
C HMAC_SHA1 AWS Authentiation
Folks, trying to generate the AWS KeyId:Signature REST request using C. As a matter of fact, patching mod_headers.c for Apache to do just that, so I can use mod_proxy to an S3 bucket.
In any case, ...
0
votes
2answers
26 views
png image being cropped when saved from base64_decode
I'm trying to create an image in my server's uploads directory from base64 code sent from the client-side. Below's the code for same :
<?php
$dataURI = $_REQUEST['dataURI'];
$dataURI = ...
1
vote
1answer
28 views
Decoding Error by Base64 Usage
I have some troubles with decoding an encoded file with base64.
I use this command to encode an XML file within a script:
base64 $file_path | perl -pe 's/\n/\\n/g'
And it works fine.
But when I ...
1
vote
1answer
48 views
Foreach loop - performance with long string
I'm facing a problem with performance in my C# application. The problem is a quite long string - base64 coded, but not ordinary. Even characters has to be moved 5 characters up and odd ones 5 ...
0
votes
0answers
61 views
PHP - How to decode base64 string to byte array?
On the client side, users send encoded image file.(and also name and description of the item)
But, what I receive is only empty file...
In the server DB, I received the encoded image file with string ...
1
vote
1answer
61 views
Converting base64 value to number
I am receiving data regarding vehicle speeds. I have no control over the input format, but I do need to use the data.
The data is sent to me as Base64 encoded values. Apparently, the data started ...
0
votes
0answers
31 views
Android - Encoding image and sending it to the server
I am working on encoding the selected image from the gallery and want to send it to the server.
I succeeded to send name and description of the product which is text form.
but, I don't know how to ...
0
votes
2answers
57 views
Java Base64 encoded string vs. .NET Base64 encoded string
Problem: I have a .NET HTTP Handler taking an HTTP POST of XML which is originating, I believe, from a Java system. One element contains a base64 string encoded document (current test file is a ...
0
votes
0answers
36 views
create self encrypted php file
A couple of years ago I stumbled with a "self encrypted php file".
For what I can remember, its code was encoded several times in base 64 and was constantly verifying its own file size.
This was ...
0
votes
2answers
32 views
Ruby code for openssl to generate fingerprint
I need the ruby equivalent of the following:
openssl x509 -sha1 -fingerprint -noout -in cert.pem
The code that I wrote is:
data = File.read("cert.pem")
data["-----BEGIN CERTIFICATE-----\n"]=""
...
1
vote
2answers
38 views
Generate base64 string of an image to use in data URI
How to generate base64 string of an image to use in data URI?
I have an Base64 image encoding issue that I hope someone can help with. I'm trying to use data uri in my web page (ie <img ...
0
votes
2answers
64 views
PHP base64 how to turn into image for insertion into database
Okay so I've got an android app that an image to my php web service.
I have decoded my base64 string using base64_decode(). However when I execute an SQL query to insert my data into the database the ...
0
votes
0answers
25 views
regex search string doesn't work after base64 decoding using javascript
I'm hoping someone can help me - I'm trying to download a regex string that's been encoded using base64 (so the escape characters, etc don't get screwed up), and stored in a JSON array.
when I get ...
0
votes
0answers
26 views
JAX-RS send file as @FormParam
I have a problem with uploading "large" files to my restfull webservice. By "large" files I mean files larger than 3MB.
On the client side I use Files api from HTML5 standard and jQuery to post data ...
0
votes
2answers
47 views
Saving HTML of img/image to Disk
I have a div with an image inside of it. In javascript I am getting the div, and sending the innerHTML of the div to the server. The javascript is oversimplified below:
function uploadImage() { ...
-1
votes
0answers
20 views
Base64 Decoding Python Error
I am working on a font base64 decoder in python. I am using base64 module and the code the executing properly, but the output file is not correct.
import base64
font_string = ...
1
vote
1answer
21 views
base64 image decoding intermittently reporting 1x1 dimensions
Using ie9/ie10, I am trying to detect the dimensions of a base64 image. My code works in the other current browsers. These are the steps I follow:
ajax down a base64 string,
create a new Image() ...
0
votes
1answer
24 views
base64_decode creates corrupted image when run in a loop
This code works fine (but I am concerned it will fail with large input files). Example one reads the whole file and does not loop, example 2 reads 3k chunks and loops until EOF.
$in = ...
0
votes
1answer
42 views
Upload a blob with Phonegap FileTransfer - and receive binary
I want to upload some binary data (e.g. image, or zip) to a server using phonegap, and receive binary as the response. Is it possible?
While the upload works very well with the FileTransfer and a file ...
1
vote
1answer
27 views
Need to store bytestring using Django
I have a bytestring that i need to store.
Since Django does not support BlobFields I thought I'd create my own Base64Field,
that encodes and decodes to base64 upon interaction with the db.
So I ...
1
vote
1answer
25 views
How can I set Image source with base64
I want to set the Image source to a base64 source but it does not work:
[link]http://jsfiddle.net/NT9KB/
<img id="img" src="" />
the JavaScript
document.getElementById("img").src = ...
0
votes
0answers
16 views
Is there a way to optimize binary data upload in RESTful service?
Is there a way to optimize binary data upload in RESTful service?
Like the MTOM for SOAP?
I found an answer which says that the best way is to send the binary data as-is in a POST body, but with the ...
1
vote
1answer
41 views
Base64 encoding/decoding on Android
I'm trying to access a .NET WebService, but I have a problem with the authorization header. I have a username and password for authorization, but my password is a little long so I can't send it. When ...
0
votes
1answer
43 views
Image Base64 not getting Sent Correctly in JSON Request
I am sending an image in base64 in JSON POST request to php server. Response comes Ok. But spaces are getting added to the base64 string. So when I try to decode the base64, it fails. Could not ...
0
votes
1answer
20 views
Embedding ASCII hex string SigString into HTML page, not base64
I am currently working on a project that is requiring me to embed a Topaz signature image into a HTML page. I know that this is possible if the image has been changed into a base64 string but the ...
0
votes
1answer
37 views
How to decode base64 and turn it back into an image in perl
I have a variable $photo (huge string that has been base64 encoded) that I believe I need to decode it using MIME::Base64
with something like this:
my $decoded= MIME::Base64::decode_base64($photo);
...
0
votes
0answers
35 views
Python - Extract and execute in RAM
I'm developing a small python script to take a base64 encoded zip, decode it, and run an EXE that's inside the zip only in RAM (so no disk writing). This is what I have so far if it makes sense, ...
1
vote
1answer
28 views
Corruptions after decoding the Base-64 string with using standard methods of C#
I have sometimes corruptions in my code, which I can't understand, because this situation generates such an error with the similar inputs.
For e.g. , in my ASP.NET project I'm returning some GET ...
0
votes
1answer
12 views
Is it possible to calculate the size of a file created from a base64 string only?
Is it possible to calculate the size of a file created from a base64 string? The file type varies. I know it can't be exact but an approximate size would be enough.
All i'm provided with is the ...
0
votes
1answer
32 views
Amazon S3 SignatureDoesNotMatch during AJAX upload
Went to rig up an AJAX upload to S3 but the requests are returning with SignatureDoesNotMatch. After double-checking the access key ID and secret, I am at a loss as to the problem. I can confirm that ...
0
votes
0answers
35 views
JDownloader wordpress Click'N'Load 2 Examples AES encrypt?
¿JDownloader wordpress Click'N'Load 2 Examples AES encrypt?
I want to know how can i integrate Click'n'load 2 in my wordpress by using a bbcode or something like [cnl][/cnl], that way i can protect ...
2
votes
1answer
29 views
iOS app with base 64 + hMac encoding
I use base64 + hMac to encode and decode the request & response of my app. When uploading the app do I have to say YES for;
Does your product contain encryption?
0
votes
3answers
29 views
Set ImageView usinh URL
I have an Image on my server. The URL for the image is something like :
http://www.mydomain.com/123456uploaded_image.jpg
I am trying to set this image to my ImageView. Here is the code that i tried:
...
-1
votes
1answer
20 views
Could these strings have been encrypted through something else, before base-64? [closed]
I have been decoding a series of increasingly-complicated "codes" for a friend. The creator of these codes has used base-64 encryption before, and the current examples seem similar to base-64.
...





