source: extensions/cuise/load_img.php @ 31813

Last change on this file since 31813 was 19486, checked in by cljosse, 11 years ago

[style cuise] create cuise

File size: 220 bytes
Line 
1<?php
2
3require_once("./classes/resize_helper.php");
4 
5$path = "./img/01.jpg";
6$savedir= "./images/02.jpg";
7$image = new Resize_image_helper($path,$savedir); 
8$ret=$image->resize_width(800); 
9$image->free_image_mem();
10
11?>
Note: See TracBrowser for help on using the repository browser.