代碼:
1. <?php
2. header('Content-Type:image/png');
3.
4. $pic_name = __DIR__.'\\src\\images\\png\\demo.png';
5. //擷取到原圖的長高
6. list($width,$height) =getimagesize($pic_name);
7. $_width=$width*0.5;
8. $_height=$height*0.5;
9. //建立新圖像
10. $im=imagecreatetruecolor($_width, $_height);
11. //載入原圖
12. $im_post=imagecreatefrompng($pic_name);
13.
14. imagecopyresampled($im, $im_post, 0, 0, 0, 0, $_width, $_height, $width, $height);
15. imagepng($im);
16. imagedestroy ($im);
17. imagedestroy ($im_post);
18.
19. ?>