Re: [PHP] Creating thumbnails

2007-07-17 Thread elk dolk
Stephen [EMAIL PROTECTED] wrote: Subject: Re: [PHP] Creating thumbnails Vanessa Vega wrote: Good day to all! I would like to ask for some help with creating automatically thumbnail pictures using PHP.. What about security issues ? people can look at your source code to see the path

Re: [PHP] Creating thumbnails

2007-07-17 Thread Richard Lynch
On Tue, July 17, 2007 4:44 am, elk dolk wrote: Stephen [EMAIL PROTECTED] wrote: Subject: Re: [PHP] Creating thumbnails Vanessa Vega wrote: Good day to all! I would like to ask for some help with creating automatically thumbnail pictures using PHP.. Did you even try to Google PHP

[PHP] Creating thumbnails

2007-07-16 Thread Vanessa Vega
Good day to all! I would like to ask for some help with creating automatically thumbnail pictures using PHP.. thanks in advance! vanessa vega -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Creating thumbnails

2007-07-16 Thread Stephen Edberg
On Tue, 17 Jul 2007, Vanessa Vega wrote: Good day to all! I would like to ask for some help with creating automatically thumbnail pictures using PHP.. thanks in advance! Well, that's a pretty vague question. The more specific you are, the better answers you'll get. That being said, I'm

Re: [PHP] Creating thumbnails

2007-07-16 Thread Vanessa Vega
Sorry for not being too specific...Well, to give an overview, i am uploading images on the server, i save the names of the images on my database(mysql) for retrieving them when i display it on the site.. im doing some kind of a gallery using thumbnails but i just resize the images to a smaller

Re: [PHP] Creating thumbnails

2007-07-16 Thread Stephen
Vanessa Vega wrote: Good day to all! I would like to ask for some help with creating automatically thumbnail pictures using PHP.. thanks in advance! vanessa vega Have a look at: http://www.sitepoint.com/article/php-gallery-system-minutes Stephen -- PHP General Mailing List

Re: [PHP] Creating thumbnails using Image Functions, then saving to folders

2006-10-24 Thread tedd
Chris asked: Is there a way to use a php FTP function to FTP the file out of the buffer to a directory on the server, or some other way to write a file to a folder without making that folder 0777? What about changing the folder's permission to 0777 during the operation and then changing

Re: [PHP] Creating thumbnails using Image Functions, then saving to folders

2006-10-23 Thread Richard Lynch
See how your network guys would feel about: A directory OUTSIDE the webtree which is 777. You can put the thumbnails in there. Then, in a PHP script that you use in the IMG tags, you would double check several things before you serve up that image: Does it match a record in the database so you

[PHP] Creating thumbnails using Image Functions, then saving to folders

2006-10-18 Thread Matthews, Chris
Good Morning: I am looking to create a thumbnail from an uploaded image, and then save it to a directory. I don't have any problem with the image functions, and can successfully create the thumbnail and push it to the browser or, as is currently set up, store the data in a database. What I

Re: [PHP] Creating thumbnails using Image Functions, then saving to folders

2006-10-18 Thread Eric Butera
On 10/18/06, Matthews, Chris [EMAIL PROTECTED] wrote: Good Morning: I am looking to create a thumbnail from an uploaded image, and then save it to a directory. I don't have any problem with the image functions, and can successfully create the thumbnail and push it to the browser or, as is

Re: [PHP] Creating thumbnails using Image Functions, then saving to folders

2006-10-18 Thread Børge Holen
On Wednesday 18 October 2006 19:40, Matthews, Chris wrote: Good Morning: I am looking to create a thumbnail from an uploaded image, and then save it to a directory. I don't have any problem with the image functions, and can successfully create the thumbnail and push it to the browser or, as

[PHP] creating thumbnails

2004-03-12 Thread Maxi Yedid
hello I have a form from where you can upload an image. the script saves the file on the server in a folder. what I want now is when it saves the file; I also want to save a copy of that file in another folder with thumbnail size. How do I create a copy with for example 100 x 100 and save that?

RE: [PHP] creating thumbnails

2004-03-12 Thread Jay Blanchard
[snip] I have a form from where you can upload an image. the script saves the file on the server in a folder. what I want now is when it saves the file; I also want to save a copy of that file in another folder with thumbnail size. How do I create a copy with for example 100 x 100 and save that?

Re: [PHP] creating thumbnails

2004-03-12 Thread Brad Pauly
On Fri, 2004-03-12 at 15:17, Maxi Yedid wrote: [snip] what I want now is when it saves the file; I also want to save a copy of that file in another folder with thumbnail size. How do I create a copy with for example 100 x 100 and save that? If you are using Linux (maybe others too) you

[PHP] creating thumbnails from .BMP files

2003-05-29 Thread Artoo Smith
Hey, How do you create thumbnails from .BMP files? Is there a function like there is for JPG (ImageJPEG)? Thanks -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] creating thumbnails from .BMP files

2003-05-29 Thread John W. Holmes
How do you create thumbnails from .BMP files? Is there a function like there is for JPG (ImageJPEG)? Probably need to use an external program that understands that format and an exec() call. ---John W. Holmes... Amazon Wishlist: http://www.amazon.com/o/registry/3BEXC84AB3A5E PHP Architect

Re: [PHP] creating thumbnails from .BMP files

2003-05-29 Thread Marek Kilimajer
image_bmp class at www.phpclasses.org can create bmp files, you might be able to write a class that will read it and return raw data. Artoo Smith wrote: Hey, How do you create thumbnails from .BMP files? Is there a function like there is for JPG (ImageJPEG)? Thanks -- PHP General

[PHP] Creating thumbnails

2001-04-15 Thread Lauri Vain
Hello everybody, I just finished reading a message from the server root and I have been told that the server I have to work with by our current project doesn't support GD and they can't install it neither. We will, however, need to create thumbnails from larger images (JPEG). Are there any

Re: [PHP] Creating thumbnails

2001-04-15 Thread Brian Clark
Hi Lauri, @ 11:55:51 AM on 4/15/2001, Lauri Vain wrote: ... I just finished reading a message from the server root and I have been told that the server I have to work with by our current project doesn't support GD and they can't install it neither. We will, however, need to create