- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章PHP缩略图等比例无损压缩,可填充空白区域补充色由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
代码如下
<?php error_reporting( E_ALL ); // 测试 imagezoom('1.jpg', '2.jpg', 400, 300, '#FFFFFF'); /* php缩略图函数: 等比例无损压缩,可填充补充色 author: 华仔 主持格式: bmp 、jpg 、gif、png param: @srcimage : 要缩小的图片 @dstimage : 要保存的图片 @dst_width: 缩小宽 @dst_height: 缩小高 @backgroundcolor: 补充色 如:#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 ) { eval( '$srcimg = ' . $method . ';' ); } $dst_x = 0; $dst_y = 0; $dst_w = $dst_width; $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' ); $suffix = strtolower( array_pop(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( dechex( ord($str[$i]) ) ); } return strtoupper( $ret ); } // BMP 创建函数 php本身无 function 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_resolution'. '/Vvert_resolution/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['width'],$BMP['height']); $P = 0; $Y = $BMP['height']-1; while ($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) ; else $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 return FALSE; imagesetpixel($res,$X,$Y,$COLOR[1]); $X++; $P += $BMP['bytes_per_pixel']; } $Y--; $P+=$BMP['decal']; } fclose($f1); return $res; } // BMP 保存函数,php本身无 function imagebmp ($im, $fn = false) { if (!$im) return false; if ($fn === false) $fn = 'php://output'; $f = fopen ($fn, "w"); if (!$f) return false; $biWidth = imagesx ($im); $biHeight = imagesy ($im); $biBPLine = $biWidth * 3; $biStride = ($biBPLine + 3) & ~3; $biSizeImage = $biStride * $biHeight; $bfOffBits = 54; $bfSize = $bfOffBits + $biSizeImage; fwrite ($f, 'BM', 2); fwrite ($f, pack ('VvvV', $bfSize, 0, 0, $bfOffBits)); fwrite ($f, pack ('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, pack ('V', $col), 3); } for ($i = 0; $i < $numpad; ++$i) fwrite ($f, pack ('C', 0)); } fclose ($f); return true; } ?> 。
最后此篇关于PHP缩略图等比例无损压缩,可填充空白区域补充色的文章就讲到这里了,如果你想了解更多关于PHP缩略图等比例无损压缩,可填充空白区域补充色的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
1.枚举类型 1.枚举数据类型是C语言中一种构造数据类型,可以让数据更加简洁,更易读,对于只有 几个特定的数据 ,可以使用枚举类型 2.枚举对应英文enumeration,简写为enum
PHP函数使用说明,应用举例,精简点评,希望对您学习php有所帮助。 1.print_r() 打印关于变量的易于理解的信息,若为数组,则显示数组的结构信息. 例如
〇、前言 本文继续整理下 K8s 的一些基础概念,作为前一篇概念汇总的补充。 前一篇博文链接:https://www.cnblogs.com/hnzhengfy/p/k8s_concept.htm
我从文件资源管理器重命名了一个文件,然后我将新文件添加到 SVN 并从终端删除了之前的文件。然后 svn 显示 D A 一旦我做了 svn rename 我发现 svn 也在做同样的事情 D A
int a=1; // a=1 in binary representation 0000 0000 0000 0000 0000 0000 0000 0001 int b =~a; 1111 111
我们有这样两个互补 map 的代码: private final Map idToName = new HashMap(); private final Map nameToID = new Tree
无阻塞加载javascript,对于页面性能优化有很大的作用,这样能有效的减少js对页面加载的阻塞。特别是一些广告js文件,由于广告内容有可能是富媒体,更是很可能成为你页面加载提速的瓶颈,高性能ja
这种业务灵活性可使企业加快发展速度,降低总体拥有成本,改善对及时、准确信息的访问。SOA 有助于实现更多的资产重用、更轻松的管理和更快的开发与部署,在当今的业务环境中,变化是毫无疑问的,因此快速响应
1、错误处理 异常处理: 意外,是在程序运行过程中发生的意料这外的事,使用异常改变脚本正常流程 PHP5中的一个新的重要特性 复制代码代码如下: if()
假设我有一个 DNA 序列。我想得到它的补充。我使用了以下代码,但我没有得到它。我究竟做错了什么 ? s=readline() ATCTCGGCGCGCATCGCGTACGCTACTAGC p=unl
在What does the ^ operator do in Java?下提出了类似的问题 但我认为缺少了一些东西。 根据 @Carl Smotricz 的说法,当我们有一个例子时:“定义按位异或的
我有一个自定义的 UICollectionViewLayout,它利用 iOS 8 中的自调整大小机制。我的 UICollectionViewCell 的实现 preferredLayoutAttri
我正在使用 UICollectionViewController。在某些时候,我需要对可见页脚进行一些配置,对于每一个页脚,我都需要知道它的当前节号。当前,因为部分可能会被替换,并且可重用 View
在 Windows C++ 中工作并使用 GetCommandLine 获取函数中的参数。是否有类似的函数可以返回命令行中的参数数量? 我无法从 main 获取它,因为我正在使用 int WINAPI
我有一个带有 VideoView 的应用程序,它将不断循环播放相同的视频,直到用户对设备(触摸屏等)进行操作为止。目前,我正在使用 OnCompletionListener() 在视频结束后重新启动视
我有一个基于 BizTalk 的 WCF 服务,我不确定它是如何部署或生成的,但据我所知,它是使用 BizTalk 向导创建的,用于发布 WCF 服务。问题是 BizTalk 服务器安装已被删除,现在
我希望在我的 Collection View 的部分上放置一个标题。我有一个嵌入在 tablebview 中的 collectionview 。使用 TableView 的节标题会使标题离内容太远。将
我有一个 bool 字符串列表。每个字符串的长度为 6。我需要得到每个字符串的补码。例如,如果字符串是“111111”,则应为“000000”。我的想法是 bin(~int(s,2))[-6:] 将其
好吧,这就是问题所在,标题部分单元格的默认行为是粘在 Collection View 框架的顶部,进行了一些挖掘,但找不到删除此默认行为的方法,如果有人有线索的话怎么做,请分享。 这样做的主要原因是我
我有一个 UICollectionViewLayout 子类,其中包含一个包含多行 UILabel 的补充 View 。问题是并非所有文本在某个点都是可见的,我怎样才能让补充 View 的高度等于它的
我是一名优秀的程序员,十分优秀!