Changeset 9128 for temp/trunk/data/class
- Timestamp:
- 2006/11/27 13:05:45 (20 years ago)
- File:
-
- 1 edited
-
temp/trunk/data/class/SC_Image.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
temp/trunk/data/class/SC_Image.php
r9127 r9128 86 86 $dst_im = imagecreatetruecolor($zip_width, $zip_height); 87 87 imagecopyresampled($dst_im, $src_im, 0, 0, 0,0, $zip_width, $zip_height, $src_w, $src_h); 88 89 88 ImageJPEG($dst_im, $path); 90 89 break; … … 96 95 $dst_im = imagecreatetruecolor($zip_width, $zip_height); 97 96 imagecopyresampled($dst_im, $src_im, 0, 0, 0,0, $zip_width, $zip_height, $src_w, $src_h); 98 99 97 ImageGIF($dst_im, $path); 100 98 break; … … 106 104 $dst_im = imagecreatetruecolor($zip_width, $zip_height); 107 105 imagecopyresampled($dst_im, $src_im, 0, 0, 0,0, $zip_width, $zip_height, $src_w, $src_h); 108 109 106 ImagePNG($dst_im, $path); 110 107 break;
Note: See TracChangeset
for help on using the changeset viewer.
