I'm attempting to use graphicsmagick with imagemagick to resize some jpg and png images. The png images work great, but anytime a jpg image is downloaded or saved i get an error.
I am running this on a windows 8.1, and i've installed ImageMagick…
In the terminal I can use the following snippet to create an image with a "polaroid design" (see http://www.imagemagick.org/Usage/thumbnails/#polaroid).
convert -caption 'mycaption' myimage.jpeg -thumbnail 250x250 \
-bordercolor Lavender …
I'm fairly new to Grunt, so this might be quite a basic question. I've got a Gruntfile.js that looks like this:
/*global module:false*/
module.exports = function (grunt) {
grunt.initConfig({
});
grunt.registerTask('default',…
I'm having difficulty using imagemagick in node. It keeps erroring with the following message:
/usr/src/love/mean/node_modules/imagemagick/imagemagick.js:156
geometry = result['geometry'].split(/x/);
…
I'd like to use GM in my nodejs application but it seems not working... I get an error message when I try to get the size of my image...
My code :
gm(request.files.file.path)
.size(function (err, size) {
console.log(err);
});
My error message…
Does anyone know what processing block size (8x8 or 16x16 ??) is used in JPEG compression by ImageMagick? And, is there a way to change this default block size?
I'm trying to use imagemagick's "identify" from node.js, but it's not working. I have installed imagemagick using
brew install imagemagick
and it's in /usr/local/bin/identify etc.
I have created a script to start my server like…
Please look at the code first. Here I am taking a series of input and name of photos are in a array format.
for (var i = 0; i < photos.length; i++) {
var x = './images/offers/' + testooo + '/' + photos[i];
var y = './images/offers/' + testooo +…