>  기사  >  백엔드 개발  >  얼굴 자가 지방 충전, PHP 썸네일 이미지를 동일한 비율로 무손실 압축, 보조 색상으로 빈 영역 채울 수 있음

얼굴 자가 지방 충전, PHP 썸네일 이미지를 동일한 비율로 무손실 압축, 보조 색상으로 빈 영역 채울 수 있음

WBOY
WBOY원래의
2016-07-29 08:45:361075검색

코드 복사 코드는 다음과 같습니다.


error_reporting( E_ALL )
// 테스트
imagezoom('1.jpg', '2.jpg', 400, 300, '#FFFFFF') ;
/*
php 썸네일 기능:
동일비 무손실 압축, 보조 색상으로 채울 수 있음 작성자: Hua Zai
호스트 형식:
bmp, jpg, gif, png
param :
@srcimage: 축소할 그림
@dstimage: 저장할 그림
@dst_width: 너비 줄이기
@dst_height: 높이 줄이기
@groundcolor: 다음과 같은 보조 색상: # FFFFFF 지원 6비트는 3비트를 지원하지 않음
*/
function imagezoom( $srcimage, $dstimage, $dst_width, $dst_height, $Backgroundcolor ) {
// 파일 이름이 깨졌습니다
if ( PHP_OS == 'WINNT' ) {
$srcimage = iconv('UTF-8', 'GBK', $srcimage)
$dstimage = iconv('UTF-8', 'GBK' , $dstimage);
}
$dstimg = imagecreatetruecolor( $dst_width, $dst_height );
$color = imagecolorallocate($dstimg
, hexdec(substr($Backgroundcolor, 1, 2))
, hexdec( substr($Backgroundcolor, 3, 2))
, hexdec(substr($Backgroundcolor, 5, 2))
)imagefill($dstimg, 0, 0, $ color);
if ( !$arr=getimagesize($srcimage) ) {
echo "썸네일을 생성할 파일이 존재하지 않습니다."
exit
}
$src_width = $ arr[0]
$src_height = $arr[1];
$srcimg = null
$method = getcreatemethod( $srcimage )
if ( $method ); ( '$srcimg = ' . $method . ';' )
$dst_x = 0;
$dst_y = 0
$dst_w =
$dst_h = $dst_height;
if ( ($dst_width / $dst_height - $src_width / $src_height) > 0 ) {
$dst_w = $src_width * ( $dst_height / $src_height )
$dst_x = ( $dst_width - $dst_w ) / 2;
} elseif ( ($dst_width / $dst_height - $src_width / $src_height) < 0 ) {
$dst_h = $src_height * ( $dst_width / $src_width );
$dst_y = ( $dst_height - $dst_h ) / 2;
}
imagecopyresampled($dstimg, $srcimg, $dst_x
, $dst_y, 0, 0, $dst_w, $dst_h, $src_width, $src_height) ;
//형식 저장
$arr = array(
'jpg' => 'imagejpeg'
, 'jpeg' => 'imagejpeg'
, 'png' => 'imagepng'
, 'gif' => 'imagegif'
, 'bmp' => 'imagebmp'
); (explode('.' , $dstimage ) ) );
if (!in_array($suffix, array_keys($arr)) ) {
echo "저장된 파일 이름이 잘못되었습니다."
exit;
} else {
eval( $arr[$suffix] . '($dstimg, "'.$dstimage.'");' )
}
imagejpeg($dstimg, $dstimage );
imagedestroy( $dstimg);
imagedestroy($srcimg);
}
function getcreatemethod( $file ) {
$arr = array(
'474946' => ; "imagecreatefromgif('$file')"
, 'FFD8FF' => "imagecreatefromjpeg('$file')"
, '424D' => "imagecreatefrombmp('$file')"
, '89504E' => ; "imagecreatefrompng('$file')"
)
$fd = fopen( $file, "rb" );$data = fread( $fd, 3 );
$data = str2hex( $data );
if ( array_key_exists( $data, $arr ) ) {
return $arr[$data]
} elseif ( array_key_exists( substr( $data, 0, 4) , $arr ) ) {
return $arr[substr($data, 0, 4)]
} else {
return false; }
function str2hex( $str ) {
$ret = "";
for( $i = 0; $i < strlen( $str ) ; $i ) {
$ret . = ord($str[$ i]) >= 16 ? strval( dechex( ord($str[$i]) ) )
: '0'. strval( ord($str[$i] ) ) );
}
return strtoupper( $ret );
}
// BMP 생성 함수 php 자체에는
함수 imagecreatefrombmp($filename)
{
if (! $f1 = fopen( $filename,"rb")) return FALSE;
$FILE = unpack("vfile_type/Vfile_size/Vreserved/Vbitmap_offset", fread($f1,14))
if ($FILE['file_type'] != 19778) return FALSE;
$BMP = unpack('Vheader_size/Vwidth/Vheight/vplanes/vbits_per_pixel'.
'/Vcompression/Vsize_bitmap/Vhoriz_solution'.
'/Vvert_solution/Vcolors_used/Vcolors_important' , fread($f1,40));
$BMP['colors'] = pow(2,$BMP['bits_per_pixel'])
if ($BMP[ 'size_bitmap'] == 0) $BMP['size_bitmap'] = $FILE['file_size'] - $FILE['bitmap_offset']
$BMP['bytes_per_pixel'] = $BMP['bits_per_pixel'] /8;
$BMP ['bytes_per_pixel2'] = ceil($BMP['bytes_per_pixel'])
$BMP['decal'] = ($BMP['width']*$BMP['bytes_per_pixel ']/4);
$BMP['decal'] -= Floor($BMP['width']*$BMP['bytes_per_pixel']/4)
$BMP['decal'] = 4-(4*$BMP[ 'decal']);
if ($BMP['decal'] == 4) $BMP['decal'] = 0
$PALETTE = array();
if ($BMP[ 'colors'] < 16777216)
{
$PALETTE = unpack('V'.$BMP['colors'], fread($f1,$BMP['colors) ']*4));
$IMG = fread($f1,$BMP['size_bitmap'])
$VIDE = chr(0)
$res = imagecreatetruecolor( $BMP['너비'], $BMP['높이']);
$P = 0
$Y = $BMP['높이']-1
($Y > = 0)
{
$X=0;
while ($X < $BMP['width'])
{
if ($BMP['bits_per_pixel'] == 24)
$COLOR = unpack("V",substr($IMG,$P,3).$VIDE)
elseif ($BMP['bits_per_pixel'] == 16)
{
$COLOR = unpack("n",substr($IMG,$P,2))
$COLOR[1] = $PALETTE[$COLOR[1] 1]
}
elseif ($BMP['bits_per_pixel' ] == 8)
{
$COLOR = unpack("n",$VIDE.substr($IMG,$P,1))
$COLOR[ 1] = $PALETTE[$COLOR [1] 1]
}
elseif ($BMP['bits_per_pixel'] == 4)
{
$COLOR = unpack("n",$VIDE.substr($IMG,floor($P),1));
if (($P*2)%2 == 0) $COLOR[1] = ($COLOR[1] >> 4) ; 그렇지 않으면 $COLOR[1] = ($COLOR[1] & 0x0F);
$COLOR[1] = $PALETTE[$COLOR[1] 1];
}
elseif ($BMP['bits_per_pixel'] == 1)
{
$COLOR = unpack("n",$VIDE.substr($IMG,floor($P), 1));
if (($P*8)%8 == 0) $COLOR[1] = $COLOR[1] >>7;
elseif (($P*8)%8 == 1) $COLOR[1] = ($COLOR[1] & 0x40)>>6;
elseif (($P*8)%8 == 2) $COLOR[1] = ($COLOR[1] & 0x20)>>5;
elseif (($P*8)%8 == 3) $COLOR[1] = ($COLOR[1] & 0x10)>>4;
elseif (($P*8)%8 == 4) $COLOR[1] = ($COLOR[1] & 0x8)>>3;
elseif (($P*8)%8 == 5) $COLOR[1] = ($COLOR[1] & 0x4)>>2;
elseif (($P*8)%8 == 6) $COLOR[1] = ($COLOR[1] & 0x2)>>1;
elseif (($P*8)%8 == 7) $COLOR[1] = ($COLOR[1] & 0x1);
$COLOR[1] = $PALETTE[$COLOR[1] 1];
}
else
FALSE를 반환합니다.
imagesetpixel($res,$X,$Y,$COLOR[1]);
$X ;
$P = $BMP['bytes_per_pixel'];
}
$Y--;
$P =$BMP['데칼'];
}
fclose($f1);
$res를 반환합니다.
}
// BMP 保存函数 ,php本身无
함수 imagebmp ($im, $fn = false)
{
if (!$im) return false;
if ($fn === false) $fn = 'php://output';
$f = fopen($fn, "w");
(!$f)가 false를 반환하는 경우;
$biWidth = 이미지x($im);
$biHeight = 이미지($im);
$biBPLine = $biWidth * 3;
$biStride = ($biBPLine 3) & ~3;
$biSizeImage = $biStride * $biHeight;
$bfOffBits = 54;
$bfSize = $bfOffBits $biSizeImage;
fwrite($f, 'BM', 2);
fwrite($f, 팩('VvvV', $bfSize, 0, 0, $bfOffBits));
fwrite($f, 팩('VVVvvVVVVVV', 40, $biWidth, $biHeight, 1, 24, 0, $biSizeImage, 0, 0, 0, 0));
$numpad = $biStride - $biBPLine;
for ($y = $biHeight - 1; $y >= 0; --$y)
{
for ($x = 0; $x < $biWidth; $x)
{
$col = imagecolorat($im, $x, $y);
fwrite($f, 팩('V', $col), 3);
}
for ($i = 0; $i < $numpad; $i)
fwrite ($f, pack ('C', 0));
}
fclose($f);
참을 반환합니다.
}
?>

以上就介绍了면부 자동 PHP缩略图等比例无损压缩,可填充공白区域补充color,包括了면부 자동的内容,希望对PHP教程有兴趣的朋友有所帮助。

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.