Changeset 9271 for temp/trunk/data


Ignore:
Timestamp:
2006/11/28 10:21:42 (20 years ago)
Author:
kakinaka
Message:

blank

Location:
temp/trunk/data
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • temp/trunk/data/class/SC_UploadFile.php

    r9269 r9271  
    306306        $path = $this->makeThumb($filepath, $to_w, $to_h); 
    307307         
    308         //$path = $objImage->saveResizeImage($filepath, $to_w, $to_h); 
    309          
    310308        // ¥Õ¥¡¥¤¥ë̾¤À¤±ÊÖ¤¹ 
    311309        return basename($path); 
  • temp/trunk/data/lib/gdthumb.php

    r9270 r9271  
    135135                        imagecolortransparent ($dst_im, $transparent); 
    136136                    } 
    137                     imagecopyresized($dst_im, $src_im, 0, 0, 0, 0, $re_size[0], $re_size[1], $size[0], $size[1]); 
     137                    $imageresize($dst_im, $src_im, 0, 0, 0, 0, $re_size[0], $re_size[1], $size[0], $size[1]); 
    138138                                     
    139139                    if(function_exists("imagegif")) { 
     
    171171                $src_im = imageCreateFromJpeg($path); 
    172172                $dst_im = $imagecreate($re_size[0], $re_size[1]); 
    173                 //imagecopyresized( $dst_im, $src_im, 0, 0, 0, 0, $re_size[0], $re_size[1], $size[0], $size[1]); 
    174173                $imageresize( $dst_im, $src_im, 0, 0, 0, 0, $re_size[0], $re_size[1], $size[0], $size[1]); 
    175174                 
Note: See TracChangeset for help on using the changeset viewer.