>백엔드 개발 >PHP 튜토리얼 >Nginx에서 PHP로 이미지를 동적으로 자르는 방법

Nginx에서 PHP로 이미지를 동적으로 자르는 방법

WBOY
WBOY원래의
2016-07-25 09:13:041053검색

고성능 PHP 이미지 동적 자르기 솔루션에 대한 기사를 작성한 적이 있습니다. 해당 기사는 nginx 캐시 및 재작성을 사용하여 구현되었으며, CDN과 결합되어 해당 솔루션의 한 가지 문제점은 이미지가 실제로 생성되지 않는다는 것입니다. 대신 바이너리 형식으로 캐시에 저장됩니다. 캐시가 실패하면 PHP에 캐시를 다시 생성하도록 요청해야 합니다. 차이점에 대해서는 당분간은 이렇게 생각합니다.

여유 시간을 활용하여 정적으로 생성된 이미지에 대한 지원을 추가하고, 세 가지 이미지 모드 간 전환을 지원하며, 포털 웹사이트에서 이미지 크기를 자동으로 잘라서 서버 대역폭을 줄입니다. 이미지 자르기는 Imagick 구성 요소를 사용합니다.

1. 아이디어 재현: 1. 먼저 서버에 그림 크기 조정, 계산 및 자르기가 포함된 그림 생성을 요청하는 동적 스크립트를 작성합니다. 2. http://www.domain.com/www/300×200-1/test.jpg와 같이 생성하려는 URL 규칙을 결정합니다. 3. 브라우저 캐싱. 4. 끝.

2. 동적으로 이미지를 자르는 PHP 스크립트

  1. /**

  2. * 작성자 pony_chiang
  3. * 고성능 이미지 자르기 솔루션
  4. * php-imagick 확장 필요
  5. */
  6. ini_set( "메모리 제한", "80M" );
  7. // http://yourdomain.com/resize.php?site=www&width=300&height=200&mode=2&path=uploadfile/helloworld.png

  8. // nginx 재작성 규칙과 같은 주소 요청 ^([^.]*)/s/(.*)/(d )x(d )-(d)/(.*) $1/s/resize.php?site=$2&width=$3&height=$4 다시 작성 &mode=$5&path=$6 last;

  9. $path = 트림( $_GET ['경로'] );

  10. $mode = intval( $_GET ['모드'] ) ;
  11. $site = 트림 ( $_GET ['사이트'] );
  12. $width = intval ( $_GET ['너비'] );
  13. $height = intval ( $_GET ['높이'] );

  14. $site_list = array ('www' => '/mnt/webroot/test/' );

  15. $orig_dir = dirname ( __FILE__ );

  16. if (! array_key_exists ( $site, $site_list )) {
  17. 헤더 ( 'HTTP/1.1 400 잘못된 요청' );
  18. 종료 ();
  19. }< /p>
  20. if ($mode > 3 || $mode < 0) {

  21. 헤더( 'HTTP/1.1 400 잘못된 요청' );
  22. 종료();
  23. }

  24. $orig_file = $site_list [$site] . $path;

  25. if (!file_exists ( $orig_file )) {
  26. 헤더 ( 'HTTP/1.1 404 찾을 수 없음' );
  27. 종료 ();
  28. }

  29. $file_ext = '.' . pathinfo ( $path, PATHINFO_EXTENSION );

  30. $file_name = 기본 이름( $path, $file_ext );

  31. $save_path = "{$orig_dir}/{$site}/{$width}x{$height}-{$mode}/{ $path}";
  32. $save_dir = dirname( $save_path );

  33. if(!file_exists( $save_dir ))

  34. wpx_mkdir( $save_dir );
  35. $target_width = $width;

  36. $target_height = $height;

  37. $new_width = $target_width;

  38. $new_height = $target_height ;
  39. $image = 새 Imagick( $orig_file );
  40. list( $orig_width, $orig_height, $type, $attr ) = getimagesize( $orig_file );

  41. if ($mode == "0") {

  42. //일정하게 크기가 조정되는 이미지
  43. $new_height = $orig_height * $new_width / $orig_width;
  44. if ($new_height > $target_height) {
  45. $new_width = $orig_width * $target_height / $orig_height;
  46. $new_height = $target_height;
  47. }
  48. } else if ($mode == "2") {
  49. // 확대 및 자르기 이미지
  50. $desired_aspect = $target_width / $target_height;
  51. $orig_aspect = $orig_width / $orig_height;

  52. if ($desired_aspect > $orig_aspect) {

  53. $trim = $orig_height - ($orig_width / $desired_aspect);
  54. $image->cropImage ( $orig_width, $orig_height - $trim, 0, $trim / 2 );
  55. error_log ( "HEIGHT TRIM $ 트림" );
  56. } else {
  57. $trim = $orig_width - ($orig_height * $desired_aspect);
  58. $image->cropImage ( $orig_width - $trim, $orig_height, $trim / 2 , 0 );
  59. } bbs.it-home.org
  60. }

  61. $image->resizeImage ( $new_width, $new_height, imagick::FILTER_LANCZOS, 1 );

  62. $image->writeImage ( $save_path );
  63. 헤더( 'Content-Type: image/jpeg' );
  64. 헤더( 'Last-Modified: ' . gmdate ( 'D, d M Y H:i:s' ) . ' GMT' );
  65. echo file_get_contents ( $save_path );
  66. true 반환;

  67. // 디렉토리 생성 루프

  68. function wpx_mkdir($dir, $mode = 0777) {
  69. if (is_dir ( $dir ) || @mkdir ( $dir, $mode ))
  70. return true;
  71. if (! wpx_mkdir ( dirname ( $ dir ), $mode ))
  72. false 반환;
  73. return @mkdir ( $dir, $mode );
  74. }

복사 코드

3. nginx.conf 구성

  1. server {

  2. listen 80;
  3. server_name test.yourdomain.com;
  4. root /mnt/ webroot/test;
  5. index index.php;
  6. expires 30d;

  7. location /s {

  8. #동적 자르기는 이 이미지가 생성되지 않은 경우에만 호출됩니다.
  9. if (!-e $request_filename) {
  10. 다시 작성 ^([^.]*)/s/(.*)/(d )x(d )-(d)/(.*) $1/ s /resize.php?site=$2&width=$3&height=$4&mode=$5&path=$6 last;
  11. break;
  12. }
  13. }

  14. error_page 404 403 402 500 502 503 504 /404.html;

  15. location = /404.html {
  16. }

  17. location ~ .php$ {

  18. fastcgi_pass 127.0.0.1 : 9000;
  19. fastcgi_index index.php;
  20. fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
  21. includefastcgi_params;
  22. }

  23. }

코드 복사

설명, 브라우저 캐싱에 대한 기사를 강조합니다. PHP로 생성된 이미지인지 nginx 캐시를 사용하는지 잊어버리세요. PHP 코드

  1. header('최종 수정: ' .gmdate('D, d M Y H:i:s') . ' GMT' );
코드 복사

는 CDN을 사용하는데 많은 도움이 됩니다. 클라이언트가 처음으로 이 파일에 액세스할 때의 http 상태 코드는 200입니다. 새로 고친 후 상태 코드는 항상 304입니다. 이제 로컬 클라이언트가 이를 캐시하여 대역폭을 절약한다는 이점을 이해하게 되었습니다.



성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.