Re: [PHP] Generating thumbnails from tiff images

2006-05-29 Thread mbneto
by package I mean an external program (outside apache). On 5/25/06, Jay Blanchard [EMAIL PROTECTED] wrote: [snip] I'd like to use GD instead of ImageMagick beacuse I would not want to install extra packages if I can. [/snip] GD is an extra package.

Re: [PHP] Generating thumbnails from tiff images

2006-05-25 Thread mbneto
Jay, I am not quite sure if you've made sarcastic comments but to make things more clear... I'd like to use GD instead of ImageMagick beacuse I would not want to install extra packages if I can. When I mentioned that I use convert I said 'when GD is not available...' So I have alternatives:

Re: [PHP] Generating thumbnails from tiff images

2006-05-25 Thread mbneto
Hi, Is this a non documented api? http://www.php.net/manual/en/ref.image.php does not show this. On 5/23/06, Richard Lynch [EMAIL PROTECTED] wrote: On Mon, May 22, 2006 5:10 pm, mbneto wrote: I am looking for sample code/class that can generate a thumbnail (can be a png/jpeg) image from

RE: [PHP] Generating thumbnails from tiff images

2006-05-25 Thread Jay Blanchard
[snip] I'd like to use GD instead of ImageMagick beacuse I would not want to install extra packages if I can. [/snip] GD is an extra package. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Generating thumbnails from tiff images

2006-05-23 Thread Richard Lynch
On Mon, May 22, 2006 5:10 pm, mbneto wrote: I am looking for sample code/class that can generate a thumbnail (can be a png/jpeg) image from a tiff image. So far I've only found examples using png/jpg/gif as input. In those examples, change the line that reads: imagecreatefromjpeg(...) to

[PHP] Generating thumbnails from tiff images

2006-05-22 Thread mbneto
Hi, I am looking for sample code/class that can generate a thumbnail (can be a png/jpeg) image from a tiff image. So far I've only found examples using png/jpg/gif as input. Any tips?

RE: [PHP] Generating thumbnails from tiff images

2006-05-22 Thread Jay Blanchard
[snip] I am looking for sample code/class that can generate a thumbnail (can be a png/jpeg) image from a tiff image. So far I've only found examples using png/jpg/gif as input. Any tips? [/snip] http://www.imagemagick.org/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

Re: [PHP] Generating thumbnails from tiff images

2006-05-22 Thread mbneto
Hi Jay, I know the imagemagick tools. I use convert when I need to perform operations on images and gd is not available. I'd like an alternative without having to install any extra packages specially that in this case the scripts will be hosted in a win32 machine (windows xp). On 5/22/06, Jay

RE: [PHP] Generating thumbnails from tiff images

2006-05-22 Thread Jay Blanchard
[snip] I know the imagemagick tools.  I use convert when I need to perform operations on images and gd is not available.  I'd like an alternative without having to install any extra packages specially that in this case the scripts will be hosted in a win32 machine (windows xp). [/snip] Ah.