search
HomeBackend DevelopmentPHP TutorialHow to crop images to a fixed size in PHP

When making a homepage call image, sometimes you need to obtain a fixed size image, because the image position of the homepage is usually specified by the designer. If you are making a latest release image call, because you don’t know what proportion of the image the customer will upload, so there is At that time, there is no way to determine the proportion of the image. Front-end page writers usually use the method of fixing the height and width of the img element to control the image from overflowing. However, if the proportion of the image is not the required proportion, it will cause the image to be deformed after being called, which is very serious. It affects the beauty of the page to a great extent. One solution is to scale according to the proportion of the original image. The scaled image will inevitably have blank spaces. Fill the blank spaces with color. Although the image will not be deformed, there will be many problems. , for example, if the user sends an image that is very tall but of average width, and if it is compressed into a 1:1 image, then the image will basically not be visible after compression.

The solution is to crop any image to a fixed size, the image will not be deformed, and the blank space will be stretched and filled. The image will always be filled with no blank space. Friends who have used bcastr should know that bcastr ensures that the image is not deformed when called. Fixed size output image frame, the source image has the following situations: 1: The height and width of the image to be output are smaller than the height and width of the source image, written as judgment $new_width$src_width && $new_height>$src_width 3: Exclude the two types 1 and 2, that is, the situation of zooming in while zooming out, plus the judgment of equal. For 1 and 2, the function processing codes are exactly the same, so they can be summarized into one processing statement

php implementation code

  1. /*
  2. * Description: The function is to crop an image to an image of any size without deformation of the image
  3. * Parameter description: Enter the file name of the image to be processed, and generate a new image to save File name, the width of the generated new image, the height of the generated new image
  4. * written by smallchicken
  5. * time 2008-12-18
  6. */
  7. // Get an image of any size, stretch the missing parts, no deformation, no leaving Blank
  8. function my_image_resize($src_file, $dst_file , $new_width , $new_height) {
  9. if($new_width echo "params width or height error !";
  10. exit() ;
  11. }
  12. if(!file_exists($src_file)) {
  13. echo $src_file . " is not exists !";
  14. exit();
  15. }
  16. // Image type
  17. $type=exif_imagetype($src_file);
  18. $ support_type=array(IMAGETYPE_JPEG , IMAGETYPE_PNG , IMAGETYPE_GIF);
  19. if(!in_array($type, $support_type,true)) {
  20. echo "this type of image does not support! only support jpg , gif or png";
  21. exit( );}} L // Load Image
  22. switch ($ Type) {
  23. Case ImageType_JPEG:
  24. $ SRC_IMG = ImageCreateFromjpeg ($ src_file);
  25. case imagepe _Png: s $ src_img = ImageCreateFrompng ($ src_file);
  26. Bream;
  27. case IMAGETYPE_GIF :
  28. $src_img=imagecreatefromgif($src_file);
  29. break;
  30. default:
  31. echo "Load image error!";
  32. exit();
  33. }
  34. $w=imagesx($src_img);
  35. $h= imagesy($src_img);
  36. $ratio_w=1.0 * $new_width / $w;
  37. $ratio_h=1.0 * $new_height / $h;
  38. $ratio=1.0;
  39. // The height and width of the generated image are smaller than the original one , or both are large, the principle is to use a large ratio to enlarge, and use a large ratio to reduce (the reduced ratio will be smaller)
  40. if( ($ratio_w 1 && $ratio_h > }else {
  41. $ratio = $ratio_w ;
  42. }
  43. // Define an intermediate temporary image whose aspect ratio exactly meets the target requirements
  44. $inter_w=(int)($new_width / $ratio);
  45. $inter_h =(int) ($new_height / $ratio);
  46. $inter_img=imagecreatetruecolor($inter_w , $inter_h);
  47. imagecopy($inter_img, $src_img, 0,0,0,0,$inter_w,$inter_h);
  48. // Generate a temporary image with the maximum side length as the size of the target image $ratio
  49. // Define a new image
  50. $new_img=imagecreatetruecolor($new_width,$new_height);
  51. imagecopyresampled($new_img,$inter_img, 0,0,0,0,$new_width,$new_height,$inter_w,$inter_h);
  52. switch($type) {
  53. case IMAGETYPE_JPEG :
  54. imagejpeg($new_img, $dst_file,100); // Store image
  55. break ;
  56. case IMAGETYPE_PNG:
  57. imagepng($new_img,$dst_file,100);
  58. break;
  59. case IMAGETYPE_GIF:
  60. imagegif($new_img,$dst_file,100); / end if 1
  61. // 2 One side of the target image is larger than the original image, and one side is smaller than the original image. First enlarge the plain image, and then crop it
  62. // =if( ($ratio_w 1) || ($ratio_w >1 && $ratio_h else{
  63. $ratio=$ratio_h>$ratio_w? $ratio_h : $ratio_w; //Take the value with the larger ratio
  64. // Define an intermediate Large image, the height or width of the image is equal to the target image, and then enlarge the original image
  65. $inter_w=(int)($w * $ratio);
  66. $inter_h=(int) ($h * $ratio);
  67. $inter_img=imagecreatetruecolor($inter_w, $inter_h);
  68. //Crop the original image after scaling it
  69. imagecopyresampled($inter_img,$src_img,0,0,0,0,$inter_w,$inter_h,$w,$h );
  70. // Define a new image
  71. $new_img=imagecreatetruecolor($new_width,$new_height);
  72. imagecopy($new_img, $inter_img, 0,0,0,0,$new_width,$new_height);
  73. switch( $type) {
  74. case IMAGETYPE_JPEG :
  75. imagejpeg($new_img, $dst_file,100); // Store image
  76. break;
  77. case IMAGETYPE_PNG :
  78. imagepng($new_img,$dst_file,100);
  79. break;
  80. case IMAGETYPE_GIF :
  81. imagegif($new_img,$dst_file,100);
  82. break;
  83. default:
  84. break;
  85. }
  86. }// if3
  87. }// end function
  88. ?>
  89. Copy code
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Working with Flash Session Data in LaravelWorking with Flash Session Data in LaravelMar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

cURL in PHP: How to Use the PHP cURL Extension in REST APIscURL in PHP: How to Use the PHP cURL Extension in REST APIsMar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel TestsSimplified HTTP Response Mocking in Laravel TestsMar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon12 Best PHP Chat Scripts on CodeCanyonMar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Explain the concept of late static binding in PHP.Explain the concept of late static binding in PHP.Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

Discover File Downloads in Laravel with Storage::downloadDiscover File Downloads in Laravel with Storage::downloadMar 06, 2025 am 02:22 AM

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

PHP Logging: Best Practices for PHP Log AnalysisPHP Logging: Best Practices for PHP Log AnalysisMar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

How to Register and Use Laravel Service ProvidersHow to Register and Use Laravel Service ProvidersMar 07, 2025 am 01:18 AM

Laravel's service container and service providers are fundamental to its architecture. This article explores service containers, details service provider creation, registration, and demonstrates practical usage with examples. We'll begin with an ove

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.