Questions tagged [node-imagemagick]

node-imagemagick is an Imagemagick module for Node.

node-imagemagick is an module for Node.

Github repository

55 questions
0
votes
1 answer

imagemagick throws converter errors for jpg

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…
0
votes
1 answer

npm install imagemagick-native not getting installed in Windows 7

npm install imagemagick-native is not getting installed. 1. Issue 1 - Not able to find lib files 2. Issue 2 - Failed on finding X11.lib.
Janarthanan
  • 1,651
  • 3
  • 12
  • 15
0
votes
1 answer

Use polaroid effect in node.js 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 …
Miriam
  • 471
  • 5
  • 20
0
votes
3 answers

Retrieving output from Node script in a Grunt task

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',…
antun
  • 2,038
  • 2
  • 22
  • 34
0
votes
1 answer

ImageMagick errors with cannot call method Split

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/); …
user3508995
  • 187
  • 1
  • 1
  • 13
0
votes
0 answers

Issue with GM for NodeJS

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…
tonymx227
  • 5,293
  • 16
  • 48
  • 91
0
votes
1 answer

How can I stretch images while preserving corners using ImageMagick?

I want to stretch images, while preserving 4 corners intact. Similar stuff in iOS is setting capInsets, for UIImage.
Stanley 시크 Yeo
  • 159
  • 1
  • 1
  • 8
0
votes
1 answer

ImageMagick JPEG compression block size

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?
pree
  • 2,297
  • 6
  • 37
  • 55
0
votes
0 answers

Making node.js use bash PATH

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…
basteln
  • 2,483
  • 2
  • 19
  • 20
-2
votes
1 answer

Image Magick Module throwing weird error (Express js Node js)

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 +…
Gandalf the White
  • 2,415
  • 2
  • 18
  • 39
1 2 3
4