<?php class slpic { //原图片文件,包含路径和文件名 var $orpic; //原图的临时图像 var $tempic; //缩略图 var $thpic; //原宽度 var $width; //原高度 var $height; //图片类型 var $type; //缩略后的宽度 var $thwidth; //缩略后的高度 var $thheight; function __construct($file){ $this->orpic = $file; $infos = getimagesize($file); $this->width = $infos[0]; $this->height = $infos[1]; $this->type = $infos[2]; } //根据用户所指定最大宽高来计算缩略图尺寸 function cal_size($maxwidth, $maxheight){ //缩略图最大宽度与最大高度比 $thcrown = $maxwidth/$maxheight; //原图宽高比 $crown = $this->width/$this->height; if($crown/$thcrown >= 1){ $this->thwidth = $maxwidth; $this->thheight = $maxwidth/$crown; } else { $this->thheight = $maxheight; $this->thwidth = $maxheight*$crown; } } function init(){ switch($this->type){ case 1: //GIF $this->tempic = imagecreatefromgif($this->orpic); break; case 2: //JPG $this->tempic = imagecreatefromjpeg($this->orpic); break; case 3: //PNG $this->tempic = imagecreatefrompng($this->orpic); break; default: echo '暂不支持该图片格式'; } } function resize($maxwidth, $maxheight){ //初始化图像 $this->init(); //计算出缩略图尺寸 $this->cal_size($maxwidth, $maxheight); $this->thpic = imagecreatetruecolor($this->thwidth, $this->thheight); imagecopyresampled($this->thpic, $this->tempic, 0, 0, 0 ,0, $this->thwidth, $this->thheight, $this->width, $this->height); } function save($filename, $type){ switch($type){ case 'jpg': case 'jpeg': imagejpeg($this->thpic, $filename); break; case 'png': imagepng($$this->thpic, $filename); break; case 'gif': imagegif($$this->thpic, $filename); break; default: echo '暂不支持您所选择的格式'; } } } ?>

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

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

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.

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

Dreamweaver Mac version
Visual web development tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment
