python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Is it possible to download a BLOB after the preview has been opened in a new tab?
I use the below code to download some binary data (a PDF document) and open result in a new tab:
$.ajax({
url: this.downloadurl,
xhrFields: {
responseType: "blob"
}
})
.d...
tigrou
Votes: 0
Answers: 0
How to convert blob into base64 in nextJs
I am getting the Image from an API response. I am trying to the get the image and display in the UI.
import FileReader from 'filereader';
export default async (req, res) => {
const { method } = r...
Siva Sai
Votes: 0
Answers: 0
Flyway Java Migrations: insert BLOB into Postgresql
I am using Flyway for all database migrations. It is time to handle binary data (images) when migrating. I am using Postgresql and Spring Data JPA.
First I had this field resulting in db column photo ...

Avec
Votes: 0
Answers: 1
Taking an image and converting it into BLOB for MySQL
I am trying to make a JavaScript that would take an image file and covert it into BLOB (by converting the file into Base64 first and then into BLOB), my project doesn't have a support for toBlob() so ...
paddy
Votes: 0
Answers: 2