php 生成缩略图的示例,需要GD2 library

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

对此感兴趣的朋友,看看idc笔记做的技术笔记。经测试代码如下:

<?
文章正文

这篇文章主要为大家详细介绍了php 生成缩略图的示例,需要GD2 library,具有一定的参考价值,可以用来参考一下。

对此感兴趣的朋友,看看idc笔记做的技术笔记。经测试代码如下:

<?php
/**
 * GD2 library,生成缩略图
 *
 * @param 
 * @arrange (www.idcnote.com)
 **/
function make_thumb($src,$dest,$desired_width)
{
 
 /* read the source image */
 $source_image = imagecreatefromjpeg($src);
 $width = imagesx($source_image);
 $height = imagesy($source_image);
 
 /* find the "desired height" of this thumbnail, relative to the desired width  */
 $desired_height = floor($height*($desired_width/$width));
 
 /* create a new, "virtual" image */
 $virtual_image = imagecreatetruecolor($desired_width,$desired_height);
 
 /* copy source image at a resized size */
 imagecopyresized($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, 83);
}


/*** 来自:php教程(www.idcnote.com) ***/ 
?>

注:关于php 生成缩略图的示例,需要GD2 library的内容就先介绍到这里,更多相关文章的可以留意

代码注释

作者:喵哥笔记

IDC笔记

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