2011-03-07 88 views
0

我有這個大的PNG文件,現在我想創建一個左上角的縮略圖。PHP:創建圖片左上角的縮略圖

png就像是600x1000像素,縮略圖應該是左上角的400x300像素。

如果你能幫助我,那將會很棒! (因爲谷歌只顯示瞭如何縮略圖整個畫面)

回答

3
imagecopyresampled($top_left_image_thumb,  //cropped thumbnail image 
        $original_image,    //original image 
        0, 0, 0, 0,     //top-left corners 
        $thumb_width, $thumb_height, //dst dimensions 
        400, 300      //src subarea dimensions 
        );