Файловый менеджер - Редактировать - C:/xampp/htdocs/cat/files/thumbcut.php
Назад
<?php // Fer un thumb de una imatge pero retallant // REQUIERE POR GET // img -> Ruta completa del JPG // w (ancho) y h (alto) -> de la miniatura resultante. if ((isset($_GET["img"]))&&(isset($_GET["w"]))&&(isset($_GET["h"]))) { switch(substr($_GET["img"],-4)) { case "jpeg": case ".jpg": $fuente = imagecreatefromjpeg($_GET["img"]); break; case ".gif": $fuente = imagecreatefromgif($_GET["img"]); break; case ".png": $fuente = imagecreatefrompng($_GET["img"]); break; } $imagen = imagecreatetruecolor($_GET["w"],$_GET["h"]); // Farem que pilli del centre del original el tro $origenX = imagesx($fuente)/2-($_GET["w"]/2); $origenY = imagesy($fuente)/2-($_GET["h"]/2); imagecopy($imagen,$fuente,0,0,$origenX,$origenY,$_GET["w"],$_GET["h"]); header("Content-type: image/jpeg"); imagejpeg($imagen); } ?>
| ver. 1.4 |
Github
|
.
| PHP 5.3.8 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка