Search found 5 matches

by Ferenc
2012-11-15T03:18:51-07:00
Forum: IMagick
Topic: Efficiently blend multiple images into one image
Replies: 5
Views: 12440

Re: Efficiently blend multiple images into one image

I have to deliver this site within a few weeks, so I'll stick to my current solution for now. I blend all images one by one like this: $imTopLeather = new Imagick($top_leather_url); $imTopColor = new Imagick(); $imTopColor -> newImage(1000,450, $topColor); $imTopColor -> compositeImage($imTopLeather...
by Ferenc
2012-11-14T06:57:38-07:00
Forum: IMagick
Topic: Efficiently blend multiple images into one image
Replies: 5
Views: 12440

Re: Efficiently blend multiple images into one image

Thanks for the quick reply and the references. I thought flattenImages did not support blending modes. I will look in to it. Thanks!
by Ferenc
2012-11-13T06:10:17-07:00
Forum: IMagick
Topic: Efficiently blend multiple images into one image
Replies: 5
Views: 12440

Efficiently blend multiple images into one image

Dear reader, I would like to compose multiple PNG images (with transparency) on a background image with the blending mode set to Overlay. What is the most efficient way to do this? Is this possible with Imagick, or do I have to execute ImageMagick in a shell via exec()? I'd rather use Imagick becaus...
by Ferenc
2012-11-05T08:32:22-07:00
Forum: IMagick
Topic: Create Imagick object times out in Wordpress template
Replies: 2
Views: 7492

Re: Create Imagick object times out in Wordpress template

Ok I fixed it. In the Wordpress template I was using a remote url, while the other file used a local relative path. Because you're on the server you have to use a local path. Then you can echo the composite image with a normal img tag and a http:// url.
by Ferenc
2012-11-05T02:43:44-07:00
Forum: IMagick
Topic: Create Imagick object times out in Wordpress template
Replies: 2
Views: 7492

Create Imagick object times out in Wordpress template

Dear ImageMagick users, I have build a simple test.php file to composite two images with Imagick. Everything works fine, but when I try to implement this in a Wordpress template file I get a time-out at the rule: $basemodel = new Imagick('images/base-model-1/shaded/base-model-1.png'); The exact erro...