php怎么给psd图片生成缩略图???

发布网友 发布时间:2022-04-06 04:23

我来回答

5个回答

懂视网 时间:2022-04-06 08:45

php生成缩略图的方法:首先创建一个PHP示例文件;然后通过“header("content-type:image/png");”设定生成图片格式;最后通过“image_resize”方法按指定大小生成缩略图即可。

推荐:《PHP视频教程》

PHP生成图片缩略图的三种方法:

1、把大图缩略到缩略图指定的范围内,可能有留白(原图细节不丢失)

2、把大图缩略到缩略图指定的范围内,不留白(原图会居中缩放,把超出的部分裁剪掉)

3、把大图缩略到缩略图指定的范围内,不留白(原图会剪切掉不符合比例的右边和下边)

下面是代码:

<?php
// +----------------------------------------------------------------------
// | 把大图缩略到缩略图指定的范围内,可能有留白(原图细节不丢失)
// +---------------------------------------------------------------------- 
$w = $_GET['w']?$_GET['w']:200;
$h = $_GET['h']?$_GET['h']:200;
$filename = "stand_test_".$w."_".$h.".jpg";
image_resize( 'test.jpg',$filename, $w, $h);
header("content-type:image/png");//设定生成图片格式
echo file_get_contents($filename);
 
function image_resize($f, $t, $tw, $th){
// 按指定大小生成缩略图,而且不变形,缩略图函数
 $temp = array(1=>'gif', 2=>'jpeg', 3=>'png');
 
 list($fw, $fh, $tmp) = getimagesize($f);
 
 if(!$temp[$tmp]){
  return false;
 }
 $tmp = $temp[$tmp];
 $infunc = "imagecreatefrom$tmp";
 $outfunc = "image$tmp";
 
 $fimg = $infunc($f);
 
 // 使缩略后的图片不变形,并且在 缩略图宽高范围内
 if($fw/$tw > $fh/$th){
  $th = $tw*($fh/$fw);
 }else{
  $tw = $th*($fw/$fh);
 }
 
 $timg = imagecreatetruecolor($tw, $th);
 imagecopyresampled($timg, $fimg, 0,0, 0,0, $tw,$th, $fw,$fh);
 if($outfunc($timg, $t)){
  return true;
 }else{
  return false;
 }
}
?>

<?php
// +----------------------------------------------------------------------
// | 把大图缩略到缩略图指定的范围内,不留白(原图会居中缩放,把超出的部分裁剪掉)
// +----------------------------------------------------------------------
$w = $_GET['w']?$_GET['w']:200;
$h = $_GET['h']?$_GET['h']:200;
$filename = "cut_test_".$w."_".$h.".jpg";
image_resize( 'test.jpg',$filename, $w, $h);
header("content-type:image/png");//设定生成图片格式
echo file_get_contents($filename);
 
// 按指定大小生成缩略图,而且不变形,缩略图函数
function image_resize($f, $t, $tw, $th){
 $temp = array(1=>'gif', 2=>'jpeg', 3=>'png');
 list($fw, $fh, $tmp) = getimagesize($f);
 if(!$temp[$tmp]){
  return false;
 }
 $tmp = $temp[$tmp];
 $infunc = "imagecreatefrom$tmp";
 $outfunc = "image$tmp";
 
 $fimg = $infunc($f);
// $fw = 10;
// $fh = 4;
// $tw = 4;
// $th = 2;
 // 把图片铺满要缩放的区域
 if($fw/$tw > $fh/$th){
  $zh = $th;
  $zw = $zh*($fw/$fh);
  $_zw = ($zw-$tw)/2;
 }else{
  $zw = $tw;
  $zh = $zw*($fh/$fw);
  $_zh = ($zh-$th)/2;
 }
// echo $zw."<br>"; 
// echo $zh."<br>"; 
// echo $_zw."<br>"; 
// echo $_zh."<br>"; 
// exit;
 $zimg = imagecreatetruecolor($zw, $zh);
 // 先把图像放满区域
 imagecopyresampled($zimg, $fimg, 0,0, 0,0, $zw,$zh, $fw,$fh);
 
 // 再截取到指定的宽高度
 $timg = imagecreatetruecolor($tw, $th);
 imagecopyresampled($timg, $zimg, 0,0, 0+$_zw,0+$_zh, $tw,$th, $zw-$_zw*2,$zh-$_zh*2);
// 
 if($outfunc($timg, $t)){
  return true;
 }else{
  return false;
 }
}
 
?>

<?php
// +----------------------------------------------------------------------
// | 把大图缩略到缩略图指定的范围内,不留白(原图会剪切掉不符合比例的右边和下边)
// +----------------------------------------------------------------------
$w = $_GET['w']?$_GET['w']:200;
$h = $_GET['h']?$_GET['h']:200;
$filename = "strict_test_".$w."_".$h.".jpg";
image_resize( 'test.jpg',$filename, $w, $h);
header("content-type:image/png");//设定生成图片格式
echo file_get_contents($filename);
 
function image_resize($f, $t, $tw, $th){
// 按指定大小生成缩略图,而且不变形,缩略图函数
 $temp = array(1=>'gif', 2=>'jpeg', 3=>'png');
 
 list($fw, $fh, $tmp) = getimagesize($f);
 
 if(!$temp[$tmp]){
  return false;
 }
 $tmp = $temp[$tmp];
 $infunc = "imagecreatefrom$tmp";
 $outfunc = "image$tmp";
 
 $fimg = $infunc($f);
 
 if($fw/$tw > $fh/$th){
  $fw = $tw * ($fh/$th);
 }else{
  $fh = $th * ($fw/$tw);
 }
 
 $timg = imagecreatetruecolor($tw, $th);
 imagecopyresampled($timg, $fimg, 0,0, 0,0, $tw,$th, $fw,$fh);
 if($outfunc($timg, $t)){
  return true;
 }else{
  return false;
 }
}
?>

热心网友 时间:2022-04-06 05:53

psd是不会通过缩略图显示的,用其他能打开它的软件可以外,其他都是没法的。你这个php生成缩略图是在什么地方生成嘛,在网页上面的话浏览器只支持jpg/gif/png这几种图片格式,其他的都是个别支持不通用的。

热心网友 时间:2022-04-06 07:11

给你个用法吧!首先来这下载一个PHP的类库http://iw3c.com/blog/read.php?blogid=410 然后用法就是!include_once 'classPhpPsdReader.php';
function imagecreatefrompsd($fileName) {
$psdReader = new PhpPsdReader($fileName);
if (isset($psdReader->infoArray['error'])) return '';
else return $psdReader->getImage();
}
header("Content-type: image/png");
$img=imagecreatefrompsd('01_avatar_big.psd');
imagepng($img);
imagedestroy($img);

热心网友 时间:2022-04-06 08:45

PHP现在处理图片的只有GD2库,但目前的GD库还不支持下PSD图片,就边处理GIF和PNG也不能尽善尽美 连BMP也不支持才让我感到郁闷……

热心网友 时间:2022-04-06 10:37

哈哈 这个 有学问啊 你需要慢慢去弄啊 搔搔滴滴

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com