GraphicsMagick provides a robust collection of tools and libraries which support reading, writing, and manipulating images in over 88 major formats. It is a fork of ImageMagick that focuses on performance, minimizing bugs, and providing stable APIs and command-line options.

learn more… | top users | synonyms

0
votes
1answer
17 views

How do I get Node.js graphicsmagick color reduction to work?

I am in a cloud9 environment on c9.io and I have sucessfully installed graphicsmagick and the node.js gm module. I have been successful in calling a number of methods however some I have not. One ...
1
vote
0answers
30 views

Converting a PNG buffer to a JPG in graphicsmagick in node

How do I convert a png buffer to a jpg without writing to a file?
0
votes
1answer
50 views
+100

Applying custom ImageMagick (GraphicsMagick) envelope distortion to text

I want to generate text like this using ImageMagick: I have the font as a TTF file and know how to generate an image with just the undistorted text. What I'm having trouble with is applying the ...
1
vote
1answer
28 views

Display image on black fullscreen backdrop, dismiss on any user event

I'm just in the process of writing a small helper script to convert the X clipboard contents to a QR Code and display the result so I can scan the code using my smartphone. Basically, this line of ...
-1
votes
1answer
10 views

How do you set the width of a line in GraphicsMagick CLI?

I've tried using: gm convert "source_image.jpg" -fill black -linewidth 50 -draw "line 100,100 100,200" output_image.jpg But the line that GraphicsMagick draws is 1px wide. I've also tried using ...
0
votes
0answers
32 views

How to getPixel using Node.js gm graphicsMagick wrapper

Im currently trying to figure out how to get an individual pixel using the Node.js gm graphicsMagic wrapper. My overall end goal is to get the top 10 colors with percentages in an image. I am trying ...
0
votes
1answer
39 views

Node GraphicsMagick: `geometry does not contain image (unable to crop image)`

I'm resizing an image using Graphics Magick and then using a loop to do multiple crops on that image. The second time the crop command runs, it fails with: Command failed: gm convert: geometry does ...
0
votes
1answer
415 views

Error: spawn ENOENT while using GM in node

When I try to resize an image like this: gm('public/uploads/1710410635.jpg') .resize(240, 240) .noProfile() ...
0
votes
2answers
60 views

How do I configure a JPEG delegate for graphicsmagick?

I want to crop an image to a specified pixel region. I'd like to use the gm module from https://github.com/aheckmann/gm. I am running Linux Mint 13 and node.js v0.9.4pre. I am running into an error ...
0
votes
1answer
103 views

Store generated ImageMagick image to s3 without temp files

I am generating a PNG on the server side of a node.js application, using ImageMagick and the gm library for node.js (GraphicsMagick for node.js). // start with a blank image var gmImage = gm(100, ...
0
votes
0answers
56 views

Magick++ not linking in OS X 10.8

I am getting this error when I try to link my application with ImageMagick++. Undefined symbols for architecture x86_64: "Magick::Image::read(std::__1::basic_string<char, ...
0
votes
0answers
34 views

graphicsmagick burst multi page tiff into 2 page tiff's

I have a tiff file with several hundred pages in it. My goal is to break it into many files each containing two pages. i.e. every two pages save a new file. It is basically a stack of single sheet ...
0
votes
1answer
32 views

How to bundle GraphicsMagick with application?

I would like to bundle a standalone version of the GraphicsMagick gm binary with an application, so that I don't have to build and install the GraphicsMagick library on the server where the ...
1
vote
0answers
46 views

Resizing GIF loses animation

I'm using GraphicsMagick (1.3.16) and im4java (1.4.0) to create thumbnails of GIFs. At the command line I can do something like: convert original.gif -coalesce -resize 100x100 +profile * thumb.gif ...
0
votes
1answer
74 views

cgo and pkg-config

