Search found 9 matches

by byron
2011-12-10T05:56:32-07:00
Forum: IMagick
Topic: readImageFile fails for remote images
Replies: 1
Views: 8760

Re: readImageFile fails for remote images

Try:

Code: Select all

$blob = file_get_contents("http://your_host/berries.JPG");
$image = new imagick();
$image->readImageBlob("$blob");
by byron
2011-05-07T08:25:17-07:00
Forum: IMagick
Topic: Conversion from PDF to PNG under Imagick
Replies: 9
Views: 30117

Re: Conversion from PDF to PNG under Imagick

What do you get when you try this? This is what I started out with in DJ Mike's forum. <?php $url = "../imagick/fw4.pdf"; $extract = pathinfo($url); $new_name = ($extract['filename']); $image = new imagick($url); $x=0; foreach( $image as $temp ) { $frame_name = "$new_name.frame_$x.png...
by byron
2010-06-30T11:14:41-07:00
Forum: IMagick
Topic: Animated glowing text banner with PHP
Replies: 1
Views: 6362

Re: Animated glowing text banner with PHP

Nice work!
by byron
2010-06-29T19:45:17-07:00
Forum: IMagick
Topic: Imagick Examples
Replies: 3
Views: 10834

Re: Imagick Examples

Ha! What did you think seeing your tutorials posted here? :)

My first post over here was helping my administrator get the new version of IM straigtened out with the Imagick class and while I was over here I thought I would try to find those other examples.
by byron
2010-06-02T09:44:04-07:00
Forum: IMagick
Topic: Imagick Examples
Replies: 3
Views: 10834

Imagick Examples

Here are a few good examples of the imagick functions:

http://eclecticdjs.com/mike/tutorials/php/imagemagick/

btw, does anybody have any examples of these functions?

mergeimagelayers

modulateimage

montageimage

morphimages
by byron
2010-05-07T13:21:21-07:00
Forum: Users
Topic: Core dumps with latest version of IM and Imagick
Replies: 5
Views: 13139

Re: Core dumps with latest version of IM and Imagick

That corrected our problem. Thank you very much!
by byron
2010-05-07T07:15:58-07:00
Forum: Users
Topic: Core dumps with latest version of IM and Imagick
Replies: 5
Views: 13139

Re: Core dumps with latest version of IM and Imagick

OK, thank you! I will relay this to the admin. and let you know.
by byron
2010-05-07T06:29:35-07:00
Forum: Users
Topic: Core dumps with latest version of IM and Imagick
Replies: 5
Views: 13139

Re: Core dumps with latest version of IM and Imagick

This simple script will cause a core file everytime. It seems most functions I've tried do but not all.

Code: Select all

<?php
header("Content-type: image/jpeg");
$image = new Imagick("../images/Back.jpg");
$image->charcoalImage(1, 2);
echo $image;
?>
by byron
2010-05-07T05:29:21-07:00
Forum: Users
Topic: Core dumps with latest version of IM and Imagick
Replies: 5
Views: 13139

Core dumps with latest version of IM and Imagick

Hello. I'm with a free web host who has just upgraded ImageMagick to the latest version (6.6.1) and with Imagick 3.0.0 RC and now we are getting core files with the use of some Imagick functions. Before the upgrade all Imagick functions were working fine and I believe it was version 2.2.2 of Imagick...