php 原比例生成缩略图实现方法

内容摘要
这篇文章主要为大家详细介绍了php 原比例生成缩略图实现方法,具有一定的参考价值,可以用来参考一下。

php原比例生成缩略图,对此感兴趣的朋友,看看idc笔记做的技术笔记。经测试
文章正文

这篇文章主要为大家详细介绍了php 原比例生成缩略图实现方法,具有一定的参考价值,可以用来参考一下。

php原比例生成缩略图,对此感兴趣的朋友,看看idc笔记做的技术笔记。经测试代码如下:

<?php
/**
 * 生成缩略图
 *
 * @param 
 * @author php教程 www.idcnote.com
 **/
$image = "jiequ.jpg"; // 原图
$imgstream = file_get_contents($image);
$im = imagecreatefromstring($imgstream);
$x = imagesx($im);//获取图片的宽
$y = imagesy($im);//获取图片的高
// 缩略后的大小
$xx = 140;
$yy = 200;
if($x>$y){
//图片宽大于高
    $sx = abs(($y-$x)/2);
    $sy = 0;
    $thumbw = $y;
    $thumbh = $y;
} else {
//图片高大于等于宽
    $sy = abs(($x-$y)/2.5);
    $sx = 0;
    $thumbw = $x;
    $thumbh = $x;
  }
if(function_exists("imagecreatetruecolor")) {
  $dim = imagecreatetruecolor($yy, $xx); // 创建目标图gd2
} else {
  $dim = imagecreate($yy, $xx); // 创建目标图gd1
}
imageCopyreSampled ($dim,$im,0,0,$sx,$sy,$yy,$xx,$thumbw,$thumbh);
header ("Content-type: image/jpeg");
imagejpeg ($dim, false, 100);
?>


/***   代码来自php教程(www.idcnote.com)   ***/

注:关于php 原比例生成缩略图实现方法的内容就先介绍到这里,更多相关文章的可以留意

代码注释

作者:喵哥笔记

IDC笔记

学的不仅是技术,更是梦想!