I want to run GraphicsMagick with cgo. /* #cgo pkg-config: GraphicsMagick-config #include <magick/api.h> static int gm(int argc, char **argv) { int status; status = GMCommand(argc, ...
1
vote
0answers
70 views

Resizing an border image as overlay over another image

Using Imagemagick. Goal is to overlay an image A with an transparent border image B. The "main" image A has the following dimensions: identify examples/1.jpg examples/1.jpg JPEG 1936x1296 ...
0
votes
1answer
172 views

sorl-thumbnail with graphicsmagick backend pdf/image conversion error on Windows7

I'm trying to set up the sorl-thumbnail django app to provide thumbnails of pdf-files for a web site - running on Windows Server 2008 R2 with Appache web server. I've had sorl-thumbnail functional ...
1
vote
0answers
54 views

GraphicsMagick: Annotate text on new image C

I would like to write a text on an blank image using GraphicsMagick C API (low level). Here's my code. ExceptionInfo exception; InitializeMagick(0); GetExceptionInfo(&exception); ...
0
votes
0answers
37 views

Low level pixel access via pgmagick

I was wondering if it possible to perform low level pixel manipulations on an image via pgmagick. In particular, I would like to mimic the functionality found in the C++ GraphicsMagick API shown ...
0
votes
1answer
80 views

Remove mask from image with GraphicsMagick in Node.JS

I have successfully created a image with the form of a square diamond by providing an original image and a masking image with background black alpha 0 and the diamond square white with alpha 1. I use ...
0
votes
1answer
56 views

Output file numbering in graphicsmagick

I'm trying to convert pdf to images using this command: gm convert ./file.pdf -scene 1 thumbs/thumb%02d.jpg Although I specify -scene argument, it does nothing, as I get output files starting from ...
0
votes
2answers
59 views

Load raw memory blob in DPX format with Graphicsmagick

I have a library that generates a Big Endian 10-bit DPX image in a memory buffer. It's just the raw 10-bit RGB data, though, with no headers. I'm trying to load this data into an instance of ...
0
votes
1answer
158 views

Merge two images with nodejs and graphicsmagick

I'm asked to create a 450px by 225px image from a given image(can be any size) with following requirements. If the image is 450x225, no porblem just save it. If the image is bigger just give the ...
0
votes
1answer
231 views

Thumbnails from graphics magick without upscaling

I am using the graphics magick wrapper in nodejs and am creating square thumbnails using the following code: var size = {width: 200, height: 200}; gm(sourcePath) .resize(size.width * 2, ...
0
votes
0answers
50 views

Distorted image colors in IE/Explorer

I've created a small drawing app and someone else implemented some code to save the images drawn... I don't have direct access to their code, but I'm trying to help them resolve a small problem. It ...
2
votes
1answer
215 views

merge 2 images with node.js and gm

I want to merge 2 images using node.js an gm for node. In fact I want to place one smaller image on cordinates x,y on a larger image. I've allraedy someting working with append() but i cannot choose ...
0
votes
0answers
36 views

Magick++ trimming pixels that are not of backgroundColor (pixels same color on top and bottom of image)

The following image of size 1x9 is being trimmed to 1x6 because presumably the pixel at the top is the same color as the pixel at the bottom and in the trim function, these pixels are being identified ...
0
votes
1answer
355 views

ImageMagick and Typo3

The system requirements of TYPO3 are stating that I can use GraphicsMagic or ImageMagick. On the host I'm getting the following error No ImageMagick installation available. I tried to verify with ...
2
votes
2answers
105 views

Why smaller PNG image takes up more space than the original after getting resized by GraphicsMagic

The original PNG image is 800x1200 and takes up about 34K. After the images is resized by GraphicsMagick to 320x480 size, the resulting images takes up approximately 37K. (For comparison, if the ...
0
votes
1answer
71 views

GraphicsMagick Webcam with stamp and private area

I used the following code to process a webcam-picture (in.jpg), unsharp some area (defined in grayscale-file unsharpmask.png) and add a stamp. load in.jpg blur this file load in.jpg as seperate ...
3
votes
1answer
88 views

Why is gmagick::thumbnailimage slower than exec(gm)?

In trying to simply thumbnail an image in PHP I used: $image = new Gmagick('/tmp/large.jpg'); $image->thumbnailImage(0, 100); $image->writeImage('/tmp/small.jpg'); which ran in about 15 ...
1
vote
1answer
184 views

Merge Images With Node

I'm using Node.js GM and trying to merge an image onto another at a certain x, y point. How can I achieve this with GraphicsMagick? Is it possible to use append and specify coordinates instead of ...
1
vote
1answer
66 views

How do I create the BMP headers of a bitmap in a memory stream with GraphicsMagick?

I have an array in memory that contains a bitmap image, with a known size, depth, palette and such. I want to use this array to create a GraphicsMagick representation of the image to enable me to ...
1
vote
1answer
144 views

Converting PSD file to JPG using graphic magick

I 'm trying to convert psd file to jpg format file by using following commands: gm -convert [input file name].psd -colorspace rgb -resize 150x150 -strip -quality 92 - sharpen 2 [output file ...
2
votes
1answer
110 views

Read image from middle of file in ImageMagick / GraphicsMagick

I have a binary file that starts off with some data. After this data, the file has a JPEG image embedded in it. After the image, the file continues with some other data. I wish to use the image as an ...
1
vote
1answer
152 views

GraphicsMagick + im4java, how can I remove color profile (and other redundant data)

I'm using graphicsmagick + im4java for generating thumbnails in my web application. Unfortunately as I can see, while processing pictures taken with photo cameras, the thumbnails contains all original ...
0
votes
1answer
44 views

Why compile GraphicsMagick with --with-modules

According to the docs GraphicMagick may be compiled with the --with-modules option to "enable building dynamically loadable modules". Simply, why would one want to do this?
0
votes
1answer
66 views

GraphicsMagick zoom and sample function performance difference

We use GM to do image compressing, and observe a significant performance difference between zoom and sample functions, which we suppose to do the same thing. When using zoom function for a 68k image, ...
0
votes
1answer
67 views

Get GraphicsMagick to open file from a https url?

I can use GraphicsMagick to download images given a URL, however when the URL starts with a https I get the following error (for https://example.com/image.png): Unable to open file ...
1
vote
1answer
124 views

How can I show a graphicsmagick Image in a wxpython gui?

I would like to use graphicsmagick with wxpython to make an interactive image editor. I'm using the pgmagick python api. A naive attempt: from wxPython import wx from pgmagick import Image im = ...
0
votes
0answers
92 views

how to add shadow using nodejs GM module?

gm = require('gm'); //gm = gm.subClass({ imageMagick: true }); gm("d:\\1.png") .shadow(19, 10) .write("d:\\new.png", function (err) { console.log(err); }); after running this lines ,I ...
0
votes
0answers
79 views

Docsplit gem error in Red Hat Server OS

Operating system is Red Hat Enterprise Linux Server release 5.6, using Ruby 1.8.7 and Rails 2.3.5. I have installed Docsplit gem, GraphicsMagick and poppler-utils. When I shoot docsplit images ...
1
vote
1answer
50 views

Which graphicsmagick delegate to use for .bmp files

I'm using linux distro and according to http://www.graphicsmagick.org/README.html#add-on-libraries-programs, there are libraries to support other image formats like jpg,png,etc. According to ...
0
votes
1answer
371 views

Multiple resizes using a single image read/stream

I'm writing a script that takes an image and creates multiple variants of different sizes (like imgur, basically). Right now, I do the following for each variant using https://github.com/aheckmann/gm ...
0
votes
0answers
89 views

How to downsample tiff images

I need a faster way to downsample tiff images to reduce their storage requirements. Our current software has a 16MB limit per document, and it will take some time and effort to remove that barrier. ...
2
votes
2answers
701 views

Cloud/RESTful interface for Image/GraphicsMagick

I'm looking for a cloud service to where I can upload images and get them cropped / resized. Basically I'm looking for zencoder, but for images instead of video. I know about cloudinary but it ...
0
votes
2answers
455 views

Node gm - use crop and resize cause error

The following code throw an error. Error: Command failed: gm convert: geometry does not contain image (unable to crop image). var gm = require('gm'); gm('/origin.jpg') .resize(600) ...
1
vote
1answer
419 views

Node gm - resize image and preserve aspect ratio?

Does Node gm have built-in support for resizing an image while preserving aspect ratio (ie., generating a thumbnail)? Or should I get the image size, calculate the proper ratio, and then call resize? ...
0
votes
1answer
281 views

Node gm - How to resize an image without keeping its ratio?

As title, I'm using node gm (GraphicsMagick for node), I wonder how to resize an image (ignoring its ratio).
1
vote
1answer
229 views

GraphicsMagick - position item in bottom left

After trying every combination of commands that I could possibly think of I still can't get this to work. I have a large image that can vary in size: Logo.png I have a small image of a 'known' size: ...

1 2 3