用php做一个正方形,使用PHP创建缩略图. (裁剪到正方形)

我有一个目前正在使用的PHP脚本,它根据最大宽度和高度创建缩略图.但是,我希望它能够始终创建方形图像并在需要时裁剪图像.

这是我现在使用的:

function makeThumb( $filename, $type ) {

global $max_width, $max_height;

if ( $type == 'jpg' ) {

$src = imagecreatefromjpeg("blocks/img/gallery/" . $filename);

} else if ( $type == 'png' ) {

$src = imagecreatefrompng("blocks/img/gallery/" . $filename);

} else if ( $type == 'gif' ) {

$src = imagecreatefromgif("blocks/img/gallery/" . $filename);

}

if ( ($oldW = imagesx($src)) < ($oldH = imagesy($src)) ) {

$newW = $oldW * ($max_width / $oldH);

$newH = $max_height;

} else {

$newW = $max_width;

$newH = $oldH * ($max_height / $oldW);

}

$new = imagecreatetruecolor($newW, $newH);

imagecopyresampled($new, $src, 0, 0, 0, 0, $newW, $newH, $oldW, $oldH);

if ( $type == 'jpg' ) {

imagejpeg($new, 'blocks/img/gallery/thumbs/'.$filename);

} else if ( $type == 'png' ) {

imagepng($new, 'blocks/img/gallery/thumbs/'.$filename);

} else if ( $type == 'gif' ) {

imagegif($new, 'blocks/img/gallery/thumbs/'.$filename);

}

imagedestroy($new);

imagedestroy($src);

}

我怎么改变它来完成我想要的东西(方形拇指)?

提前致谢.

function makeThumb( $filename , $thumbSize=100 ){

global $max_width, $max_height;

/* Set Filenames */

$srcFile = 'blocks/img/gallery/'.$filename;

$thumbFile = 'blocks/img/gallery/thumbs/'.$filename;

/* Determine the File Type */

$type = substr( $filename , strrpos( $filename , '.' )+1 );

/* Create the Source Image */

switch( $type ){

case 'jpg' : case 'jpeg' :

$src = imagecreatefromjpeg( $srcFile ); break;

case 'png' :

$src = imagecreatefrompng( $srcFile ); break;

case 'gif' :

$src = imagecreatefromgif( $srcFile ); break;

}

/* Determine the Image Dimensions */

$oldW = imagesx( $src );

$oldH = imagesy( $src );

/* Calculate the New Image Dimensions */

if( $oldH > $oldW ){

/* Portrait */

$newW = $thumbSize;

$newH = $oldH * ( $thumbSize / $newW );

}else{

/* Landscape */

$newH = $thumbSize;

$newW = $oldW * ( $thumbSize / $newH );

}

/* Create the New Image */

$new = imagecreatetruecolor( $thumbSize , $thumbSize );

/* Transcribe the Source Image into the New (Square) Image */

imagecopyresampled( $new , $src , 0 , 0 , ( $newW-$thumbSize )/2 , ( $newH-$thumbSize )/2 , $thumbSize , $thumbSize , $oldW , $oldH );

switch( $type ){

case 'jpg' : case 'jpeg' :

$src = imagejpeg( $new , $thumbFile ); break;

case 'png' :

$src = imagepng( $new , $thumbFile ); break;

case 'gif' :

$src = imagegif( $new , $thumbFile ); break;

}

imagedestroy( $new );

imagedestroy( $src );

}

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值