Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
image-data-uri
Advanced tools
Library to easily decode/encode Data URI images
npm install image-data-uri
CLI
npm install image-data-uri -g
npx image-data-uri --help
imageDataURI.decode('data:image/png;base64,SOMEPNGDATAURI/wD/')
// RETURNS
{
imageType: 'image/png',
dataBase64: 'SOMEPNGDATAURI/wD/',
dataBuffer: <Buffer 89 50 4e 47 0d 0a ...>
}
// Expects a Buffer of a image file
let dataBuffer = new Buffer(imageData);
// PNG | GIF | etc.
let mediaType = 'PNG';
// RETURNS :: image data URI :: 'data:image/png;base64,PNGDATAURI/wD/'
imageDataURI.encode(dataBuffer, mediaType)
// Returns a Promise
imageDataURI.encodeFromURL('http://www.some-site.com/some-image.png')
// RETURNS image data URI :: 'data:image/png;base64,PNGDATAURI/'
.then(res => console.log(res))
// Returns a Promise
imageDataURI.encodeFromFile('./some-file.png')
// RETURNS image data URI :: 'data:image/png;base64,PNGDATAURI/'
.then(res => console.log(res))
// Some image data uri
let dataURI = 'data:image/png;base64,PNGDATAURI/';
// It will create the full path in case it doesn't exist
// If the extension is defined (e.g. fileName.png), it will be preserved, otherwise the lib will try to guess from the Data URI
let filePath = './out/path/fileName';
// Returns a Promise
imageDataURI.outputFile(dataURI, filePath)
// RETURNS image path of the created file 'out/path/fileName.png'
.then(res => console.log(res))
FAQs
Library to easily decode/encode Data URI images
The npm package image-data-uri receives a total of 18,333 weekly downloads. As such, image-data-uri popularity was classified as popular.
We found that image-data-uri 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.