| | |
Making thumbnails in PHP
Please support our PHP advertiser: PostgreSQL or MySQL? Compare and contrast the two most popular open source databases
![]() |
Hello,
I want to convert a 1024 x 786 wallpaper into thumbnail in PHP
Wots the code for it?
Thanx in advance
I want to convert a 1024 x 786 wallpaper into thumbnail in PHP
Wots the code for it?
Thanx in advance
Try something like this:
This creates a 100x100 Pixel Thumbnail. Make sure, depending on your version of PHP, that the GD library is installed.
Michael
PHP Syntax (Toggle Plain Text)
$size = getimagesize ("path_to_original_image"); $mini = imagecreatetruecolor(100,100); $orig = imagecreatefromjpeg ("path_to_original_image"); imagecopyresampled ($mini, $orig, 0, 0, 0, 0, 100, 100, $size[0], $size[1]); imagejpeg ($mini, "path_to_thumbnail/thumbnail.jpg", 100);
This creates a 100x100 Pixel Thumbnail. Make sure, depending on your version of PHP, that the GD library is installed.
Michael
![]() |
Similar Threads
- PHP parsing error, unexpected '<' (PHP)
- php loading (PHP)
- Automatic email creation in cpanel ----PHP (PHP)
- Help with making a survey form (HTML and CSS)
- Apache and PHP (PHP)
- IIS & PHP configuration-PHP.ini instructions ignored (Windows Servers and IIS)
- PHP image resize issue. (PHP)
Other Threads in the PHP Forum
- Previous Thread: hello i need help please
- Next Thread: PHP includes & variables
| Thread Tools | Search this Thread |
apache api array beginner binary body broken buttons cakephp checkbox class cms code cron curl database date date/time display dynamic ebooks echo email error file files folder form forms function functions global google href htaccess html image include insert ip javascript joomla limit link list login mail mediawiki menu mlm msqli_multi_query multiple mycodeisbad mysql navigation number oop parameter paypal pdf php phpincludeissue problem query radio random recourse recursion regex remote script search seo server sessions sms source sp space speed sql static subdomain syntax system table tag tutorial update upload url validator variable vbulletin video web webdesign white xml youtube





