-
-
Save iamakaradech/ac2c4eb30de854450cdd28ff81b433b3 to your computer and use it in GitHub Desktop.
Base64 image to multipart/form-data
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const base64 = 'data:image/png;base65,....' // Place your base64 url here. | |
fetch(base64) | |
.then(res => res.blob()) | |
.then(blob => { | |
const fd = new FormData(); | |
const file = new File([blob], "filename.jpeg"); | |
fd.append('image', file) | |
// Let's upload the file | |
// Don't set contentType manually → https://github.com/github/fetch/issues/505#issuecomment-293064470 | |
const API_URL = 'https://example.com/add_image' | |
fetch(API_URL, {method: 'POST', body: fd) | |
.then(res => res.json()) | |
.then(res => console.log(res)) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment