2013-05-15 182 views
0

我給出了一個選項讓用戶將圖像導出爲JPG,並且存儲了png圖像
所以,我創建了一些php腳本來這樣做。
PNG轉換罰款..
但當我下載JPG圖像,並嘗試在圖像查看器中打開,其顯示損壞。
我的PHP代碼:將png轉換爲jpg並下載jpg圖像

轉換PNG至JPG

$input_file = 'images/image1364926178.png'; 
$filename = time().'.jpg'; 
$output_file = 'images/'.$filename;     
$input = imagecreatefrompng($input_file); 
if($input){ 
    list($width, $height) = getimagesize($input_file); 
    $output = imagecreatetruecolor($width, $height); 
    $white = imagecolorallocate($output, 255, 255, 255); 
    imagefilledrectangle($output, 0, 0, $width, $height, $white); 
    imagecopy($output, $input, 0, 0, 0, 0, $width, $height); 
    imagejpeg($output,$output_file); 
} 

腳本下載的JPG圖片

$Image_file_name = '/images/'.$filename; 
$filedetail = getimagesize($filename); 
$mimetype = $filedetail['mime']; 
if (file_exists($filename)) { 
    @ob_end_clean();      
    header('Content-Description: File Transfer'); 
    header('Content-Type: '.$mimetype); 
    header('Content-Disposition: attachment; filename='.basename($filename)); 
    header("Content-Transfer-Encoding: binary"); 
    header('Accept-Ranges: bytes'); 
    header('Cache-Control: private'); 
    header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); 
} 

我到底做錯了什麼?

有沒有更好的主意,如何做到這一點?

由於提前

回答