PHP Classes

File: index.php

Recommend this page to a friend!
  Classes of Rogério Bragil   Easy Thumbnail   index.php   Download  
File: index.php
Role: Example script
Content type: text/plain
Description: Exemplo de uso da classe EasyThumbnail
Class: Easy Thumbnail
Generate thumbnail images using the GD extension
Author: By
Last change:
Date: 19 years ago
Size: 397 bytes
 

Contents

Class file image Download
<?
include("thumb.class.php");


// argumentos: $arquivo_origem, $arquivo_destino, $aproximacao
// obs: o diretório de destino deve ter permissão de escrita
$thumb= new EasyThumbnail("images/src.jpg", "upload/mini.jpg", 100);
if (
$thumb)
    echo
"Miniatura gerada com sucesso!<br>";
else
    echo
$thumb->getErrorMsg();
?>
<img src="images/src.jpg">&nbsp;<img src="upload/mini.jpg">