Login   Register  
PHP Classes
elePHPant
Icontem

File: resizeimagetest.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Harish Chauhan  >  Resize Images  >  resizeimagetest.php  >  Download  
File: resizeimagetest.php
Role: Example script
Content type: text/plain
Description: example
Class: Resize Images
Generate resized images
Author: By
Last change:
Date: 2005-03-12 04:43
Size: 170 bytes
 

Contents

Class file image Download
<?php

    
include_once("resizeimage.inc.php");
    
$rimg=new RESIZEIMAGE("../test/harish.gif");
    echo 
$rimg->error();
    
$rimg->resize_percentage(50);
    
$rimg->close();
?>