Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
png
engine for spritesmith.
This can be used for constructing a canvas, placing images on it, and extracting the result image.
Install the module with: npm install pngsmith
// Convert images into pngsmith objects
var images = ['img1.jpg', 'img2.png'];
pngsmith.createImages(this.images, function handleImages (err, imgs) {
// Create a canvas to draw onto (200 pixels wide, 300 pixels tall)
pngsmith.createCanvas(200, 200, function (err, canvas) {
// Add each image at a specific location (upper left corner = {x, y})
var coordinatesArr = [{x: 0, y: 0}, {x: 50, y: 50}];
imgs.forEach(function (img, i) {
var coordinates = coordinatesArr[i];
canvas.addImage(img, coordinates.x, coordinates.y);
}, canvas);
// Export canvas to image
canvas['export']({format: 'png'}, function (err, result) {
result; // Binary string representing a PNG image of the canvas
});
});
});
This module was built to the specification for all spritesmith modules.
https://github.com/twolfson/spritesmith-engine-test
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint using grunt and test via npm test
.
Support this project and others by twolfson via gittip.
As of Dec 13 2013, Todd Wolfson has released this repository and its contents to the public domain.
It has been released under the UNLICENSE.
FAQs
png engine for spritesmith
We found that pngsmith 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
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.