answersLogoWhite

0

How do you create thumbnails with PHP?

Updated: 8/16/2019
User Avatar

Wiki User

13y ago

Best Answer

here is a little script that should do the thing:

$save = "yourfolder";

$modwidth = 100;

header('Content-type: image/jpeg') ;

list($width, $height) = getimagesize($file) ;

$modper = $modwidth/$width;

$modheight = $height * $modper;

$tn = imagecreatetruecolor($modwidth, $modheight) ;

$image = imagecreatefromjpeg($file) ;

imagecopyresampled($tn, $image, 0, 0, 0, 0, $modwidth, $modheight, $width, $height) ;

imagejpeg($tn, $save, 100);

it is called GD script (used to make images via PHP)

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you create thumbnails with PHP?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you install crystal reports for php?

how to create report in php


How do you create an area of a webpage to display PHP results?

PHP code blocks start with <?php and end with ?>.


How do you create a PHP script?

To create a PHP script all you have to do is create a new file, then save the file as "filename.php". It must have a .php file extension.After that open the file and put in the PHP tags like shown.Then you write your PHP script within those tags and upload to your web space and check it out.


Why do we use Php?

PHP is an Open Source Scripting Language. We can create Web Pages and Web Applications using PHP.


What is php image size?

PHP can create images of different sizes. It depends on a particular image.


How do you create a text editor in PHP?

Well it got nothing to do with PHP, you going to need JavaScript to do that :)


What is new in PHP?

PHP is a recursive acronym for "PHP: Hypertext Preprocessor" created by The PHP Group. PHP is a widely used server-side scripting language and the general purpose of PHP is to create dynamic Web Pages. For more information, visit the PHP website.


How do you create a web mail script using PHP?

You can use phpMailer() Or, you can use mail() PHP function to send emails via PHP script.


What is the way to create a function in PHP?

function function_name() { .................... }


How do you write themes in PHP?

You can use Cascading Style Sheets (CSS) to create website themes for your PHP website.


Do you need to know my php in order to use wordpress?

To create a template or plugin, you will need knowledge of PHP, CSS and HTML. To use WordPress as a blogging platform, you do not need to know PHP. WordPress is a WYSIWYG so you can style the text in the box and create your posts.


How do you create main in php?

PHP is web based programming language and there in no main() function defined. Considering, PHP as HTML embedded language and server side scripting language,It get interpreted by web server .Example: Hello - End of PHP block