source:
extensions/cuise/load_img.php
@
20798
Last change on this file since 20798 was 19486, checked in by , 12 years ago | |
---|---|
File size: 220 bytes |
Rev | Line | |
---|---|---|
[19486] | 1 | <?php |
2 | ||
3 | require_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.