Note: This function depends on the GD2 graphics library
I recently wanted to use PHP to generate thumbnails. I searched online and found this article: Generate image thumbnails with PHP
After trying it out, I found the following problems:
1. The thumbnails generated from png images are in jpg format.
2. The thumbnail generated from the png image has no transparent (semi-transparent) effect (filled with black background)
3. The code syntax is relatively old
Therefore, we simply modified and optimized it based on this version.
PHP generate thumbnail class
<span>php </span><span>/*</span><span> * desc: Resize Image(png, jpg, gif) * author: 十年后的卢哥哥(http://www.cnblogs.com/lurenjiashuo/) * date: 2014.11.13 * base from: http://www.oschina.net/code/snippet_5189_2491 </span><span>*/</span><span>class</span><span> ResizeImage { </span><span>//</span><span>图片类型</span><span>private</span><span>$type</span><span>; </span><span>//</span><span>实际宽度</span><span>private</span><span>$width</span><span>; </span><span>//</span><span>实际高度</span><span>private</span><span>$height</span><span>; </span><span>//</span><span>改变后的宽度</span><span>private</span><span>$resize_width</span><span>; </span><span>//</span><span>改变后的高度</span><span>private</span><span>$resize_height</span><span>; </span><span>//</span><span>是否裁图</span><span>private</span><span>$cut</span><span>; </span><span>//</span><span>源图象</span><span>private</span><span>$srcimg</span><span>; </span><span>//</span><span>目标图象地址</span><span>private</span><span>$dstimg</span><span>; </span><span>//</span><span>临时创建的图象</span><span>private</span><span>$im</span><span>; </span><span>function</span> __construct(<span>$imgPath</span>, <span>$width</span>, <span>$height</span>, <span>$isCut</span>, <span>$savePath</span><span>) { </span><span>$this</span>->srcimg = <span>$imgPath</span><span>; </span><span>$this</span>->resize_width = <span>$width</span><span>; </span><span>$this</span>->resize_height = <span>$height</span><span>; </span><span>$this</span>->cut = <span>$isCut</span><span>; </span><span>//</span><span>图片的类型</span><span>$this</span>->type = <span>strtolower</span>(<span>substr</span>(<span>strrchr</span>(<span>$this</span>->srcimg,"."),1<span>)); </span><span>//</span><span>初始化图象</span><span>$this</span>-><span>initi_img(); </span><span>//</span><span>目标图象地址</span><span>$this</span> -> dst_img(<span>$savePath</span><span>); </span><span>//</span><span>--</span><span>$this</span>->width = imagesx(<span>$this</span>-><span>im); </span><span>$this</span>->height = imagesy(<span>$this</span>-><span>im); </span><span>//</span><span>生成图象</span><span>$this</span>-><span>newimg(); ImageDestroy (</span><span>$this</span>-><span>im); } </span><span>private</span><span>function</span><span> newimg() { </span><span>//</span><span>改变后的图象的比例</span><span>$resize_ratio</span> = (<span>$this</span>->resize_width)/(<span>$this</span>-><span>resize_height); </span><span>//</span><span>实际图象的比例</span><span>$ratio</span> = (<span>$this</span>->width)/(<span>$this</span>-><span>height); </span><span>if</span>(<span>$this</span>-><span>cut) { </span><span>//</span><span>裁图</span><span>$newimg</span> = imagecreatetruecolor(<span>$this</span>->resize_width,<span>$this</span>-><span>resize_height); </span><span>if</span>(<span>$this</span>->type=="png"<span>) { imagefill(</span><span>$newimg</span>, 0, 0, imagecolorallocatealpha(<span>$newimg</span>, 0, 0, 0, 127<span>)); } </span><span>if</span>(<span>$ratio</span>>=<span>$resize_ratio</span><span>) { </span><span>//</span><span>高度优先</span> imagecopyresampled(<span>$newimg</span>, <span>$this</span>->im, 0, 0, 0, 0, <span>$this</span>->resize_width,<span>$this</span>->resize_height, ((<span>$this</span>->height)*<span>$resize_ratio</span>), <span>$this</span>-><span>height); } </span><span>else</span><span> { </span><span>//</span><span>宽度优先</span> imagecopyresampled(<span>$newimg</span>, <span>$this</span>->im, 0, 0, 0, 0, <span>$this</span>->resize_width, <span>$this</span>->resize_height, <span>$this</span>->width, ((<span>$this</span>->width)/<span>$resize_ratio</span><span>)); } } </span><span>else</span><span> { </span><span>//</span><span>不裁图</span><span>if</span>(<span>$ratio</span>>=<span>$resize_ratio</span><span>) { </span><span>$newimg</span> = imagecreatetruecolor(<span>$this</span>->resize_width,(<span>$this</span>->resize_width)/<span>$ratio</span><span>); </span><span>if</span>(<span>$this</span>->type=="png"<span>) { imagefill(</span><span>$newimg</span>, 0, 0, imagecolorallocatealpha(<span>$newimg</span>, 0, 0, 0, 127<span>)); } imagecopyresampled(</span><span>$newimg</span>, <span>$this</span>->im, 0, 0, 0, 0, <span>$this</span>->resize_width, (<span>$this</span>->resize_width)/<span>$ratio</span>, <span>$this</span>->width, <span>$this</span>-><span>height); } </span><span>else</span><span> { </span><span>$newimg</span> = imagecreatetruecolor((<span>$this</span>->resize_height)*<span>$ratio</span>,<span>$this</span>-><span>resize_height); </span><span>if</span>(<span>$this</span>->type=="png"<span>) { imagefill(</span><span>$newimg</span>, 0, 0, imagecolorallocatealpha(<span>$newimg</span>, 0, 0, 0, 127<span>)); } imagecopyresampled(</span><span>$newimg</span>, <span>$this</span>->im, 0, 0, 0, 0, (<span>$this</span>->resize_height)*<span>$ratio</span>, <span>$this</span>->resize_height, <span>$this</span>->width, <span>$this</span>-><span>height); } } </span><span>if</span>(<span>$this</span>->type=="png"<span>) { imagesavealpha(</span><span>$newimg</span>, <span>true</span><span>); imagepng (</span><span>$newimg</span>,<span>$this</span>-><span>dstimg); } </span><span>else</span><span> { imagejpeg (</span><span>$newimg</span>,<span>$this</span>-><span>dstimg); } } </span><span>//</span><span>初始化图象</span><span>private</span><span>function</span><span> initi_img() { </span><span>if</span>(<span>$this</span>->type=="jpg"<span>) { </span><span>$this</span>->im = imagecreatefromjpeg(<span>$this</span>-><span>srcimg); } </span><span>if</span>(<span>$this</span>->type=="gif"<span>) { </span><span>$this</span>->im = imagecreatefromgif(<span>$this</span>-><span>srcimg); } </span><span>if</span>(<span>$this</span>->type=="png"<span>) { </span><span>$this</span>->im = imagecreatefrompng(<span>$this</span>-><span>srcimg); } } </span><span>//</span><span>图象目标地址</span><span>private</span><span>function</span> dst_img(<span>$dstpath</span><span>) { </span><span>$full_length</span> = <span>strlen</span>(<span>$this</span>-><span>srcimg); </span><span>$type_length</span> = <span>strlen</span>(<span>$this</span>-><span>type); </span><span>$name_length</span> = <span>$full_length</span>-<span>$type_length</span><span>; </span><span>$name</span> = <span>substr</span>(<span>$this</span>->srcimg,0,<span>$name_length</span>-1<span>); </span><span>$this</span>->dstimg = <span>$dstpath</span><span>; } } </span>?>
use
When using it, just call the constructor of the class directly. The constructor is as follows:
<span>$resizeimage</span> = <span>new</span> resizeimage($imgPath, $width, $height, $isCut, $savePath);
parameters
$imgPath: original image address
$width: thumbnail width
$height: Thumbnail height
$isCut: Whether to crop, bool value
$savePath: thumbnail address (can be the same as the original image address)
Example
<span>php </span><span>include</span> "ResizeImage.php"<span>; </span><span>//</span><span>jpg</span><span>$jpgResize</span> = <span>new</span> ResizeImage("img/test_1920_1200.jpg", 320, 240, <span>false</span>, "img/test_320_240.jpg"<span>); </span><span>//</span><span>png</span><span>$pngResize</span> = <span>new</span> ResizeImage("img/test_1024_746.png", 320, 240, <span>false</span>, "img/test_320_240.png"<span>); </span>?>
Effect
The above introduces how PHP generates transparent png image thumbnails, including the content of generating thumbnails in PHP. I hope it will be helpful to friends who are interested in PHP tutorials.

许多用户在选择智能手表的时候都会选择的华为的品牌,其中华为GT3pro和GT4都是非常热门的选择,不少用户都很好奇华为GT3pro和GT4有什么区别,下面就就给大家介绍一下二者。华为GT3pro和GT4有什么区别一、外观GT4:46mm和41mm,材质是玻璃表镜+不锈钢机身+高分纤维后壳。GT3pro:46.6mm和42.9mm,材质是蓝宝石玻璃表镜+钛金属机身/陶瓷机身+陶瓷后壳二、健康GT4:采用最新的华为Truseen5.5+算法,结果会更加的精准。GT3pro:多了ECG心电图和血管及安

为什么截图工具在Windows11上不起作用了解问题的根本原因有助于找到正确的解决方案。以下是截图工具可能无法正常工作的主要原因:对焦助手已打开:这可以防止截图工具打开。应用程序损坏:如果截图工具在启动时崩溃,则可能已损坏。过时的图形驱动程序:不兼容的驱动程序可能会干扰截图工具。来自其他应用程序的干扰:其他正在运行的应用程序可能与截图工具冲突。证书已过期:升级过程中的错误可能会导致此issu简单的解决方案这些适合大多数用户,不需要任何特殊的技术知识。1.更新窗口和Microsoft应用商店应用程

在html5中,width的意思是宽度,width属性定义元素内容区的宽度,在内容区外面可以增加内边距、边框和外边距,只需要给元素设置“元素{width:数值}”即可。

第1部分:初始故障排除步骤检查苹果的系统状态:在深入研究复杂的解决方案之前,让我们从基础知识开始。问题可能不在于您的设备;苹果的服务器可能会关闭。访问Apple的系统状态页面,查看AppStore是否正常工作。如果有问题,您所能做的就是等待Apple修复它。检查您的互联网连接:确保您拥有稳定的互联网连接,因为“无法连接到AppStore”问题有时可归因于连接不良。尝试在Wi-Fi和移动数据之间切换或重置网络设置(“常规”>“重置”>“重置网络设置”>设置)。更新您的iOS版本:

Vue中如何对图片进行压缩和格式转换?在前端开发中,经常会遇到需要对图片进行压缩和格式转换的需求。特别是在移动端的开发中,为了提高页面加载速度和节省用户流量,对图片进行压缩和格式转换是很关键的。而在Vue框架中,我们可以通过一些工具库来实现对图片的压缩和格式转换。使用compressor.js库进行压缩compressor.js是一款用于压缩图片的JavaS

php提交表单通过后,弹出的对话框怎样在当前页弹出php提交表单通过后,弹出的对话框怎样在当前页弹出而不是在空白页弹出?想实现这样的效果:而不是空白页弹出:------解决方案--------------------如果你的验证用PHP在后端,那么就用Ajax;仅供参考:HTML code<form name="myform"

CSS维度属性详解:height和width在前端开发中,CSS是一种强大的样式定义语言。其中,height和width是两个最基本的维度属性,用于定义元素的高度和宽度。本文将对这两个属性进行详细解析,并提供具体的代码示例。一、height属性height属性用于定义元素的高度。可以使用像素(pixel)、百分比(percentage)或者

对图片进行resize、裁剪、旋转、翻转首先我们的原始图片是10张网上下载尺寸不一的图片,如下:操作1:resize将图片resize到相同尺寸(320,240)fromPILimportImageimporttorchvision.transformsastransforms#使用PIL库读入图片并进行resizedefResizeImage():ifnotos.path.exists(rdir):os.makedirs(rdir)foriinrange(10):im=Image.open(d


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version
Visual web development tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.
