您的位置:

php缩略图的问题,php生成缩略图并输出

本文目录一览:

thinkphp缩略图问题

请确认缩略图的目录是否已经手动建立

保存文件的目录不要放在模板目录下,应该放在项目目录下

请教php 生成缩略图问题

生成缩略图跟游览器没关系,上传图片一般调用的就是JS文件,你看看是不是JS有问题。只有JS会出现游览器的兼容问题,但是IE都成功了,其他现在主流游览器也不会不兼容,代码贴出来LOOK~

php创建缩略图问题

可能你找的这些处理函数(类)功能比较强大,所以会有复杂的感觉。如果只是单纯的放大缩小,使用 GD 库,还是比较简单的。php 手册里有一个例子,使用 imagecopyresized 函数。完整的例子如下,你也可以直接看手册获取更多的信息,希望对你有帮助。

// PHP 手册 imagecopyresized 函数的例子

// File and new size

$filename = 'test.jpg';

$percent = 0.5;

// Content type

header('Content-Type: image/jpeg');

// Get new sizes

list($width, $height) = getimagesize($filename);

$newwidth = $width * $percent;

$newheight = $height * $percent;

// Load

$thumb = imagecreatetruecolor($newwidth, $newheight);

$source = imagecreatefromjpeg($filename);

// Resize

imagecopyresized($thumb, $source, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);

// Output

imagejpeg($thumb);