Search found 309 matches

by mkoppanen
2009-09-18T20:20:57-07:00
Forum: IMagick
Topic: Tutorials
Replies: 2
Views: 8938

Re: Tutorials

Currently the main sources of information is what you can find by googling. I am working on documentation but it is taking a lot of time to get all the documentation together.

You can usually map ImageMagick usage examples almost straight to Imagick.
by mkoppanen
2009-07-31T12:26:44-07:00
Forum: IMagick
Topic: Error when dll added to php.ini file
Replies: 2
Views: 8799

Re: Error when dll added to php.ini file

The dll won't work for PHP 5.2.x
by mkoppanen
2009-07-31T12:25:43-07:00
Forum: IMagick
Topic: Postscript delegate failed
Replies: 1
Views: 6575

Re: Postscript delegate failed

Is 'gs' in $PATH for the webserver user?
by mkoppanen
2009-07-25T09:56:35-07:00
Forum: MagickWand
Topic: Knowing that an image has been loaded
Replies: 1
Views: 8401

Re: Knowing that an image has been loaded

MagickGetNumberImages might work.
by mkoppanen
2009-07-24T15:53:08-07:00
Forum: IMagick
Topic: imagemagick library
Replies: 3
Views: 10575

Re: imagemagick library

What exactly are you compiling?
by mkoppanen
2009-07-24T15:52:24-07:00
Forum: IMagick
Topic: Watermarking Animated Gifs
Replies: 2
Views: 8568

Re: Watermarking Animated Gifs

Hello,

sure! you just need to execute the operations on every frame:

Code: Select all


$im = new Imagick("test.gif");

foreach ($im as $frame) {
  
  // resize and watermark $frame here

}

$im->writeImages( ...

by mkoppanen
2009-07-24T15:51:05-07:00
Forum: IMagick
Topic: Rotation pivot point
Replies: 12
Views: 28522

Re: Rotation pivot point

I wonder if setGravity affects that..
by mkoppanen
2009-07-23T03:21:01-07:00
Forum: Bugs
Topic: Gray colorspace has no effect
Replies: 1
Views: 4830

Gray colorspace has no effect

Version: ImageMagick 6.5.4-3 2009-07-21 Q16 OpenMP http://www.imagemagick.org Copyright: Copyright (C) 1999-2009 ImageMagick Studio LLC Test code: #include <stdio.h> #include <wand/MagickWand.h> int main() { MagickWand *wand; MagickWandGenesis(); wand = NewMagickWand(); MagickReadImage(wand, "m...
by mkoppanen
2009-07-02T15:38:19-07:00
Forum: IMagick
Topic: Gradients (newPseudoImage)
Replies: 2
Views: 8484

Re: Gradients (newPseudoImage)

What is the result you get?
by mkoppanen
2009-07-02T15:23:57-07:00
Forum: MagickWand
Topic: MagickShadowImage args have no effect
Replies: 1
Views: 8665

MagickShadowImage args have no effect

#include <stdio.h> #include <stdlib.h> #include <string.h> #include <wand/MagickWand.h> #define ThrowWandException(wand) \ { \ char \ *description; \ \ ExceptionType \ severity; \ \ description=MagickGetException(wand,&severity); \ (void) fprintf(stderr,"%s %s %lu %s\n",GetMagickModul...
by mkoppanen
2009-06-29T16:15:16-07:00
Forum: MagickWand
Topic: rotating around center of the image / maintain geometry
Replies: 1
Views: 8536

Re: rotating around center of the image / maintain geometry

Looks like I don't make much sense at this time of the night.
by mkoppanen
2009-06-29T16:07:42-07:00
Forum: MagickWand
Topic: rotating around center of the image / maintain geometry
Replies: 1
Views: 8536

rotating around center of the image / maintain geometry

Is is possible to rotate the image around the center point while maintaining the original geometry? I have noticed that with rotate+crop I get a few pixel movement.
by mkoppanen
2009-06-23T13:45:01-07:00
Forum: IMagick
Topic: Blurring with Transparent Background
Replies: 9
Views: 21532

Re: Blurring with Transparent Background

Seems to work with blurImage but not with gaussian. Wizards?
by mkoppanen
2009-05-14T12:28:16-07:00
Forum: IMagick
Topic: cropImage produce different results for PNG and GIF format
Replies: 3
Views: 10780

Re: cropImage produce different results for PNG and GIF format

This seems to happening mainly with GIF images and I am not fully sure why it happens. It has something to do with virtual canvas on GIFs. On the other hand the virtual canvas might be something that someone might want to use so it would not be polite to call MagickSetImagePage automatically during ...
by mkoppanen
2009-05-14T12:26:25-07:00
Forum: IMagick
Topic: PNG format is not included in phpinfo Imagick
Replies: 1
Views: 6694

Re: PNG format is not included in phpinfo Imagick

That probably means ImageMagick did not find libpng during ./configure