Home Backend Development PHP Tutorial PHP image cropping function (image does not deform)

PHP image cropping function (image does not deform)

Jul 25, 2016 am 08:53 AM

  1. *exif_imagetype -- Determine the type of an image
  2. *Description: The function is to crop an image into an image of any size without deformation
  3. *Parameter description: Enter the file name of the image to be processed , generate the save file name of the new image, generate the width of the new image, generate the height of the new image
  4. */
  5. // Get an image of any size, stretch the missing parts, no deformation, no blank space
  6. function my_image_resize($src_file , $dst_file , $new_width , $new_height) {
  7. $new_width= intval($new_width);
  8. $new_height=intval($new_width);
  9. if($new_width <1 || $new_height <1) {
  10. echo "params width or height error !";
  11. exit();
  12. }
  13. if(!file_exists($src_file)) {
  14. echo $src_file . " is not exists !";
  15. exit();
  16. }
  17. // image Type
  18. $type=exif_imagetype($src_file);
  19. $support_type=array(IMAGETYPE_JPEG , IMAGETYPE_PNG , IMAGETYPE_GIF);
  20. if(!in_array($type, $support_type,true)) {
  21. echo "this type of image does not support ! only support jpg , gif or png";
  22. exit();
  23. }
  24. //Load image
  25. switch($type) {
  26. case IMAGETYPE_JPEG :
  27. $src_img=imagecreatefromjpeg($src_file);
  28. break;
  29. case IMAGETYPE_PNG :
  30. $src_img=imagecreatefrompng($src_file);
  31. break;
  32. case IMAGETYPE_GIF :
  33. $src_img=imagecreatefromgif($src_file);
  34. break;
  35. default:
  36. echo "Load image error!";
  37. exit();
  38. }
  39. $w=imagesx($src_img);
  40. $h=imagesy($src_img);
  41. $ratio_w=1.0 * $new_width / $w;
  42. $ratio_h=1.0 * $new_height / $h;
  43. $ratio=1.0;
  44. // The height and width of the generated image are smaller or larger than the original ones. The principle is to enlarge by a large ratio and reduce by a large ratio (the reduced ratio will be smaller)
  45. if( ($ratio_w < 1 && $ratio_h < 1) || ($ratio_w > 1 && $ratio_h > 1)) {
  46. if($ratio_w < $ratio_h) {
  47. $ratio = $ratio_h ; // Case 1, the ratio of width to height is small, crop or enlarge it according to the height ratio standard
  48. }else {
  49. $ratio = $ratio_w ;
  50. }
  51. // Define an intermediate temporary image whose aspect ratio just meets the target requirements
  52. $inter_w=( int)($new_width / $ratio);
  53. $inter_h=(int) ($new_height / $ratio);
  54. $inter_img=imagecreatetruecolor($inter_w , $inter_h);
  55. //var_dump($inter_img);
  56. imagecopy( $inter_img, $src_img, 0,0,0,0,$inter_w,$inter_h);
  57. // Generate a temporary image with the maximum side length as the size of the target image $ratio
  58. // Define a new image
  59. $new_img=imagecreatetruecolor($new_width,$new_height);
  60. //var_dump($new_img);exit();
  61. imagecopyresampled($new_img,$inter_img,0,0,0,0,$new_width,$new_height,$ inter_w,$inter_h);
  62. switch($type) {
  63. case IMAGETYPE_JPEG :
  64. imagejpeg($new_img, $dst_file,100); // Store image
  65. break;
  66. case IMAGETYPE_PNG :
  67. imagepng($new_img,$dst_file,100 );
  68. break;
  69. case IMAGETYPE_GIF :
  70. imagegif($new_img,$dst_file,100);
  71. break;
  72. default:
  73. break;
  74. }
  75. } // end if 1
  76. // 2 One side of the target image is larger than the original Picture, one side is smaller than the original picture, first enlarge the ordinary image, and then crop
  77. // =if( ($ratio_w < 1 && $ratio_h > 1) || ($ratio_w >1 && $ratio_h <1) )
  78. else{
  79. $ratio=$ratio_h>$ratio_w? $ratio_h : $ratio_w; //Take the value with the larger ratio
  80. //Define a large image in the middle, the height or width of the image is equal to the target image, and then Enlarge the original image
  81. $inter_w=(int)($w * $ratio);
  82. $inter_h=(int) ($h * $ratio);
  83. $inter_img=imagecreatetruecolor($inter_w , $inter_h);
  84. // Scale the original image and then crop it
  85. imagecopyresampled($inter_img,$src_img,0,0,0,0,$inter_w,$inter_h,$w,$h);
  86. // Define a new image
  87. $new_img=imagecreatetruecolor ($new_width,$new_height);
  88. imagecopy($new_img, $inter_img, 0,0,0,0,$new_width,$new_height);
  89. switch($type) {
  90. case IMAGETYPE_JPEG :
  91. imagejpeg($new_img, $ dst_file,100); // Store image
  92. break;
  93. case IMAGETYPE_PNG :
  94. imagepng($new_img,$dst_file,100);
  95. break;
  96. case IMAGETYPE_GIF :
  97. imagegif($new_img,$dst_file,100);
  98. break;
  99. default:
  100. break;
  101. }
  102. }// if3
  103. }// end function
  104. my_image_resize('test.gif','11111.gif','100px','100px');
  105. ?>
Copy the code

Editor’s summary: The PHP image cropping function implemented above flexibly applies the relevant functions of the PHP gd library, including the usage of imagecreatefromjpeg, imagecreatefrompng, imagecreatefromgif, imagecreatetruecolor and other functions. Therefore, flexibly mastering the usage of each function in the PHP gd library is crucial for the realization of functions such as cropping pictures, watermarks, and thumbnails.



Statement of this Website
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

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 Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Working with Flash Session Data in Laravel Working with Flash Session Data in Laravel Mar 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 APIs cURL in PHP: How to Use the PHP cURL Extension in REST APIs Mar 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 Tests Simplified HTTP Response Mocking in Laravel Tests Mar 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 CodeCanyon 12 Best PHP Chat Scripts on CodeCanyon Mar 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

PHP Logging: Best Practices for PHP Log Analysis PHP Logging: Best Practices for PHP Log Analysis Mar 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

Discover File Downloads in Laravel with Storage::download Discover File Downloads in Laravel with Storage::download Mar 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:

HTTP Method Verification in Laravel HTTP Method Verification in Laravel Mar 05, 2025 pm 04:14 PM

Laravel simplifies HTTP verb handling in incoming requests, streamlining diverse operation management within your applications. The method() and isMethod() methods efficiently identify and validate request types. This feature is crucial for building

See all articles