Generating image thumbnails using php - without running out of memory

前端 未结 2 1063
轻奢々
轻奢々 2020-12-20 05:39

I am currently using a php gd implementation to resize images which constantly runs out of memory - rather quickly. I guess the problem are the php functions, like imagecrea

相关标签:
2条回答
  • 2020-12-20 06:26

    here is a PHP function for you

     function make_thumb($src, $dest, $desired_width,$desired_h) {
    
      /* read the source image */
      $source_image = imagecreatefromjpeg($src);
      $width = imagesx($source_image);
      $height = imagesy($source_image);
    
      $desired_height = $desired_h;
    
      /* create a new, "virtual" image */
      $virtual_image = imagecreatetruecolor($desired_width, $desired_height);
    
      /* copy source image at a resized size */
      imagecopyresampled($virtual_image, $source_image, 0, 0, 0, 0, $desired_width, $desired_height, $width, $height);
    
      /* create the physical thumbnail image to its destination */
      imagejpeg($virtual_image, $dest);
    }
    

    Source : davidwalsh.name/create-image-thumbnail-php

    0 讨论(0)
  • 2020-12-20 06:38

    GD don't use that much memory, so you have other problems in your code.

    If you resize multiple images and don't call imagedestroy on a newly created image, you run in memory leaks.

    0 讨论(0)
提交回复
热议问题