Convert to binary and save to database

1 次查看(过去 30 天)
For my recent project, i will have to deal with plenty of images. With a view to making server respond faster, I decided to save images in the form of binary numbers. Is there any way I could create a binary converter with the help of math algorithm?

采纳的回答

Yongjian Feng
Yongjian Feng 2021-11-10
Are you talking about image formats here? For binary, do you mean bitmap?
  2 个评论
oztex smiith
oztex smiith 2021-11-11
I don't know about bitmap but I'm going to research on that. But, I have read that Mongodb uses binary numbering system to save images with a view to make it faster. Since, binary contains zeros and ones, it occupies lesser memory and improves page loading speed.
oztex smiith
oztex smiith 2021-11-11
Actually, i just found a node.js package for the same conversion: https://www.npmjs.com/package/b2tconverter and the website, https://binarytotext.net
i have gone through the working, this is the code i found for image to binary conversion:
var file = inputElement.files[0];
var reader = new FileReader();
reader.onloadend = function() {
console.log('Encoded Base 64 File String:', reader.result);
/******************* for Binary ***********************/
var data=(reader.result).split(',')[1];
var binaryBlob = atob(data);
console.log('Encoded Binary File String:', binaryBlob);
}
reader.readAsDataURL(file);
Once, I will get the binary conversion, I will save binary into database. I'm going to implement this tomorrow and I'm optimistic that will find the solution.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Import, Export, and Conversion 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by