FW: [PHP] Imagick morphImages

2013-03-11 Thread Jen Rasmussen
true); $im->destroy(); imagedestroy($gf); imagedestroy($gt); } // ex morph('a.jpg', 'b.jpg', 'out.gif', 10, 0.1); ?> Hope it helps, Jen -Original Message- From: Leonard Burton [mailto:leonardbur...@gmail.com] Sent: Monday, March 11, 2013 1:

[PHP] Imagick morphImages

2013-03-11 Thread Leonard Burton
HI, *Imagick::morphImages* ( int $number_frames ) http://php.net/manual/en/imagick.morphimages.php Would someone please reply with how to add the two images for this? None of the search results come back with anything other than the auto-generated info on the imagick class. Many Thanks! --

[PHP] Imagick::newPseudoImage function

2010-08-17 Thread NICHOLAS KLINE
Anyone out there using the Imagick::newPseudoImage function to create radial gradient images? The documentation at http://us.php.net/manual/en/function.imagick-newpseudoimage.php is lacking. When I try using Imagick::newPseudoImage to create a radial gradient, this error appears in the Apache HTTP

Re: [PHP] Imagick question

2009-11-05 Thread Ashley M. Kirchner
Ashley Sheridan wrote: Fill the background with white before you create the corners. Well, I tried that, with no luck. This is my actual code: $width = 150; $height = 150; $im = new Imagick('original/' . $filename); $im->thumbnailImage($width, $height, true); $im->s

Re: [PHP] Imagick question

