How to resize an image with the GD library in PHP?
Using the GD library to resize images requires first loading the source image, creating the target canvas and resampling, and finally saving the result and releasing resources. First obtain the image information through getimagesize, and call imagecreatefromjpeg/png/gif to load the image according to the MIME type. Then calculate the new size that maintains the aspect ratio, use imagecreatetruecolor to create a new image, and after processing the transparency, copy the original image pixels to the new canvas with high quality through imagecopyresampled. Finally, select imagejpeg/imagepng/imagegif to output the image according to the original format and set the corresponding parameters. After completion, call imagedestroy to destroy the resource. The entire process is: Load → Zoom → Save → Clean, which is suitable for generating thumbnails or responsive images. Pay attention to handling abnormal situations such as file non-existence or unsupported format.

To resize an image using the GD library in PHP, you need to load the original image, create a new canvas with the desired dimensions, resample the original image onto it, and save the result. This process preserves image quality through proper scaling. Below are the key steps and a practical example.
Load the Original Image
Before resizing, determine the image type and use the appropriate GD function to load it into memory.
Supported formats include JPEG, PNG, and GIF. Use functions like imagecreatefromjpeg() , imagecreatefrompng() , or imagecreatefromgif() .
Example detection and loading:
$source_path = 'path/to/image.jpg';$source_info = getimagesize($source_path);
$source_width = $source_info[0];
$source_height = $source_info[1];
switch ($source_info['mime']) {
case 'image/jpeg':
$source_image = imagecreatefromjpeg($source_path);
break;
case 'image/png':
$source_image = imagecreatefrompng($source_path);
break;
case 'image/gif':
$source_image = imagecreatefromgif($source_path);
break;
default:
die('Unsupported image format');
}
Create Resized Canvas and Resample
Calculate new dimensions while maintaining aspect ratio to avoid distortion. Then create a destination image resource and copy pixels using imagecopyresampled() .
This function provides better quality than imagecopyresized() because it smooths pixel transitions.
Example for proportional resizing:
$target_width = 800;$target_height = 600;
// Optional: maintain aspect ratio
$ratio = min($target_width / $source_width, $target_height / $source_height);
$new_width = (int)($source_width * $ratio);
$new_height = (int)($source_height * $ratio);
$destination_image = imagecreatetruecolor($new_width, $new_height);
// Preserve transparency for PNG/GIF if needed
if ($source_info['mime'] == 'image/png') {
imagealphablending($destination_image, false);
imagesavealpha($destination_image, true);
$transparent = imagecolorallocatealpha($destination_image, 255, 255, 255, 127);
imagefilledrectangle($destination_image, 0, 0, $new_width, $new_height, $transparent);
}
imagecopyresampled(
$destination_image,
$source_image,
0, 0, 0, 0,
$new_width, $new_height,
$source_width, $source_height
);
Save and Clean Up
Output the resized image to a file or browser, using the correct format-specific function.
Free up memory by destroying image resources after saving.
Example output and cleanup:
$output_path = 'path/to/resized_image.jpg';switch ($source_info['mime']) {
case 'image/jpeg':
imagejpeg($destination_image, $output_path, 90); // Quality 90%
break;
case 'image/png':
imagepng($destination_image, $output_path, 6); // Compression level 6
break;
case 'image/gif':
imagegif($destination_image, $output_path);
break;
}
imagedestroy($source_image);
imagedestroy($destination_image);
That's the core approach. Handle errors like missing files or unsupported types in production code. Resize dimensions can be adjusted based on use case—thumbnails, responsive images, etc. Basically just follow the flow: load → scale → save → clean up.
The above is the detailed content of How to resize an image with the GD library in PHP?. For more information, please follow other related articles on the PHP Chinese website!
Hot AI Tools
Undress AI Tool
Undress images for free
AI Clothes Remover
Online AI tool for removing clothes from photos.
Undresser.AI Undress
AI-powered app for creating realistic nude photos
ArtGPT
AI image generator for creative art from text prompts.
Stock Market GPT
AI powered investment research for smarter decisions
Hot Article
Popular tool
Notepad++7.3.1
Easy-to-use and free code editor
SublimeText3 Chinese version
Chinese version, very easy to use
Zend Studio 13.0.1
Powerful PHP integrated development environment
Dreamweaver CS6
Visual web development tools
SublimeText3 Mac version
God-level code editing software (SublimeText3)
Hot Topics
20522
7
13634
4
Instantiation mechanism and reflection application of PHP attributes
Mar 13, 2026 pm 12:27 PM
PHP properties do not automatically instantiate their class constructors when declared. They are essentially metadata attached to code elements and need to be explicitly read and instantiated through PHP's reflection API in order to trigger the execution of their constructors. Understanding this mechanism is critical to correctly utilizing properties to implement advanced functionality such as framework routing, validation, or ORM mapping.
PHP gRPC client JWT authentication practice guide
Mar 14, 2026 pm 01:00 PM
This article details how to correctly configure JWT (JSON Web Token) for authentication in the PHP gRPC client. The core is to set the request metadata in the standard Authorization: Bearer format through the update_metadata callback function to ensure that the server can correctly parse and verify the client's identity, thereby avoiding common authentication errors.
How to batch extract the values of all keys with the same name (such as 'id') in a JSON object in PHP
Mar 14, 2026 pm 12:42 PM
This article explains in detail how to use json_decode() and array_column() to efficiently extract all values of specified keys (such as id) in nested JSON data at all levels, avoiding manual traversal and taking into account performance and readability.
How to display hospital/center name instead of ID in patient query results
Mar 13, 2026 pm 12:45 PM
This article explains in detail how to use SQL table connections to replace the originally displayed hospital ID (h_id) with the corresponding hospital or center name when querying patient data to improve data readability and user experience.
PHP runtime getting and monitoring script maximum memory limit (bytes)
Apr 01, 2026 am 06:42 AM
This article aims to guide PHP developers on how to accurately obtain the maximum memory limit (in bytes) of a script at runtime, and combine it with real-time memory usage for effective monitoring. By parsing the memory_limit configuration string and using built-in functions, an early warning mechanism for memory consumption is implemented to avoid fatal errors caused by memory overflow.
How to append corresponding value to the end of each subarray of PHP array
Mar 14, 2026 pm 12:51 PM
This article describes how to append the values of a one-dimensional index array to the end of each sub-array of another two-dimensional array in order, solving alignment problems caused by index offsets (such as $array2 starting from key 1), and providing a safe and readable implementation solution.
Tutorial on flattening nested arrays into a single array in PHP
Mar 13, 2026 am 02:57 AM
This tutorial details how to flatten a nested array structure containing multiple sub-arrays into a single array in PHP. This can be achieved efficiently and concisely by utilizing PHP's array_merge function combined with the array unpacking operator (...) to extract all internal elements into a top-level array, suitable for processing collections or grouped data.
The reason why explode() returns nested arrays in PHP and its correct usage
Mar 14, 2026 pm 12:39 PM
explode() itself returns a one-dimensional array, but due to misuse of the array append syntax $myarray[] = ..., the result is wrapped into additional levels, forming an "array of arrays"; the correction method is to assign values directly instead of appending.





