tagged [base64]
Base64 Java encode and decode a string
Base64 Java encode and decode a string I want to encode a string into `base64` and transfer it through a socket and decode it back. But after decoding it gives different answer. Following is my code a...
Convert.FromBase64String does not work in code but works in online tool
Convert.FromBase64String does not work in code but works in online tool I am writing a C# application to decode this string: > "--W3sic3RhcnRfdGltZSI6IjAiLCJwcm9kdWN0X2lkIjoiODQwMDMzMDQiLCJ1cmwiOiIifS...
Decoding a Base64 string in Java
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.commons.codec.binary.Base64` package. The test string I'm usin...
Convert Base64 string to an image file?
Convert Base64 string to an image file? I am trying to convert my base64 image string to an image file. This is my Base64 string: [http://pastebin.com/ENkTrGNG](http://pastebin.com/ENkTrGNG) Using fol...
Python: Ignore 'Incorrect padding' error when base64 decoding
Python: Ignore 'Incorrect padding' error when base64 decoding I have some data that is base64 encoded that I want to convert back to binary even if there is a padding error in it. If I use it raises a...
Secure random token in Node.js
Secure random token in Node.js In [this question](https://stackoverflow.com/questions/8838624/nodejs-send-email-on-registration/8842959#8842959) Erik needs to generate a secure random token in Node.js...
- Modified
- 23 May at 12:10
How to Resize a Bitmap in Android?
How to Resize a Bitmap in Android? I have a bitmap taken of a Base64 String from my remote database, (`encodedImage` is the string representing the image with Base64): ``` profileImage = (ImageView)fi...
ReadFile in Base64 Nodejs
ReadFile in Base64 Nodejs I'm trying to read an image from client side encoded in base64. How to read with nodejs? My code: ``` // add to buffer base64 image var encondedImage = new Buffer(image.name,...
- Modified
- 17 May at 16:20
Base64 image doesn't display on Render PDF from RDLC report
Base64 image doesn't display on Render PDF from RDLC report I'm trying to display image(base64 string) using parameter(`@CustomerSign`) in RDLC report I've configured image property as below: Select t...
- Modified
- 23 May at 12:26
Show a GUID in 36 letters format
Show a GUID in 36 letters format [GUID](http://en.wikipedia.org/wiki/Globally_Unique_Identifier) is big random number show in a [HEX](http://en.wikipedia.org/wiki/Hexadecimal) basis. I want to show th...
Send a base64 image in HTML email
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 image appears and displays properly in the web page after th...
- Modified
- 26 Apr at 18:12
Creating a BLOB from a Base64 string in JavaScript
Creating a BLOB from a Base64 string in JavaScript I have Base64-encoded binary data in a string: I would like to create a `blob:` URL containing this data and display it to the user: ``` const blob =...
- Modified
- 13 Apr at 14:0
Base64 length calculation?
Base64 length calculation? [wiki](http://en.wikipedia.org/wiki/Base64#Padding) I'm trying to figure out the formula working : Given a string with length of `n` , the base64 length will be ![enter imag...
BASE64 to image angular 2
BASE64 to image angular 2 I'm trying to show an image get from a remote server with angular 2. In my component I have an object that is an "university_info" object that is my model. ``` export class m...
How to convert a Base64 string into a Bitmap image to show it in a ImageView?
How to convert a Base64 string into a Bitmap image to show it in a ImageView? I have a Base64 String that represents a BitMap image. I need to transform that String into a BitMap image again to use it...
Predict the byte size of a base64 encoded byte[]
Predict the byte size of a base64 encoded byte[] I'm trying to predict the size string representation of a base64 encoded byte array. I've come up with the formula below, however the length of the act...
Exporting a Certificate as BASE-64 encoded .cer
Exporting a Certificate as BASE-64 encoded .cer I am trying to export a cert without the private key as as BASE-64 encoded file, same as exporting it from windows. When exported from windows I am able...
- Modified
- 29 Oct at 05:10
How to decode a Base64 string?
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 `$x`. I am trying to decode it as such: This works if `$x` was a Ba...
- Modified
- 24 Oct at 15:24
Best way to separate two base64 strings
Best way to separate two base64 strings I am using standard input and output to pass 2 base64 strings from one application to another. What would be the best way separating them so I could get them as...
converting a base 64 string to an image and saving it
converting a base 64 string to an image and saving it Here is my code: ``` protected void SaveMyImage_Click(object sender, EventArgs e) { string imageUrl = Hidden1.Value; string saveLo...
- Modified
- 23 Mar at 23:7
How to save a base64 image to user's disk using JavaScript?
How to save a base64 image to user's disk using JavaScript? I have converted the source content from the `` html tag to a base64String using JavaScript. The image was displayed clearly. Now I want to ...
- Modified
- 13 Sep at 16:20
How to convert Bitmap to a Base64 string?
How to convert Bitmap to a Base64 string? I'm trying to capture the screen and then convert it to a Base64 string. This is my code: ``` Rectangle bounds = Screen.GetBounds(Point.Empty); Bitmap bitmap ...