Search found 309 matches

by mkoppanen
2008-09-27T05:21:51-07:00
Forum: IMagick
Topic: PNG Compression
Replies: 10
Views: 25786

Re: PNG Compression

Hi,

unable to reproduce with ImageMagick 6.4.2. I will try with older version at some point.
by mkoppanen
2008-09-24T08:38:26-07:00
Forum: IMagick
Topic: PNG Compression
Replies: 10
Views: 25786

Re: PNG Compression

Can you post code and example images? I can not reproduce this issue.

I am running ImageMagick 6.4.2.
by mkoppanen
2008-09-03T05:18:48-07:00
Forum: IMagick
Topic: php_imagick.dll ...
Replies: 0
Views: 4821

Re: php_imagick.dll ...

Hello,

it looks like for some reason Imagick is not loaded by your webserver. Double check that you're editing correct php.ini. You can also try setting display_startup_errors on and check what goes wrong.
by mkoppanen
2008-09-03T05:17:04-07:00
Forum: IMagick
Topic: how to use caption and font at the same time?
Replies: 8
Views: 19546

Re: how to use caption and font at the same time?

Imagick::setPointSize might help you, I'll add those to documentation.
by mkoppanen
2008-08-29T09:07:32-07:00
Forum: IMagick
Topic: Transparency and compositing images
Replies: 4
Views: 12401

Re: Transparency and compositing images

Try this header('Content-type: image/png'); $im_base = new Imagick(); $im_base->setResolution(72,72); $im_base->setBackgroundColor("transparent"); $im_base->readImage('buildpieces/standard.svg'); $canvas = new Imagick(); $canvas->newImage($im_base->getImageWidth(), $im_base->getImageHeight...
by mkoppanen
2008-08-28T14:26:14-07:00
Forum: IMagick
Topic: Uncaught exception 'ImagickDrawException' setFillPatternURL
Replies: 4
Views: 11663

Re: Uncaught exception 'ImagickDrawException' setFillPatternURL

Can you try putting:

Code: Select all

try {
$draw->setFillPatternURL( '#ice' );
} catch( Exception $e) {
echo $e->getMessage();
}
instead of just $draw->setFillPatternURL( '#ice' );

What is the message on the exception?
by mkoppanen
2008-08-28T01:16:34-07:00
Forum: IMagick
Topic: how to use caption and font at the same time?
Replies: 8
Views: 19546

Re: how to use caption and font at the same time?

There is currently undocumented method in Imagick which is called setFont. If you call this before creating the caption it should affect the font.
by mkoppanen
2008-08-28T01:14:08-07:00
Forum: IMagick
Topic: Uncaught exception 'ImagickDrawException' setFillPatternURL
Replies: 4
Views: 11663

Re: Uncaught exception 'ImagickDrawException' setFillPatternURL

Can not help much without code sample.
by mkoppanen
2008-08-28T01:13:31-07:00
Forum: IMagick
Topic: Transparency and compositing images
Replies: 4
Views: 12401

Re: Transparency and compositing images

Hello,

setImageMatte exists if ImageMagick version higher than 6.2.8 is used. If you want to composite images on to one image use imagick::COMPOSITE_OVER
by mkoppanen
2008-08-28T01:12:04-07:00
Forum: IMagick
Topic: Imagick & PDF - The Delegate From Hades
Replies: 2
Views: 8028

Re: Imagick & PDF - The Delegate From Hades

Hello, the last time I tested reading PDF from blob (around ImageMagick 6.3.something) it failed. All thou it says this in wand/ChangeLog: 2008-02-23 6.3.9-0 Cristy <quetzlzacatenango@image...> * Patch MagickReadImageBlob() to support Postscript which does not have native blob support. I don't know ...
by mkoppanen
2008-08-24T13:33:40-07:00
Forum: IMagick
Topic: Thumbnailing with php code?
Replies: 3
Views: 9846

Re: Thumbnailing with php code?

I what to thumbnail images to a max width 190px and max height of 125px keeping within aspect ratio ex: Large.jpg thumbnailed to 190 x 125 tn_small.jpg does anyone know how to do this in php, fast clean with min. cpu usage Try this: <?php $im = new Imagick("Large.jpg"); $im->thumbnailImag...
by mkoppanen
2008-08-16T03:26:18-07:00
Forum: IMagick
Topic: Creating Images from Fonts
Replies: 0
Views: 4861

Re: Creating Images from Fonts

Do you want to print a-zA-Z on each font on to an image?
by mkoppanen
2008-08-16T03:25:29-07:00
Forum: IMagick
Topic: How to install IMagick on shared hosting
Replies: 0
Views: 4821

Re: How to install IMagick on shared hosting

I don't think you have much luck installing on such a hosting unless the hosting provider does the installation for you.