Re: [PHP] ImageMagick

2009-05-04 Thread haliphax
On Fri, May 1, 2009 at 7:11 AM, Kevin Waterson ke...@phpro.org wrote: This one time, at band camp, Michael A. Peters wrote: Here's the scenario - Website has some demonstrative images. I create these images with the gimp - starting with a jpeg, adding a few text layers and straight lines.

[PHP] ImageMagick

2009-05-01 Thread Michael A. Peters
Here's the scenario - Website has some demonstrative images. I create these images with the gimp - starting with a jpeg, adding a few text layers and straight lines. I then save as xcf in case I ever need to edit. Then I export to jpeg, resize for thumb and export to jpeg again. Admin

Re: [PHP] ImageMagick

2009-05-01 Thread Ashley Sheridan
On Thu, 2009-04-30 at 23:35 -0700, Michael A. Peters wrote: Here's the scenario - Website has some demonstrative images. I create these images with the gimp - starting with a jpeg, adding a few text layers and straight lines. I then save as xcf in case I ever need to edit. Then I

Re: [PHP] ImageMagick

2009-05-01 Thread Michael A. Peters
Ashley Sheridan wrote: Do the text layers have to go beneath something on the original xcf, or have special effects applied to them? If not, you can add t existing images with GD, by using a source image, adding text layers, etc, and then exporting it as a new graphic. Yeah - I know I can

Re: [PHP] ImageMagick

2009-05-01 Thread Kevin Waterson
This one time, at band camp, Michael A. Peters wrote: Here's the scenario - Website has some demonstrative images. I create these images with the gimp - starting with a jpeg, adding a few text layers and straight lines. I then save as xcf in case I ever need to edit. Then I export

[PHP] ImageMagick functions

2008-10-27 Thread pichoscosama
When I look at online documentations of PHP I can not see ImageMagick functions. Only classes. What happened? -- Allah varsa çocuklar neden ölüyor ki? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] ImageMagick functions

2008-10-27 Thread Martijn Korse
These classes contain methods which are just normal functions only residing in a class. pichoscosama wrote: When I look at online documentations of PHP I can not see ImageMagick functions. Only classes. What happened? -- Allah varsa çocuklar neden ölüyor ki? -- PHP General

[PHP] Imagemagick Displaying Images

2006-05-02 Thread Ray Hauge
I have an application that shows thumnails of PDF files in different directories. I have so far decided that I can use convert from imagemagick to get a .jpg, .png, .gif, etc. to display as the image. The problem I'm running into is that I don't want to save these thumbnails. Instead I just

Re: [PHP] Imagemagick Displaying Images

2006-05-02 Thread Ray Hauge
On Tuesday 02 May 2006 18:19, Ray Hauge wrote: I have an application that shows thumnails of PDF files in different directories. I have so far decided that I can use convert from imagemagick to get a .jpg, .png, .gif, etc. to display as the image. The problem I'm running into is that I don't

Re: [PHP] Imagemagick Displaying Images

2006-05-02 Thread Ray Hauge
On Tuesday 02 May 2006 18:24, Ray Hauge wrote: On Tuesday 02 May 2006 18:19, Ray Hauge wrote: I have an application that shows thumnails of PDF files in different directories. I have so far decided that I can use convert from imagemagick to get a .jpg, .png, .gif, etc. to display as the

[PHP] ImageMagick Versus GD

2005-04-05 Thread emre
which one is better ImageMagick or GD? infact I am much more curious about their image processing speed and server load. especially resizing large imagefiles. thx in adv. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] ImageMagick Versus GD

2005-04-05 Thread C.J. Walsh
Personally, I prefer IM. As far as load issues are concerned, I am not sure which one is quicker. I have used both in large scale image web apps (i.e. photo galerries). I have experienced a long loading time for images in IM, that are at or above 2MB in size. C.J. which one is better

Re: [PHP] ImageMagick Versus GD

2005-04-05 Thread Richard Lynch
On Tue, April 5, 2005 1:05 am, [EMAIL PROTECTED] said: which one is better ImageMagick or GD? infact I am much more curious about their image processing speed and server load. especially resizing large imagefiles. It probably depends more on your Machine's typical load/usage/processes than

Re: [PHP] ImageMagick

2004-06-17 Thread Decapode Azur
Does anyone knows if PHP library for ImageMagick has multilanguage support? I am planning to use it but I have not found anything related to this on their site Do you mean for the error messages ? IMHO the error messages are for the programer, so there is not a real need to be multi-language.