2009-11-05 Thread Ashley Sheridan
On Thu, 2009-11-05 at 12:22 -0700, Ashley M. Kirchner wrote: > Brady Mitchell wrote: > > I'm sure it can be done, but without seeing your code we can't really > > help. > Easily solved. From the PHP manual > (http://www.php.net/manual/en/function.imagick-roundcorners.php): > > >

Re: [PHP] Imagick question

2009-11-05 Thread Ashley M. Kirchner
Brady Mitchell wrote: I'm sure it can be done, but without seeing your code we can't really help. Easily solved. From the PHP manual (http://www.php.net/manual/en/function.imagick-roundcorners.php): newPseudoImage(100, 100, "magick:rose"); $image->setImageFormat("png");

[PHP] Imagick->setImageFormat()

2009-01-29 Thread Philip Thompson
Hello all. I'm pretty new to Imagick. I'm merely attempting the examples on the PHP site (http://php.net/manual/en/imagick.examples-1.php), but I'm having some issues. I'm attempting the reflection of an image example and when I attempt to: $canvas->setImageFormat("png"); I get an error

Re: [PHP] imagick raises error

2008-12-19 Thread Jochem Maas
vuthecuong schreef: > Hi, > Currently I'm reading below page: > http://www.imagemagick.org/Usage/api/#php > When I tried imagick example of it, php raised error about function : > Imagick::readimage() . > Fatal error: Non-static method Imagick::readimage() cannot be called > statically in /usr/loca

[PHP] imagick raises error

2008-12-19 Thread vuthecuong
Hi, Currently I'm reading below page: http://www.imagemagick.org/Usage/api/#php When I tried imagick example of it, php raised error about function : Imagick::readimage() . Fatal error: Non-static method Imagick::readimage() cannot be called statically in /usr/local/www/apache22/data/php/im/imagic

Re: [PHP] IMagick confusion

2008-11-22 Thread Yeti
First of all .. always be careful with tainted data. Like when you $picture = $_GET['PICTURE']; be aware that this could be a security risk one day an ImageMagick exploid is circulating. At the first glance I saw a syntactical thingy that might cause problems .. case default: break; In PHP swit

[PHP] IMagick confusion

2008-11-22 Thread Stan
This code (invoked by an IMG tag on a page) will return the image which is then displayed: ... but this code

Re: [PHP] Imagick installation issue

2008-06-20 Thread bornplaydie
ver > imagick.so will not load. I confirmed the so file is in the correct > extensions dir specified by extension_dir in php.ini. I also confirmed > this is the correct php.ini file. > > My php test file looks like this... > > if (!extension_loaded('imagick')) { &

Re: [PHP] Imagick installation issue

2008-06-10 Thread Shawn McKenzie
BornPlayDie wrote: Yes, I forgot to mention, I did restart apache. Date: Sat, 7 Jun 2008 20:21:26 -0400 From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: [PHP] Imagick installation issue CC: php-general@lists.php.net On 6/7/08, BornPlayDie <[EMAIL PROTECTED]> wrote: I am try

Re: [PHP] Imagick installation issue

2008-06-09 Thread Chris
> This is the output for ldd -r for imagick.so. There are a number of > dependencies that I don't recognize > and I think there may be other packages that need to be installed. > > > > undefined symbol: zend_ce_iterator > (/usr/local/lib/php/extensions/no-debug-non-zts-20060613//imagick

RE: [PHP] Imagick installation issue

2008-06-07 Thread BornPlayDie
Yes, I forgot to mention, I did restart apache. Date: Sat, 7 Jun 2008 20:21:26 -0400 From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: [PHP] Imagick installation issue CC: php-general@lists.php.net On 6/7/08, BornPlayDie <[EMAIL PROTECTED]> wrote: I am trying to install Image

Re: [PHP] Imagick installation issue

2008-06-07 Thread Bastien Koert
t; is the correct php.ini file. > > My php test file looks like this... > > if (!extension_loaded('imagick')) { >dl("imagick.so"); >if (!extension_loaded('imagick')) { > echo "PHP IMagick will not load!"; > exit; &g

[PHP] Imagick installation issue

2008-06-07 Thread BornPlayDie
ck.so"); if (!extension_loaded('imagick')) { echo "PHP IMagick will not load!"; exit; } } $image = new Imagick('test.jpg'); $image->thumbnailImage(100, 0); $image->writeImage('test-thumb.jpg'); header("Location: te

Re: [PHP] [imagick] converting to variable instead of file

2003-09-06 Thread Evan Nemerson
maybe create a fifo and write to that, then read from php? On Saturday 06 September 2003 04:17 pm, Decapode Azur wrote: > I had thought too that it is possible to write a temp file for this image, > but it would be much better i think if there was another way... > > Is it really impossible to pre

Re: [PHP] [imagick] converting to variable instead of file

2003-09-06 Thread Decapode Azur
I had thought too that it is possible to write a temp file for this image, but it would be much better i think if there was another way... Is it really impossible to prevent from this hard disk access ? -- > Write it to a tem file then use file_get_contents() on the file name. > [...] > >With i

[PHP] [imagick] converting to variable instead of file

2003-09-06 Thread Decapde Azur
hi all, With imagick_writeimage() function, is it possible to send the image to a variable instead of dumping it to a file or to the client browser? Thanks PS (if I try this, it is to convert an image to xpm in a variable and use it in php-gtk) -- PHP General Mailing List (http://www.php.net

Re: [PHP] Imagick

2003-08-14 Thread daniel
yeh i have found even if you give the path the jpeg-v6 it wont configure it the first time round takes about 5 goes ! > * Thus wrote Jacob Marble ([EMAIL PROTECTED]): >> Excuse me, I accidentally sent that last incomplete message. >> I have successfully compiled PHP 4.3.3RC3 with the --with-imagic

Re: [PHP] Imagick

2003-08-14 Thread Curt Zirzow
* Thus wrote Jacob Marble ([EMAIL PROTECTED]): > Excuse me, I accidentally sent that last incomplete message. > I have successfully compiled PHP 4.3.3RC3 with the --with-imagick flag after > compiling and installing ImageMagick 5.5.7 (that was a headache on it's > own). The following error keeps c

RE: [PHP] Imagick

2003-08-12 Thread Chris Hubbard
magemagick, but I haven't tried that. I assume it's as complex as everything else with Imagemagick. Imagemagick is a pain, but the quality of the resized images so far surpasses GD(2) that it's worth the work. Good luck. Chris -Original Message- From: Jacob Marble [mailto:[E

[PHP] Imagick

2003-08-10 Thread Jacob Marble
Excuse me, I accidentally sent that last incomplete message. I have successfully compiled PHP 4.3.3RC3 with the --with-imagick flag after compiling and installing ImageMagick 5.5.7 (that was a headache on it's own). The following error keeps cropping up: Fatal error: Call to undefined function: i

[PHP] Imagick

2003-08-09 Thread Jacob Marble
Hello all- Does anyone here use Imagick in PHP? I've tried the example .php files using a miriad of version combinations and I always get this error: Fatal error: Call to undefined function: imagick_readimage() in /usr/local/lib/php/docs/imagick/examples/border.php on line 5 -- PHP Genera

[PHP] imagick version 0.9.5 released

2003-02-19 Thread Michael Montero
Thanks to Christian Stocker for actually putting the newest release up. It's available here: http://pear.php.net/imagick/ Here are the recent changes: - functions added: imagick_newimagelist() imagick_pushlist() imagick_poplist() imagick_mosaic() imagick

[PHP] PHP imagick Windows DLL

2002-12-11 Thread Michael Montero
For any Windows users of PHP that want ImageMagick functionality built into PHP, you can download the ImageMagick PHP DLL from here: http://php.chregu.tv/php_imagick.dll Christian Stocker was gracious enough to spend time figuring out how to get it to work. For the official imagick PEAR site,

[PHP] imagick v0.9.0.1 RELEASED

2002-12-03 Thread Michael Montero
imagick, the PHP ImageMagick module, has been moved and can be found here: http://pear.php.net/package-info.php?pacid=76 All releases will occur at this location from now on. The site: http://magick.communityconnect.com/ Will continue to point to the above PHP URL. Christian and I released ve