Security News
cURL Project and Go Security Teams Reject CVSS as Broken
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
A library/stand-alone script to convert images into base64 strings.
npm install img-to-64
var i64 = require('img-to-64');
i64.getImageStrings({
files: ['mike@128px.png', 'mike@256px.png'],
css: true
}, function(err, b64strings) {
if (err) {
throw new Error('oh noeses, somethin is broken!');
}
b64strings.forEach(function(b64) {
console.log(b64);
});
});
###getImageStrings(options, callback)###
The options
object takes a files
key with an Array value of file paths as its value. You can also just use the file
key and pass a String path if you only have a single image to convert. The options
object also takes an optional css
key with a Boolean of whether to output CSS-ready strings of the format "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUA...".
The callback
function is in the form of function(error, ArrayOfStrings)
If you run from the command line, the script takes two [optional] arguments: a folder and an output file. If an ouput file is not provided, it defaults to base64_images.txt
. If a source dir is not provided, it defaults to .
.
For instance:
./img-to-64 /some/path/to/images base64images.txt
Will output to base64images.txt
data like so:
some_image_1.png : Rw0KGgoAAAANSU....
some_image_2.png : EUgAAAAUA...
FAQs
A library/stand-alone script to convert images into base64 strings
We found that img-to-64 demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.