Most voted "base64" questions
Base64 is a set of encoding schemes that represent binary data in an ASCII format string.
Learn more…70 questions
Sort by count of
-
0
votes2
answers1513
viewsHow to save Base64 in Imagefiled Django / data:image/jpeg;Base64,?
I’m trying to save a Base64 image on my model , but not getting. My code is; Model: class Image(models.Model): img = models.ImageField(upload_to = 'pic_folder') view: @csrf_exempt def…
-
0
votes1
answer950
viewsEncryption BASE64
I am concluding a college job, and I would like to know a topic that I did not find in Portuguese on the Internet. What are the benefits of Base64?
-
0
votes1
answer310
viewsSaving Base64 Image with ADODB.Stream and Classic ASP
I’m using Classic ASP and Javascript to upload and crop the images to the site. I use a script that converts the images to Base64 sends by post and is processed on the server. I followed step by…
-
0
votes0
answers113
viewsSend java image to javascript
I’m developing a web service Rest with Spring in Java which provides images to front-end, which calls Java with an ajax event. On the server side I am using java Image. import java.awt.Image; I…
-
0
votes0
answers308
viewsWhat better way to work/store files in Base64 C# + Sqlserver
I am consuming an external API, and in return I have a PDF file in format base64, would like to know how best to work/store this kind of data in the database SqlServer + C#. My question is: 1 - I…
-
0
votes2
answers289
viewsIonic - Transform image from Base64 to JPG
I’m making an app and I need to send an image to an api. But I only have the image in Base64 and I need it in jpg. Does anyone have any idea how I do it? public sendOnePhoto(photo: any) { const body…
-
0
votes0
answers134
viewsHow do I use Fileprovider and Bitmap together?
I’m having trouble sending a photo to the server, specifically in the excerpt: "bitmap.compress(Bitmap.CompressFormat.JPEG, 100, stream);". Always when taking the photo it shows error in this line.…
-
0
votes0
answers21
viewsHow to save a Decode bae64 image to Laravel 8?
I am receiving a several images in Base64 format. I only receive the string. How do I decrypt and save on Laravel 8’s Torage? I’m doing it like this but it makes a mistake: $image1 =…
-
0
votes1
answer3571
viewsReceive a Base64 string via JSON and display in a Timage DELPHI
I am receiving a JSON object, which inside it has a photo converted into Base64. I need to load this string into a Timage in Delphi. Pick up the string I managed using the superobject class, but…
-
0
votes0
answers97
viewsApache Commons Email Base64 Image
I have software to send emails that use apache Commons email to send html emails, I also have in the database a string that represents an image Base64 example data:image/png;base64,iVBORw0K .... I…
-
0
votes1
answer902
views -
0
votes1
answer303
views -
0
votes1
answer1399
viewsTypeerror: Cannot read Property '1' of null
I have this problem and I have no idea how to solve, I want to save images in Azure Storage const blobSvc = azure.createBlobService(config.containerConnectionString); let filename =…
-
0
votes0
answers221
viewsMPDF class - Base64 images
good afternoon, I am using a mdpf class to generate the PDF of a file, but when using an image in Base64 inside a <img> model my image did not appear Function: $date = date("dmYHi"); $mpdf =…
-
-1
votes1
answer17
viewsWhen I pass a value of javascript pro php it modifies
I have an image converted to Base64 ,when I send this string from javascript pro php it modifies this string.…
-
-1
votes1
answer755
viewsPHP link protector to capture and encrypt and add a URL before
Ola would like to know how I can use Javascript or PHP to put this url https://protetor.com/?url= before the addresses of the download servers automatically I use these servers Skydrive, Clouddrive,…
-
-2
votes1
answer108
viewsEncrypt URL and reduce PHP encryption size
I’m making a basic system where I pass information like, title, url video, image... I’m creating this way because I don’t want to use database. when I’m gonna do this encryption $mp4 =…
-
-2
votes1
answer48
viewsBase64 getting corrupted via post in flask
I’m sending a Base64 inside a post to flask, and it’s replacing the "+" plus sign with spaces " ". Example of original code: curl -X POST localhost:5000/api/send -d 'data={"num": "01", "msg":…
-
-2
votes0
answers21
viewsEncode filenames in Base64 in python?
I need help from you to implement a python code to encode the filenames in Base64 and name it right away and then code and then decode back the filenames of those files. import os import base64…
-
-3
votes3
answers507
viewsHow to merge two Pdfs into Base64 in one
I have the following scenario: I receive two files encoded as Base64, each representing a pdf. I need to read those files and turn them into a single encoded file like Base64. Input example: PDF1 =…