Tagged Questions
Base64 is a set of encoding schemes that represent binary data in an ASCII string format.
80
votes
7answers
14k views
embedding background image data into css as base64, good or bad practice
The other day I was looking at the source of a greasemonkey userscript and noticed the following in their css:
.even { background: #fff ...
61
votes
2answers
49k views
Get image data in Javascript?
I have a regular HTML page with some images (just regular IMG HTML tags). I'd like to get their content, base64 encoded preferably, without the need to redownload the image (ie. it's already loaded by ...
60
votes
9answers
80k views
Decode Base64 data in java
I have an image that is base64 encoded. What is the best way to decode that in Java? Hopefully using only the libraries included with Sun Java 6.
46
votes
11answers
17k views
Binary Data in JSON String. Something better than Base64
The JSON format natively doesn't support binary data. The binary data has to be escaped so that it can be places into a string element (i.e. zero or more Unicode chars in double quotes using backslash ...
45
votes
12answers
43k views
Any base64 library on iphone-sdk?
I'd like to do base64 encoding and decoding. But I could not find any support from iPhone SDK.
Any suggestion?
Thanks.
33
votes
7answers
38k views
How can you encode to Base64 using Javascript?
I have a PHP script that can encode a PNG image to a Base64 string (which is pretty easy since there's a PHP library that provides Base64 conversion)
I'd like to do the same thing using Javascript ...
27
votes
2answers
11k views
Code for decoding/encoding a modified base64 URL
I want to base64 encode data to put it in a URL and then decode it within my HttpHandler.
I have found that Base64 Encoding allows for a '/' character which will mess up my UriTemplate matching. ...
25
votes
13answers
8k views
What is the use of base 64 encoding?
I've heard people talking about "base 64 encoding" here and there. What is it used for?
Cheers!
24
votes
10answers
2k views
Why do we use Base64?
Wikipedia says
Base64 encoding schemes are commonly used when there is a need to encode binary data that needs be stored and transferred over media that are designed to deal with textual data. ...
22
votes
5answers
306 views
what are the differences between PHP base64_encode and *nix base64
PHP's base64_encode is returning a different string to the linux base64 command.
Why is this?
PHP:
$ php
<?php
echo base64_encode('test');
?>
dGVzdA==
Linux base64:
$ echo 'test' | base64
...
22
votes
11answers
6k views
How to convert an integer to the shortest url-safe string in Python?
I want the shortest possible way of representing an integer in a URL. For example, 11234 can be shortened to '2be2' using hexadecimal. Since base64 uses is a 64 character encoding, it should be ...
18
votes
2answers
528 views
asp.net viewstate encryption issue
I am attempting to turn on viewstate encryption Always as a security measure for my ASP.NET 3.5 website hosted in IIS6. We have viewstate turned off but still see some "controlstate" in this string. ...
16
votes
6answers
2k views
Why Base64 encryption?
I don't get the Base64 encryption.
If one can decrypt a Base64 string, what is it's purpose?
Why is it being used for HTTP Basic auth?
It's like telling to someone my password is reversed into ...
15
votes
1answer
4k views
How to do Base64 encoding in node.js?
Does it have the built-in for base64 encoding yet?
otherwise, should I use this plugin? https://github.com/brainfucker/node-base64
In addition, the reason I asking this is that, for Encryption, it ...
15
votes
8answers
27k views
How do I base64 encode (decode) in C?
I have binary data in an unsigned char variable.
I need to convert them to PEM base64 in c.
I looked in openssl library but i could not find any function.
Does any body have any idea?
13
votes
3answers
17k views
Base64 Encoding Image
I am building an open search add-on for Firefox/IE and the image needs to be Base64 Encoded so how can I base 64 encode the favicon I have?
I am only familiar with PHP
12
votes
1answer
1k views
How do I encode a string to base64 using only boost?
I'm trying to quickly encode a simple ASCII string to base64 (Basic HTTP Authentication using boost::asio) and not paste in any new code code or use any libraries beyond boost.
Simple signature would ...
12
votes
5answers
881 views
Images in CSS or HTML as data/base64
To reduce the number requests on the server i have embended some images as BASE64 directly into the css. (Its automated in the build process)
like this:
background: ...
12
votes
2answers
10k views
Base64 Encode a PDF in C#?
Can someone provide some light on how to do this? I can do this for regular text or byte array, but not sure how to approach for a pdf. do i stuff the pdf into a byte array first?
10
votes
4answers
2k views
Decoding Facebook's signed request in Ruby/Sinatra
Due to Facebook deprecating new FBML, I'm looking for a new way to create a "reveal" tab (a page tab that shows one version to fans and another to non-fans). Facebook has added data to the ...
9
votes
5answers
213 views
How to decode a file from base64 encoding with JavaScript
My company has a very strict intranet for work related, the net has a single doorway to allow files in and out. The doorway's security does not allow special kinds of files (*.txt, *.doc etc only), ...
9
votes
2answers
2k views
URL shortener: best encoding method?
I'm creating a link shortening service and I'm using base64 encoding/decoding of an incremented ID field to create my urls. A url with the ID "6" would be: http://mysite.com/Ng==
I need to also allow ...
9
votes
1answer
3k views
Embedding Base64 Images
Purely out of curiosity, what browsers does Base64 image embedding work in? What I'm referring to is this.
I realize it's not usually a good solution for most things, as it increases the page size ...
9
votes
3answers
4k views
guid to base64, for URL
Question: is there a better way to do that?
VB.Net
Function GuidToBase64(ByVal guid As Guid) As String
Return Convert.ToBase64String(guid.ToByteArray).Replace("/", "-").Replace("+", ...
9
votes
2answers
2k views
base64 png in python on Windows
How do you encode a png image into base64 using python on Windows?
iconfile = open("icon.png")
icondata = iconfile.read()
icondata = base64.b64encode(icondata)
The above works fine in Linux and ...
9
votes
3answers
3k views
Storing base64 data in XML?
How I can store base64 strings in XML?
Do you use CDATA to store base64 strings in XML? Would it help as it allows use of < > within the strings?
Is base64 configurable where you tell it not to ...
8
votes
3answers
425 views
Javascript generate transparent 1X1 pixel in dataURL format
I would like to know a way to generate a single pixel in JavaScript converting it to base64. The ideal function would be:
function createPixel(hexColor, opacity){
//...Calculate
return ...
8
votes
4answers
258 views
How can I estimate the disk size of a string with JavaScript?
I need to try to estimate the DISK size of a text string (which could be raw text or a Base64 encoded string for an image/audio/etc) in JavaScript. I'm not sure how to estimate this. The only thing ...
8
votes
5answers
4k views
how to base64 encode /dev/random or /dev/urandom?
cat /dev/urandom is always a fun way to create scrolling characters on your display but in that output, there is too many non character output.
now i was thinking, is there an easy way to encode on ...
7
votes
5answers
3k views
base 64 URL decode with Ruby/Rails?
I am working with the Facebook API and Ruby on Rails and I'm trying to parse the JSON that comes back. The problem I'm running into is that Facebook base64URL encodes their data. There is no built-in ...
7
votes
5answers
3k views
how to base64 url decode in python
for facebook fbml apps facebook is sending in a signed_request parameter explained here
http://developers.facebook.com/docs/authentication/canvas
they have given the php version of decoding this ...
7
votes
5answers
9k views
how do i base64 encode and decode using javascript?
just wondering if there are any methods in JavaScript that i can use to encode and decode a string using base64 encoding?
thank you
7
votes
4answers
2k views
Characters with jquery json
I'm using jquery $.getJSON to retrieve list of cities.
Everything works fine, but I'm from Estonia (probably most of you don't know much about this country =D) and we are using some characters like ...
7
votes
3answers
10k views
Silverlight 4.0: How to convert byte[] to image?
public Image Base64ToImage(string base64String)
{
// Convert Base64 String to byte[]
byte[] imageBytes = Convert.FromBase64String(base64String);
MemoryStream ms = new ...
7
votes
3answers
4k views
C#/.NET: GETting a URL with an url-encoded slash
I want to send a HTTP GET to http://example.com/%2F. My first guess would be something like this:
using (WebClient webClient = new WebClient())
{
webClient.DownloadData("http://example.com/%2F");
}
...
7
votes
5answers
2k views
How can one avoid illegal characters when composing a URL?
I'm writing a web application that dynamically creates URL's based off of some input, to be consumed by a client at another time. For discussion sake these URL's can contain certain characters, like a ...
7
votes
3answers
11k views
How do I base64 encode a string efficiently using Excel VBA?
I need to encode a 100KB+ string as base64 in VBA. Are there any built-in functions or COM objects available which will do this as a pure VBA approach is either complex or doesn't scale well at these ...
6
votes
2answers
127 views
Is Base64 standardized?
In the company that I work, we have class to convert to and from Base64 string. When I first saw the code, I asked why don“t use the Convert.ToBase64String that comes with .NET?
Then I modified the ...
6
votes
4answers
274 views
Why base64 encoding string have = sign in the last
I know what is base64 encoding,and how to calculate base64 encoding in c#.I have seen several times that when I convert any string into base64,there is = sign in the last.
I have following doubts in ...
6
votes
4answers
500 views
javascript string compression with localStorage
I am using localStorage in a project, and it will need to store lots of data, mostly of type int, bool and string. I know that javascript strings are unicode, but when stored in localStorage, do they ...
6
votes
6answers
984 views
how to convert array of bytes to base64 String in iphone?
I have a piece of code in vb. I need to convert array of bytes to base 64 string. Following is the vb code.
If arrLicence.Count > 0 Then
LicenceBytes = ...
6
votes
3answers
295 views
Compress a series of 1s and 0s into the shortest possible ascii string
How could you convert a series of 1s and 0s into the shortest possible form consisting of URL safe ascii characters?
eg.
s = '00100101000101111010101'
compress(s)
Resulting in something like:
...
6
votes
5answers
600 views
base64 encoded string gets truncated through fgets call while parsing IMAP
I am parsing emails with Zend_Mail, and strangely some content gets truncated without an obvious reason and malforms the email parts.
For example
Content-Disposition: attachment; filename="file.sdv"
...
6
votes
2answers
5k views
Node.js base64 encode a downloaded image for use in data URI
Using Node v0.2.0 I am trying to fetch an image from a server, convert it into a base64 string and then embed it on the page in an image tag. I have the following code:
var express = ...
6
votes
3answers
587 views
How can I convert BASE64 encoded HTML to GIF using ColdFusion?
I am receiving a BASE64 encoded string from a WebService. The string represents an HTML page, and I can use built-in ColdFusion functions to convert and display it. However, I need a GIF ...
6
votes
4answers
10k views
Storing UUID as base64 String
I have been experimenting with using UUIDs as database keys. I want to take up the least amount of bytes as possible, while still keeping the UUID representation human readable.
I think that I have ...
6
votes
8answers
22k views
Flex 3 - how to support HTTP Authentication URLRequest?
I have a Flex file upload script that uses URLRequest to upload files to a server. I want to add support for http authentication (password protected directories on the server), but I don't know how to ...
6
votes
3answers
11k views
base64 encode in MySQL
I want to select a blob col from one table, base64 encode it and insert it into another tables. Is there any way to do this without round tripping the data out of the DB and through my app?
5
votes
2answers
378 views
Force Content-Type or expose request.data in Flask for known content-type
I am recreating a service in Python/Flask and am running into an issue with the way the existing clients authenticate. I have to match the existing clients scheme for compatibility reasons.
The ...
5
votes
2answers
105 views
How can we encrypt some string to Base64 in iPhone? [closed]
Possible Duplicate:
Any base64 library on iphone-sdk?
I want to encode test string "test string" into Base64 format, which api should i use?