PHP Classes

File: example-03.php

Recommend this page to a friend!
  Classes of Krzysztof Kardasz   Nweb Image   example-03.php   Download  
File: example-03.php
Role: Example script
Content type: text/plain
Description: Example
Class: Nweb Image
Perform several image manipulation operations
Author: By
Last change:
Date: 16 years ago
Size: 643 bytes
 

Contents

Class file image Download
<?php
/**
 * Nweb Extension Script
 *
 * Example
 *
 * @category Nweb
 * @package Nweb_Scripts
 * @author Krzysztof Kardasz
 * @copyright Copyright (c) euo.pl
 */


   
include 'lib/Image.php';
    include
'lib/ImageException.php';
try {

   
$obj = new Image('photos/image-01.jpg');
   
$obj->open();

   
# Zmniejszenie zdjecia wzgledem wysokości (uwzględniając proporcje)
   
$obj->ResizeToHeight(200);

   
# Wyświetlenie zdjęcia
   
$obj->Display ();

   
# Wyczyszczenie pamięci przydzielonej dla zdjęcia
   
$obj->ImageClear();
}
catch (
ImageException $e)
{
    echo
$e->Message();
}
?>