PHP Classes

File: resizeimagetest.php

Recommend this page to a friend!
  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: 19 years ago
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();
?>