[PHP] ImageMagick

2004-06-15 Thread Arthur Radulescu
Hello! Does anyone knows if PHP library for ImageMagick has multilanguage support? I am planning to use it but I have not found anything related to this on their site Thanks, Arthur

[PHP] imagemagick

2004-06-07 Thread John
this might be a small bit o f f t o p i c but im trying to install imagemagick and running into a problem. im trying to crop JPEGs but imagemagick says it has no 'image decode' for that file type! upon closer inspection, it looks like youve to enable jpeg while configuring an install. but could

[PHP] ImageMagick + PHP on Win32

2003-11-28 Thread Catalin Trifu
Hi, I have downloaded and installed ImageMagick (5.5.7 Q8) in c:\imagemagick added it to %PATH% I have downloaded the latest php_imagick.dll extension from kromann.info and installed it. PHP says imagick is installed properly. However, when i am trying to run any of the

[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] Re: PHP Imagemagick

2003-09-30 Thread Cameron Metzke
Ok i finally got the script going :) If anyones curious heres the code. exec($path_imagemagick.convert $path_picture -crop $height.x$width+$x+$y $path_picture2); Cameron Metzke [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] i have a script where people upload an image it is then

Re: [PHP] ImageMagick Extension v0.2a Released (UPDATED)

2002-11-22 Thread Michael Montero
? Cheers and great job, Wes On Thursday, November 21, 2002, at 05:56 PM, Michael Montero wrote: Just released the next version of magick, the PHP ImageMagick extension. It is located here: http://apc.communityconnect.com/magick/magick-0.2a.tar.gz Here's the ChangeLog

[PHP] ImageMagick Extension v0.2a Released (UPDATED)

2002-11-21 Thread Michael Montero
Just released the next version of magick, the PHP ImageMagick extension. It is located here: http://apc.communityconnect.com/magick/magick-0.2a.tar.gz Here's the ChangeLog: November 21, 2002 0.2a o functions added: magick_rotate() magick_shear

Re: [PHP] ImageMagick Extension v0.2a Released (UPDATED)

2002-11-21 Thread Weston Houghton
version of magick, the PHP ImageMagick extension. It is located here: http://apc.communityconnect.com/magick/magick-0.2a.tar.gz Here's the ChangeLog: November 21, 2002 0.2a o functions added: magick_rotate() magick_shear

[PHP] Imagemagick Mailinglist

2002-09-28 Thread Sascha Braun
Hi, I need some discussion about the imagemagick library. Does anyone know some about an good Imagemagick Mailinglist? Please send me some Links if you got some ;) Thanks very much Sascha

[PHP] Imagemagick

2002-09-02 Thread Sascha Braun
Hi, I want to use Imagemagick together with PHP, but I'm not able to find some documentation for it. I've read, that some people are buildung an PHP Module for Imagemagick. And how is the --with-imagemagick command working, when I compile PHP? Is it possible to compile Imagemagick into PHP

[PHP] ImageMagick and Convert In PHP

2002-03-01 Thread Nicke
I have exactly the same problem! Anyone who can help? /nicke Rick [EMAIL PROTECTED] wrote in message news:003701c1bb50$bda0e2e0$[EMAIL PROTECTED]; Hello All, Ok , I am about to loose my mind... this list is my last option i think :) this is what i have tried : system(convert -pen black -draw

Re: [PHP] ImageMagick and Convert In PHP

2002-03-01 Thread Andrey Hristov
12:06 PM Subject: [PHP] ImageMagick and Convert In PHP I have exactly the same problem! Anyone who can help? /nicke Rick [EMAIL PROTECTED] wrote in message news:003701c1bb50$bda0e2e0$[EMAIL PROTECTED]; Hello All, Ok , I am about to loose my mind... this list is my last option i think

[PHP] ImageMagick and Convert In Php

2002-02-21 Thread Rick
Hello All, Ok , I am about to loose my mind... this list is my last option i think :) this is what i have tried : system(convert -pen black -draw 'text 120,60 YourText Here' imageA.jpg imageB.jpg); The above does not work , the most i can get it imageA.jpg Becomes imageB.jpg but the text

[PHP] imagemagick and file size

2001-08-22 Thread Ben-Nes Michael
Hi I decrease image size using imagemagick with the following command: function example() { $convert = cat $userfile | /usr/X11R6/bin/convert - $type:-; return `$convert`; } the returned binary value is uploaded to the DB. My main problem is that I don't know how to measure the decreased

[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