使用PHP GD,使用良好,一键剪裁各种尺寸,打包下载。经常换icon的懂的,美工给你一个1024的logo,你得ps出各种尺寸,于是有了这个东西。
核心代码
<?php class image { /** * source image * * @var string|array */ private $source; /** * temporay image * * @var file */ private $image; private $ext; /** * erros * * @var array */ private $error; /** * construct * * @param string|array $source */ public function __construct($source = NULL) { if($source != NULL) { $this->source($source); } } /** * set the source image * * @param string|array $source */ public function source($source) { if(!is_array($source)) { $this->source["name"] = $source; $this->source["tmp_name"] = $source; $type = NULL; $ext = strtolower(end(explode(".",$source))); switch($ext) { case "jpg" : case "jpeg" : $type = "image/jpeg"; break; case "gif" : $type = "image/gif"; break; case "png" : $type = "image/png"; break; } $this->source["type"] = $type; } else { $this->source = $source; } $this->destination = $this->source["name"]; } /** * resize the image * * @param int $width * @param int $height */ public function resize($width = NULL,$height = NULL) { if(isset($this->source["tmp_name"]) && file_exists($this->source["tmp_name"])) { list($source_width,$source_height) = getimagesize($this->source["tmp_name"]); if(($width == NULL) && ($height != NULL)) { $width = ($source_width * $height) / $source_height; } if(($width != NULL) && ($height == NULL)) { $height = ($source_height * $width) / $source_width; } if(($width == NULL) && ($height == NULL)) { $width = $source_width; $height = $source_height; } switch($this->source["type"]) { case "image/jpeg" : $created = imagecreatefromjpeg($this->source["tmp_name"]); break; case "image/gif" : $created = imagecreatefromgif($this->source["tmp_name"]); break; case "image/png" : $created = imagecreatefrompng($this->source["tmp_name"]); break; } $this->image = imagecreatetruecolor($width,$height); imagecopyresampled($this->image,$created,0,0,0,0,$width,$height,$source_width,$source_height); } } /** * add watermark on image * * @param string $mark * @param int $opac * @param int $x_pos * @param int $y_pos */ public function watermark($mark,$opac,$x_pos,$y_pos) { if(file_exists($mark) && ($this->image != "")) { $ext = strtolower(end(explode(".",$mark))); switch($ext) { case "jpg" : case "jpeg" : $watermark = imagecreatefromjpeg($mark); break; case "gif" : $watermark = imagecreatefromgif($mark); break; case "png" : $watermark = imagecreatefrompng($mark); break; } list($watermark_width,$watermark_height) = getimagesize($mark); $source_width = imagesx($this->image); $source_height = imagesy($this->image); if($x_pos == "top") $pos = "t"; else $pos = "b"; if($y_pos == "left") $pos .= "l"; else $pos .= "r"; $dest_x = 0; $dest_y = 0; switch($pos) { case "tr" : $dest_x = $source_width - $watermark_width; break; case "bl" : $dest_y = $source_height - $watermark_height; break; case "br" : $dest_x = $source_width - $watermark_width; $dest_y = $source_height - $watermark_height; break; } imagecopymerge($this->image,$watermark,$dest_x,$dest_y,0,0,$watermark_width,$watermark_height,$opac); } } /** * crop the image * * @param int $x * @param int $y * @param int $width * @param int $height */ public function crop($x,$y,$width,$height) { if(isset($this->source["tmp_name"]) && file_exists($this->source["tmp_name"]) && ($width > 10) && ($height > 10)) { switch($this->source["type"]) { case "image/jpeg" : $created = imagecreatefromjpeg($this->source["tmp_name"]); break; case "image/gif" : $created = imagecreatefromgif($this->source["tmp_name"]); break; case "image/png" : $created = imagecreatefrompng($this->source["tmp_name"]); break; } $this->image = imagecreatetruecolor($width,$height); imagecopy($this->image,$created,0,0,$x,$y,$width,$height); } } /** * create final image file * * @param string $destination * @param int $quality */ public function create($destination,$quality = 100) { if($this->image != "") { $extension = substr($destination,-3,3); switch($extension) { case "gif" : imagegif($this->image,$destination,$quality); break; case "png" : $quality = ceil($quality/10) - 1; imagepng($this->image,$destination,$quality); break; default : imagejpeg($this->image,$destination,$quality); break; } } } /** * check if extension is valid * */ public function validate_extension() { if(isset($this->source["tmp_name"]) && file_exists($this->source["tmp_name"])) { $exts = array("image/jpeg", "image/pjpeg", "image/png", "image/x-png"); $ext = $this->source["type"]; $valid = 0; $this->ext = '.not_found'; if ($ext == $exts[0] || $ext == $exts[1]) { $valid = 1; $this->ext = '.jpg'; } // if ($ext == $exts[2]) { // $valid = 1; // $this->ext = '.gif'; // } if ($ext == $exts[2] || $ext == $exts[3]) { $valid = 1; $this->ext = '.png'; } if($valid != 1) { $this->error .= "extension"; } } else { $this->error .= "source"; } } /** * check if the size is correct * * @param int $max */ public function validate_size($max) { if(isset($this->source["tmp_name"]) && file_exists($this->source["tmp_name"])) { $max = $max * 1024; if($this->source["size"] >= $max) { $this->error .= "size"; } } else { $this->error .= "source"; } } /** * check if the dimension is correct * * @param int $limit_width * @param int $limit_height */ public function validate_dimension($limit_width,$limit_height) { if(isset($this->source["tmp_name"]) && file_exists($this->source["tmp_name"])) { list($source_width,$source_height) = getimagesize($this->source["tmp_name"]); if(($source_width > $limit_width) || ($source_height > $limit_height)) { $this->error .= "dimension"; } } else { $this->error .= "source"; } } /** * get the found errors * */ public function error() { $error = array(); if(stristr($this->error,"source")) $error[] = "找不到上传文件"; if(stristr($this->error,"dimension")) $error[] = "上传图片尺寸太大"; if(stristr($this->error,"extension")) $error[] = "不符合要求的格式"; if(stristr($this->error,"size")) $error[] = "图片文件太大"; return $error; } public function error_string() { $error = ""; if(stristr($this->error,"source")) $error .= "找不到上传文件 / "; if(stristr($this->error,"dimension")) $error .= "上传图片尺寸太大 / "; if(stristr($this->error,"extension")) $error .= "不符合要求的格式 / "; if(stristr($this->error,"size")) $error .= "图片文件太大 / "; if(eregi(" / $", $error)) { $error = substr($error, 0, -3); } return $error; } public function ext() { return $this->ext; } }
以上就是本文所述的全部内容了,希望大家能够喜欢。
本文向大家介绍Python批量生成特定尺寸图片及图画任意文字的实例,包括了Python批量生成特定尺寸图片及图画任意文字的实例的使用技巧和注意事项,需要的朋友参考一下 因为工作需要生成各种大小的图片,所以写了个小脚本,顺便支持了下图画文字内容。 具体代码如下: 如果你需要批量的话,批量数据文件的格式如下: 执行后的效果如下: 以上这篇Python批量生成特定尺寸图片及图画任意文字的实例就是小编分享
问题内容: 我对(N,)维数组和(N,1)维数组之间的转换有疑问。例如,y是(2,)维。 但是下面将显示y2为(2,1)维。 在不复制的情况下将y2转换回y的最有效方法是什么? 谢谢汤姆 问题答案: 为此工作 还请注意,除非需要复制新形状(在这里不需要这样做),否则它不会复制数据:
本文向大家介绍详解Java实现批量压缩图片裁剪压缩多种尺寸缩略图一键批量上传图片,包括了详解Java实现批量压缩图片裁剪压缩多种尺寸缩略图一键批量上传图片的使用技巧和注意事项,需要的朋友参考一下 10万+IT人都在关注的图片批量压缩上传方案(完整案例+代码) 背景需求:为了客户端访问图片资源时,加载图片更流畅,体验更好,通常不会直接用原图路径,需要根据不同的场景显示不同规格的缩略图,根据商品关键属
本文向大家介绍PHP实现过滤各种HTML标签,包括了PHP实现过滤各种HTML标签的使用技巧和注意事项,需要的朋友参考一下 首先分享一些比较常见的 更简单些的写法: 再来一个: 以上三种方法均可以实现,不过各有优劣,小伙伴们根据自己的项目需求来选择吧。
问题内容: 目标是使用Swift在设备上捕获全屏视频。在下面的代码中,视频捕获似乎是在全屏模式下进行的(录制摄像机预览时使用的是全屏模式),但是视频的渲染以不同的分辨率进行。具体来说,对于5S,似乎在发生捕获,而在发生渲染。 您如何捕获和渲染全屏视频? 视频捕获代码: 视频渲染代码: 问题答案: 如果我理解正确,似乎您误解了设备屏幕宽度不等于相机预览(和捕获)大小的事实。 您的属性指示如何在图层内
主要内容:jQuery 尺寸方法,jQuery 尺寸,jQuery width() 和 height() 方法,实例,jQuery innerWidth() 和 innerHeight() 方法,实例,jQuery outerWidth() 和 outerHeight() 方法,实例通过 jQuery,很容易处理元素和浏览器窗口的尺寸。 jQuery 尺寸方法 jQuery 提供多个处理尺寸的重要方法: width() height() innerWidth() innerHeight() ou