2016-03-30 3 views
0

Во-первых, я не мастер PHP. Я использую функцию для изменения размера и обрезки изображений. Он работает отлично, пока я не загружу прозрачный png. :)PHP - Как я могу скопировать изображение как прозрачное png

Это сохраняет png с черным фоном. Я нашел ответы на stackoverflow, но не могу объединить его с моими кодами.

Вот моя функция:

//resize and crop image 
function resize_crop_image($max_width, $max_height, $source_file, $dst_dir, $quality = 90){ 
    $imgsize = getimagesize($source_file); 
    $width = $imgsize[0]; 
    $height = $imgsize[1]; 
    $mime = $imgsize['mime']; 

    switch($mime){ 
     case 'image/gif': 
      $image_create = "imagecreatefromgif"; 
      $image = "imagegif"; 
      $format = "gif"; 
      break; 

     case 'image/png': 
      $image_create = "imagecreatefrompng"; 
      $image = "imagepng"; 
      $quality = 7; 
      $format = "png"; 
      break; 

     case 'image/jpeg': 
      $image_create = "imagecreatefromjpeg"; 
      $image = "imagejpeg"; 
      $format = "jpg"; 
      break; 

     default: 
      return false; 
      break; 
    } 

    $dst_img = imagecreatetruecolor($max_width, $max_height); 
    $src_img = $image_create($source_file); 

    $width_new = $height * $max_width/$max_height; 
    $height_new = $width * $max_height/$max_width; 
    //if the new width is greater than the actual width of the image, then the height is too large and the rest cut off, or vice versa 
    if($width_new > $width){ 
     //cut point by height 
     $h_point = (($height - $height_new)/2); 
     //copy image 
     imagecopyresampled($dst_img, $src_img, 0, 0, 0, $h_point, $max_width, $max_height, $width, $height_new); 
    }else{ 
     //cut point by width 
     $w_point = (($width - $width_new)/2); 
     imagecopyresampled($dst_img, $src_img, 0, 0, $w_point, 0, $max_width, $max_height, $width_new, $height); 
    } 


    // you can ignore these 4 lines. I'm using it for change the name. 
    $nameforimage = rand('11111111', '9999999999'); 
    $nameforimage2 = rand('11111111', '9999999999'); 
    $newname  = $nameforimage."_".$nameforimage2; 
    $newdir   = $dst_dir."".$newname.".".$format; 

    $image($dst_img, $newdir, $quality); 

    if($dst_img)imagedestroy($dst_img); 
    if($src_img)imagedestroy($src_img); 

    return $newname.".".$format; 

} 

EDIT: Хорошо, я нашел решение.

Просто добавьте следующие строки:

imagealphablending($dst_img, false); 
imagesavealpha($dst_img, true); 
$transparent = imagecolorallocatealpha($dst_img, 255, 255, 255, 127); 
imagefilledrectangle($dst_img, 0, 0, $max_width, $max_height, $transparent); 

После этой линии:

$dst_img = imagecreatetruecolor($max_width, $max_height); 
+0

Я обновил свои неправильные коды. Пожалуйста, посмотрите еще раз. –

+3

Выбранный ответ в следующем вопросе покажет вам, как сохранить альфа-смешивание: http://stackoverflow.com/questions/32243/can-png-image-transparency-be-preserved-when-using- ПГПС-GDlib-imagecopyresample. –

+0

Хорошо, спасибо. Я нашел, и теперь я отвечу на свой вопрос. –

ответ

1

Вы должны включить сохранение альфа-канал.

Это может быть сделано с imagesavealpha(), например .:

// As per the manual, alpha blending must be disabled 
imagealphablending($dst_img, false); 
imagesavealpha($dst_img, true); 
+0

Спасибо. Работает :). Итак, нужны они или нет? >> '' '$ transparent = imagecolorallocatealpha ($ dst_img, 255, 255, 255, 127); imagefilledrectangle ($ dst_img, 0, 0, $ max_width, $ max_height, $ transparent); '' ' –

+0

@InterestingKnox мне кажется ненужным, вы« рисуете »прозрачный прямоугольник, но вы будете копировать источник образ над ним в любом случае. – outlyer

+0

Ну ладно! Это был пример кода из другого ответа. Большое вам спасибо @outlyer. –

Смежные вопросы