imagejs icon indicating copy to clipboard operation
imagejs copied to clipboard

Pure JavaScript NodeJS Image Processing Module

Results 5 imagejs issues
Sort by recently updated
recently updated
newest added

After reading a png image i try to resize that by following code `var thumbnail = bitmap.resize({ width: 128, height: 128, algorithm: "nearestNeighbor", }); ` Here a got result (left...

Hi, I want to resize my images to half size, but I do not know the size of orignal image. How can I get this?

Hi, I am using image.js for the image processing and detection edges of document for the OCR purpose but for that i require contour of the document, using auto canny...

Hi Thanks for the library, finding it really useful in a current project. I have found a typo problem between the NPM vs Github version. On line 136 of bitmap.js...

Given the following code: ``` var ImageJS = require('imagejs'); var bitmap = new ImageJS.Bitmap(); bitmap.readFile('image.png') .then(function() { // bitmap is ready var rotated = bitmap.rotate({degrees: -10, fit: 'crop'}); bitmap.writeFile("rotated-image.png", {type:...