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.
node-pngquant-native
Advanced tools
node-pngquant-native is an addon of node, support node version v0.8.0 to latest, It compress a buffer
of .png
image, so can't call other processes.
npm install -g node-pngquant-native
if install fail for you. download the source install it.
clone source code
$ git clone https://github.com/xiangshouding/node-pngquant-native.git
invoke npm install -g .
$ cd node-pngquant-native
$ npm install -g .
node-gyp
, you can see detail information https://github.com/TooTallNate/node-gyp#installationwin32
, because VS not support C99.
var pngquant = require('node-pngquant-native');
fs.readFile('./alphatest.png', function (err, buffer) {
if (err) throw err;
var resBuffer = pngquant.compress(buffer, {
"speed": 1 //1 ~ 11
});
fs.writeFile('./alphatest_out.png', resBuffer, {
flags: 'wb'
}, function(err){});
});
compress(buffer, option)
var pngquant = require('node-pngquant-native')
var option = {
speed: 11
//...
}
var resBuffer = pngquant.compress(buffer, option);
option.speed
Speed/quality trade-off from 1 (brute-force) to 11 (fastest). The default is 3. Speed 10 has 5% lower quality, but is 8 times faster than the default. Speed 11 disables dithering and lowers compression level.
var opt = {
speed: 11
}
option.quality = [min, max]
min and max are numbers in range 0 (worst) to 100 (perfect), similar to JPEG. pngquant will use the least amount of colors required to meet or exceed the max quality. If conversion results in quality below the min quality the image won't be saved (if outputting to stdin, 24-bit original will be output) and pngquant will exit with status code 99.
var opt = {
quality: [40, 60]
}
option.iebug
Workaround for IE6, which only displays fully opaque pixels. pngquant will make almost-opaque pixels fully opaque and will avoid creating new transparent colors.
var opt = {
iebug: true
}
FAQs
A pngquant addon of node
We found that node-pngquant-native demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers 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.