PHP Classes

File: img.php

Recommend this page to a friend!
  Classes of Vasyl Rusanovskyy   Image resize   img.php   Download  
File: img.php
Role: Example script
Content type: text/plain
Description: show image
Class: Image resize
Resize, crop and add watermark to images
Author: By
Last change:
Date: 14 years ago
Size: 1,033 bytes
 

 

Contents

Class file image Download
<?php
##============================================================================##
## -=* Vasyl Rusanovskyy *=- 02.04.2010 ##
## rusanovskyy@gmail.com ##
## Capital-Media ##
## www.k-media.com.ua ##
## office@k-media.com.ua ##
##============================================================================##

include "image.class.php";

$image = new thumbnail($file_img);
 
//$image->size_width($size); //Ô³êñîâàíà øèðèíà
//$image->size_height($size); //Ô³êñîâàíà âèñîòà
//$image->size_auto($size); //Ô³êñîâàíà øèðèíà àáî âèñîòà
$image->size_crop($size); //Îäèíàêîâ³ øèðèíà òà âèñîòà
//$image->size_width_height($size,$size_h); //Äîâ³ëüíà øèðèíà òà âèñîòà
$image->add_logo("img/logo.png"); //Äîäàòè ëîãî äî êàðòèíêè
//$image->show();

?>