Search found 309 matches

by mkoppanen
2007-09-10T06:14:00-07:00
Forum: MagickWand
Topic: Getting revision number in preprocessor statement - figured
Replies: 1
Views: 8200

Getting revision number in preprocessor statement - figured

I would like add MagickClutImage support to Imagick. It seems like it is implemented in 6.3.5-7. How do I check for the revision in preprocessor statement? The only place I found the revision is MagickLibVersionNumber and I see no way to use that in a preprocessor statement. #if REVISION > 6 #endif ...
by mkoppanen
2007-09-07T17:22:29-07:00
Forum: IMagick
Topic: Release Announcement
Replies: 0
Views: 8156

Release Announcement

Imagick 2.0.0 RC2 released. + Added support for forcing image format during write operations. + Added more interlace constants. They are present if imagick is compiled against ImagickMagick 6.3.4 or newer. + Added Imagick::getImageAttribute. + Added LAYERMETHOD constants. Available if compiled again...
by mkoppanen
2007-09-07T09:20:22-07:00
Forum: MagickWand
Topic: WIN: pseudo-format
Replies: 1
Views: 8425

Re: WIN: pseudo-format

any ideas for this one?
by mkoppanen
2007-09-07T05:38:38-07:00
Forum: MagickWand
Topic: MagickWand API - identify image - suggestion
Replies: 2
Views: 9873

Re: MagickWand API - identify image - suggestion

You can use MagickGetImageProperty() to return the value of a particular property. What is needed is a MagickGetImageProperties() method so you know which properties are available for a particular wand. We'll get that method into ImageMagick 6.3.5 Beta within a day or two. That would be excellent! ...
by mkoppanen
2007-09-06T14:23:47-07:00
Forum: MagickWand
Topic: MagickWand API - identify image - suggestion
Replies: 2
Views: 9873

MagickWand API - identify image - suggestion

It would be nice to have a function in the MagickWand API to return identify attributes in some associative container(s). something like: properties | | +-EXIF | |_ Make=Camera manufacturer | |_ FooBar=Barfoo | |_ AndSoOn=value | +-Dimensions | |_ Height=640 | |_ Width=480 | +... My ascii presentati...
by mkoppanen
2007-09-06T00:00:31-07:00
Forum: IMagick
Topic: plz help me hir y in error?
Replies: 0
Views: 8975

Re: plz help me hir y in error?

kenziecj wrote:why wen i convert this url:


http://www.geocities.com/elsa2421/logo_pink.gif/



it says:



Your image has expired:

/home/imp46/public_html/workarea

No such file or directory




:?
I'm sorry, but I don't really see how this is related to imagick.
by mkoppanen
2007-09-05T00:04:44-07:00
Forum: IMagick
Topic: Absolute beginner help with install of imagick using pecl
Replies: 11
Views: 28715

Re: Absolute beginner help with install of imagick using pecl

pecl-5.2-dev (zip) ---> php_imagick.dll is about 4.0MB.

Are you sure you loaded the correct package?
by mkoppanen
2007-09-04T21:23:07-07:00
Forum: IMagick
Topic: Absolute beginner help with install of imagick using pecl
Replies: 11
Views: 28715

Re: Absolute beginner help with install of imagick using pecl

Just to be sure that you have the right version of php_imagick.dll:

What is the size of php_imagick.dll file?
by mkoppanen
2007-09-04T08:54:02-07:00
Forum: IMagick
Topic: Getting started
Replies: 1
Views: 11262

Re: Getting started

I'm nowhere near a PHP beginner, but I'm totally new to IMagick and wondered if there's a hello world script out there that I can use to check that I have everything I need installed on my server. Also (just to ensure I'm not wasting my time) I hear that IMagick is the only way of setting image res...
by mkoppanen
2007-09-02T05:13:22-07:00
Forum: IMagick
Topic: Absolute beginner help with install of imagick using pecl
Replies: 11
Views: 28715

Re: Absolute beginner help with install of imagick using pecl

Which version of PHP you're running ?
by mkoppanen
2007-09-01T19:23:55-07:00
Forum: IMagick
Topic: how to create a Interlace / Progressive image
Replies: 7
Views: 19233

Re: how to create a Interlace / Progressive image

That worked here! <?php /* Create a new object and read the image in */ $im = new imagick( "/var/www/testimages/new/im/strawberry.jpg" ); /* Set format and interlace scheme */ $im->setImageFormat( "pjpeg" ); $im->setImageInterlaceScheme( imagick::INTERLACE_LINE ); /* Output */ he...
by mkoppanen
2007-09-01T11:38:26-07:00
Forum: IMagick
Topic: Absolute beginner help with install of imagick using pecl
Replies: 11
Views: 28715

Re: Absolute beginner help with install of imagick using pecl

http://snaps.php.net -> pecl-5.2-dev (zip)

Unpack, copy php_imagick.dll to your extension_dir, add extension=php_imagick.dll to your php.ini, restart webserver and youre good to go.
by mkoppanen
2007-08-28T11:31:26-07:00
Forum: IMagick
Topic: Can my complex actions be done with IMagick?
Replies: 2
Views: 13683

Re: Can my complex actions be done with IMagick?

Yes, I took a quick look and it looks doable.

Heres an example of a little more complicated drawing operation using imagick:

http://phpfi.com/259259

--
Mikko Koppanen
by mkoppanen
2007-08-28T03:22:47-07:00
Forum: IMagick
Topic: IMagick vs. MagickWand for PHP
Replies: 1
Views: 11481

Re: IMagick vs. MagickWand for PHP

Hello, I don't know how objective my opinions are since I am one of the lead developers in imagick -project. I can give you a few reasons why people might select imagick: 1. Object Oriented interface. No need to pass the resource handles around and you can extend the provided classes. 2. The main cl...
by mkoppanen
2007-08-27T05:36:42-07:00
Forum: IMagick
Topic: how to create a Interlace / Progressive image
Replies: 7
Views: 19233

Re: how to create a Interlace / Progressive image

http://php.net/manual/en/imagick.constants.php search for Interlace constants

you need to pass something like $im->setImageInterlaceScheme( imagick::INTERLACE_PARTITION );

--
Mikko Koppanen