Изображение за изрязване на PHP с бял фон

Изрязвам изображения с PHP функция. Проблемът ми е, че прави черен фон. Пример: въведете описание на изображението тук

въведете описание на изображението тук

Моят скрипт е по-долу. Това е функция resize_crop_image. Възможно ли е да преместя палеца в центъра и да запълня горната и долната част с бял цвят?

<?php

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

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

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

        case 'image/jpeg':
            $image_create = "imagecreatefromjpeg";
            $image = "imagejpeg";
            $quality = 80;
            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);
    }

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

    if($dst_img)imagedestroy($dst_img);
    if($src_img)imagedestroy($src_img);
}
//usage
resize_crop_image(300, 200, "original.png", "thumb.png");
?>

person Solo    schedule 18.08.2017    source източник


Отговори (1)


Трябва да запълните новосъздаденото изображение с бял фон, имате две възможности:

Вариант 1

$white = imagecolorallocate($dst_img, 255, 255, 255);
imagefill($image, 0, 0, $white);

Вариант 2

$white  = imagecolorallocate($targetImage,255,255,255);
imagefilledrectangle($targetImage,0,0,$max_width,$max_height,$white);
person Peter M    schedule 18.08.2017