Файловый менеджер - Редактировать - C:/xampp/htdocs/cat/files/thumbh.php
Назад
<?php // Fer un thumb de una imatge d'alada // REQUIERE POR GET // img -> Ruta completa del JPG // h (alto) -> de la miniatura resultante. if ((isset($_GET["img"]))&&(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; } $proporcio = imagesx($fuente)/imagesy($fuente); $novaample = $_GET["h"]*$proporcio; $imagen = imagecreatetruecolor($novaample,$_GET["h"]); imagecopyresampled($imagen,$fuente,0,0,0,0,$novaample,$_GET["h"],imagesx($fuente),imagesy($fuente)); header("Content-type: image/jpeg"); imagejpeg($imagen); } ?>
| ver. 1.4 |
Github
|
.
| PHP 5.3.8 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка