php实现图片上传并利用ImageMagick生成缩略图,
使用ImageMagick,您可以轻松,更快地创建缩略图,比使用PHP的容易得多。
<?php // Location to upload main image: $mainDir = $_SERVER['DOCUMENT_ROOT'].'/images/l/'; // Location to create the thumb image: $smalDir = $_SERVER['DOCUMENT_ROOT'].'/images/s/'; // Command to use: $command = '/usr/bin/convert'; // Thumbnail width: $size = 210; // Make sure we have an image: if(isset($_POST['submit'])){ if(getimagesize($_FILES['photo']['tmp_name'])){ $name = $_FILES['photo']['name']; $uploadfile = $mainDir . $name; move_uploaded_file($_FILES['photo']['tmp_name'], $uploadfile); $lrgImg = $mainDir . $name; $smlImg = $smalDir . $name; $imageMagick = $command . " '". $lrgImg . "' -resize '$size' '" . $smlImg . "'"; shell_exec($imageMagick); } header("Location: /test.php"); exit; }else{ ?> <form action=" <?php echo $_SERVER['PHP_SELF']; ?> " method="post" enctype="multipart/form-data"> <p><input type="file" name="photo" /></p> <p><input type="submit" value="Upload!" name="submit" /></p> </form> <?php foreach(glob($smalDir.'*') as $img){ echo ' <img src="'.str_replace($_SERVER['DOCUMENT_ROOT'], '',$img).'" / alt="php实现图片上传并利用ImageMagick生成缩略图," > '; } } ?>
希望本文所述对大家学习php程序设计有所帮助。
您可能感兴趣的文章:
- PHP图片上传类带图片显示
- 简单的PHP图片上传程序
- php 图片上传类代码
- 超级好用的一个php上传图片类(随机名,缩略图,加水印)
- PHP 图片上传代码
- PHPThumb PHP 图片缩略图库
- thinkphp实现图片上传功能分享
- php实现的支持imagemagick及gd库两种处理的缩略图生成类
- php多个文件及图片上传实例详解

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

WebStorm Mac version
Useful JavaScript development tools

SublimeText3 English version
Recommended: Win version, supports code prompts!

Dreamweaver CS6
Visual web development tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SublimeText3 Chinese version
Chinese version, very easy to use
