Gathering detailed insights and metrics for qimagemagick
Gathering detailed insights and metrics for qimagemagick
Gathering detailed insights and metrics for qimagemagick
Gathering detailed insights and metrics for qimagemagick
npm install qimagemagick
Typescript
Module System
Node Version
NPM Version
TypeScript (72.96%)
JavaScript (27.04%)
Total Downloads
2,600
Last Day
2
Last Week
43
Last Month
52
Last Year
418
MIT License
1 Stars
10 Commits
1 Watchers
1 Branches
1 Contributors
Updated on Feb 04, 2023
Minified
Minified + Gzipped
Latest Version
0.4.1
Package Id
qimagemagick@0.4.1
Unpacked Size
114.09 kB
Size
20.37 kB
File Count
17
NPM Version
8.1.2
Node Version
16.13.2
Cumulative downloads
Total Downloads
Last Day
0%
2
Compared to previous day
Last Week
0%
43
Compared to previous week
Last Month
67.7%
52
Compared to previous month
Last Year
-38.7%
418
Compared to previous year
1
2
You can install this module using npm
npm install qimagemagick --save
sudo apt-get install imagemagick
1import { QIM } from "qimagemagick"; 2// const { QIM } = require("qimagemagick"); 3 4async function main() { 5 let image = await QIM.read_to_buffer('./example-images/coffee.png'); 6 7 let info = await QIM.identify(image).catch(reason => {console.log(reason)}); 8 console.log(info); 9 10 let blob = await QIM.convert(image, { 11 format: 'jpg', 12 resize: '50%' 13 }).catch(reason => { 14 console.log('error: ', reason); 15 process.exit(1); 16 }); 17 18 let converted_info = await QIM.identify(blob).catch(reason => {console.log(reason)}); 19 console.log(converted_info); 20} 21 22main();
1Info { 2 width: 1909, 3 height: 1066, 4 page_width: 1909, 5 page_height: 1066, 6 offset_x: 0, 7 offset_y: 0, 8 format: 'PNG', 9 depth: '8-bit', 10 colorspace: 'sRGB', 11 size: '1.8288MiB' 12} 13Info { 14 width: 955, 15 height: 533, 16 page_width: 955, 17 page_height: 533, 18 offset_x: 0, 19 offset_y: 0, 20 format: 'JPEG', 21 depth: '8-bit', 22 colorspace: 'sRGB', 23 size: '181.8047KiB' 24}
1import { QIM } from "qimagemagick"; 2// const { QIM } = require("qimagemagick"); 3 4async function main() { 5 let image = await QIM.read_to_buffer('./example-images/coffee.png'); 6 7 let blob = await QIM.convert(image, { 8 gravity: 'Center', 9 crop: '300x300+0+0' 10 }).catch(reason => { 11 console.log('error: ', reason); 12 process.exit(1); 13 }); 14 15 let converted_info = await QIM.identify(blob).catch(reason => {console.log(reason)}); 16 console.log(converted_info); 17} 18main();
1Info { 2 width: 300, 3 height: 300, 4 page_width: 1909, 5 page_height: 1066, 6 offset_x: 804, 7 offset_y: 383, 8 format: 'PNG', 9 depth: '8-bit', 10 colorspace: 'sRGB', 11 size: '36.2393KiB' 12}
1let buffer = await QIM.read_to_buffer('./coffee.png'); 2let info = await QIM.identify('./coffee.png');
1let buffer = await QIM.read_to_buffer('https://placedog.net/640/480'); 2let info = await QIM.identify('https://placedog.net/640/480');
1let buffer = await QIM.read_to_buffer('https://placedog.net/640/480'); 2let info = await QIM.identify(buffer);
To see the full documentation visit: ImageMagick – Command-line Processing
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
Found 0/10 approved changesets -- score normalized to 0
Reason
no SAST tool detected
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Score
Last Scanned on 2025-03-24
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More