Search found 309 matches

by mkoppanen
2010-02-13T19:56:40-07:00
Forum: IMagick
Topic: Imagick PHP error: Safe mode restricts user to read image:
Replies: 1
Views: 7329

Re: Imagick PHP error: Safe mode restricts user to read imag

Make sure that you comply with the safe mode restrictions: http://php.net/manual/en/features.safe-mode.php
by mkoppanen
2010-02-13T19:55:39-07:00
Forum: IMagick
Topic: ImagickException - Wand contains no images
Replies: 1
Views: 7070

Re: ImagickException - Wand contains no images

Fixed with later versions of Imagick (3.x). The earlier versions show wrong error message.
by mkoppanen
2010-02-13T19:54:49-07:00
Forum: IMagick
Topic: How i can join two images???
Replies: 4
Views: 12996

Re: How i can join two images???

compositeImage would be one way
by mkoppanen
2010-02-13T19:52:08-07:00
Forum: IMagick
Topic: convert's -density option
Replies: 10
Views: 25172

Re: convert's -density option

The following should work as well:

Code: Select all

$im = new Imagick();
$im->setResolution(360, 360);
$im->readImage('brookland.pdf');
by mkoppanen
2009-11-25T17:44:44-07:00
Forum: IMagick
Topic: what is the difference between setFormat and setImageFormat
Replies: 2
Views: 9499

Re: what is the difference between setFormat and setImageFormat

Hello,

usually "Image"-variants of the image affect the current image sequence where as the ones without image are global properties for the object.
by mkoppanen
2009-11-02T09:36:40-07:00
Forum: Bugs
Topic: magick/semaphore.c:288: LockSemaphoreInfo: Assertion `semaph
Replies: 7
Views: 20165

magick/semaphore.c:288: LockSemaphoreInfo: Assertion `semaph

Hello, found the following issue in the latest ImageMagick source package. Not sure when this was introduced: #include <stdio.h> #include <stdlib.h> #include <wand/MagickWand.h> int main(int argc,char **argv) { MagickWandGenesis(); MagickWandTerminus(); return(0); } # gdb --args ./wand GNU gdb 6.8 C...
by mkoppanen
2009-10-31T10:06:29-07:00
Forum: IMagick
Topic: ImagickException with message Wand contains no images
Replies: 8
Views: 19202

Re: ImagickException with message Wand contains no images

This error has been fixed in the trunk version of Imagick. The underlying error is that image reading fails but incorrect error message is displayed.
by mkoppanen
2009-10-31T10:01:34-07:00
Forum: IMagick
Topic: Outputting temporary images
Replies: 1
Views: 7794

Re: Outputting temporary images

If the images are displayed more than once it makes sense to cache the images on the server. if the images are only displayed once you probably need to create them on the fly every time and that is going to be hard on your CPU depending on the amount of traffic.
by mkoppanen
2009-10-31T09:59:59-07:00
Forum: IMagick
Topic: Cannot locate header file MagickWand.h
Replies: 2
Views: 9958

Re: Cannot locate header file MagickWand.h

You need to give location to ImageMagick during installation
by mkoppanen
2009-10-12T15:36:33-07:00
Forum: MagickWand
Topic: Trying to set compose:args through MagickWand API
Replies: 2
Views: 11426

Re: Trying to set compose:args through MagickWand API

Noticed that this change has made it's way in. Thank you!
by mkoppanen
2009-10-11T11:41:52-07:00
Forum: MagickWand
Topic: Trying to set compose:args through MagickWand API
Replies: 2
Views: 11426

Trying to set compose:args through MagickWand API

Hello, I am trying to set compose:args for DisplaceCompositeOp through the MagickWand API. No luck this far with following combos: MagickSetImageProperty(magick_wand, "compose:args" MagickSetImageProperty(magick_wand, "option:compose:args" MagickSetOption(magick_wand, "compo...
by mkoppanen
2009-10-06T06:20:42-07:00
Forum: IMagick
Topic: ImagickException with message Wand contains no images
Replies: 8
Views: 19202

Re: ImagickException with message Wand contains no images

There is nothing I can do without seeing the code.
by mkoppanen
2009-10-03T05:14:25-07:00
Forum: Bugs
Topic: Possible race condition?
Replies: 1
Views: 5181

Possible race condition?

Testing the following imagick code I get an occasional segfault: <?php $combined = new Imagick(); $combined->readImage("floodfillpaint_intermediate.jpg"); /* The target pixel to paint */ $x = 1; $y = 1; /* Get the color we are painting */ $target = $combined->getImagePixelColor($x, $y); /*...
by mkoppanen
2009-10-02T15:15:08-07:00
Forum: IMagick
Topic: ImagickException with message Wand contains no images
Replies: 8
Views: 19202

Re: ImagickException with message Wand contains no images

Can you post the source code?
by mkoppanen
2009-09-18T20:22:38-07:00
Forum: MagickWand
Topic: Superimposing vector data
Replies: 4
Views: 15383

Re: Superimposing vector data

Usually that error message appears if GhostScript is not installed or 'gs' command is not in PATH