php生成缩略图最简单,php简单的图片生成缩略图 源代码

PHP代码

01.<?php

02.// The file

03.$filename = 'mm.jpg';

04.$dstFile="icons/";

05.$filePath="icons/test.jpg";

06.

07.// Set a maximum height and width

08.$width = 100;

09.$height = 100;

10.

11.// Content type

12.header('Content-type: image/jpeg');

13.

14.// Get new dimensions

15.list($width_orig, $height_orig) = getimagesize($filename);

16.

17.if ($width && ($width_orig < $height_orig)) {

18. $width = ($height / $height_orig) * $width_orig;

19.} else {

20. $height = ($width / $width_orig) * $height_orig;

21.}

22.

23.// Resample

24.$image_p = imagecreatetruecolor($width, $height);

25.$image = imagecreatefromjpeg($filename);

26.imagecopyresampled($image_p, $image, 0, 0, 0, 0, $width, $height, $width_orig, $height_orig);

27.

28.// Output

29.imagejpeg($image_p,$filePath);

30.?>

$filename图片的名称,包括路径

$dstFile目标路径

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值