Top "Base64" questions

Base64 is a set of encoding schemes that represent binary data in an ASCII string format.

Is embedding background image data into CSS as Base64 good or bad practice?

I was looking at the source of a greasemonkey userscript and noticed the following in their css: .even { background: #fff …

css base64 background-image data-uri
Send a base64 image in HTML email

Using a rich-text editor, our users can drag and drop a saved image from their desktop to the editor. The …

email base64 html-email data-uri
Base64 encoding in SQL Server 2005 T-SQL

I'd like to write a T-SQL query where I encode a string as a Base64 string. Surprisingly, I can't find …

sql-server-2005 tsql encoding base64
How to decode a Base64 string?

I have a normal string in Powershell that is from a text file containing Base64 text; it is stored in $…

powershell base64
Storing image in database directly or as base64 data?

The common method to store images in a database is to convert the image to base64 data before storing the …

mysql database image imagemagick base64
Is there a way to set background-image as a base64 encoded image?

I want to change background dynamically in JS and my set of images is in base64 encoded. I try: document.…

javascript base64 background-image
Convert base64 string to image

I am trying to crop/resize user profile image using jquery plugin namely crop.js which sends user image as …

java ajax image grails base64
How to base64 encode image in linux bash / shell

I'm trying to base64 encode an image in a shell script and put it into variable: test="$(printf DSC_0251.JPG | …

linux image shell variables base64
How can I set Image source with base64

I want to set the Image source to a base64 source but it does not work: JSfiddle.net/NT9KB &…

javascript base64
Decoding a Base64 string in Java

I'm trying to decode a simple Base64 string, but am unable to do so. I'm currently using the org.apache.…

java base64