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