[PHP] PHP Imagemagick

2003-09-30 Thread Cameron Metzke
i have a script where people upload an image it is then renamed and is supposed to be cripped according to the values they submit but i cant seem to get it to crop it uploads and is renamed fine though. also i wish to use a static name so when another picture is uploaded the old one is overwritten

Re: [PHP] PHP Imagemagick

2003-09-30 Thread David T-G
Cameron -- ...and then Cameron Metzke said... % ... % a static name so when another picture is uploaded the old one is overwritten % that is why the input path and output path is the same. % -Code-- % exec($path_imagemagick.convert -crop 0x100+0+0 $imagepath.$filename %

Re: [PHP] PHP Imagemagick

2003-09-30 Thread Blue Prawn
% a static name so when another picture is uploaded the old one is overwritten % that is why the input path and output path is the same. % -Code-- % exec($path_imagemagick.convert -crop 0x100+0+0 $imagepath.$filename % $imagepath.$filename); % -End Code--

[PHP] PHP Imagemagick

2001-07-22 Thread Weston Houghton
Does anyone know if there are PHP specific bindings for ImageMagick out there? If not, anyone want to work on them... :) Thanks, Wes -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the

Re: [PHP] PHP Imagemagick

2001-07-22 Thread Tom Carter
How do you mean bindings? I've used PHP and Imagemagick.. but only from the point of view of exec Do you mean building them into PHP functions? - Original Message - From: Weston Houghton [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, July 22, 2001 11:05 PM Subject: [PHP] PHP

Re: [PHP] PHP Imagemagick

2001-07-22 Thread Weston Houghton
the point of view of exec Do you mean building them into PHP functions? - Original Message - From: Weston Houghton [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, July 22, 2001 11:05 PM Subject: [PHP] PHP Imagemagick Does anyone know if there are PHP specific bindings

Re: [PHP] PHP Imagemagick

2001-07-22 Thread Alexander Skwar
So sprach »Weston Houghton« am 2001-07-22 um 15:14:54 -0700 : Yup, a native PHP module for ImageMagick that accesses their API. This would allow one to actually pass parameters a bit easier and test for success or failure more consistently, at least, I think it would... Hmm, don't know

Re: [PHP] PHP ImageMagick

2001-06-30 Thread Richard Lynch
In PHP I try to run a shell command with the following source code: $fotonaam = 'convert -font arial -pointsize 20 -gravity center -fill white -draw text 5,5 VERKOCHT image.jpg image2.jpg'; exec($fotonaam); PHP runs the program but the -draw text 5,5 VERKOCHT is not executed (there is no

RE: [PHP] PHP ImageMagick

2001-06-30 Thread Chadwick, Russell
, June 28, 2001 8:01 AM To: [EMAIL PROTECTED] Subject: [PHP] PHP ImageMagick In PHP I try to run a shell command with the following source code: $fotonaam = 'convert -font arial -pointsize 20 -gravity center -fill white -draw text 5,5 VERKOCHT image.jpg image2.jpg'; exec($fotonaam); PHP runs

[PHP] PHP ImageMagick

2001-06-29 Thread Jeffrey Barendse
In PHP I try to run a shell command with the following source code: $fotonaam = 'convert -font arial -pointsize 20 -gravity center -fill white -draw text 5,5 VERKOCHT image.jpg image2.jpg'; exec($fotonaam); PHP runs the program but the -draw text 5,5 VERKOCHT is not executed (there is no