Я пытаюсь отобразить одно изображение внизу другого. Чтобы добиться этого, я использовал метод, описанный в следующей ссылке:
Добавление одного изображения внизу другого в PHP который я нашел очень полезным. Однако в моем случае я не получаю ожидаемых результатов, так как мне также нужно использовать imagerotate
имущество.
Мой код следующий:
$top_file='photo1.png';
$bottom_file='photo2.png';
$degrees=270;
$top = imagecreatefrompng($top_file);
$bottom = imagecreatefrompng($bottom_file);
// Rotates the images
$rotatetop = imagerotate($top, $degrees, 0);
$rotatebottom = imagerotate($bottom, $degrees, 0);
// get current width/height
list($top_width, $top_height) = getimagesize($top_file);
list($bottom_width, $bottom_height) = getimagesize($bottom_file);
// compute new width/height
$new_width = ($top_width > $bottom_width) ? $top_width : $bottom_width;
$new_height = $top_height + $bottom_height;
// create new image and merge
$new = imagecreate($new_height, $new_width);
imagecopy($new, $rotatetop, 0, 0, 0, 0, $top_width, $top_height);
imagecopy($new, $rotatebottom, 0, $top_height+1, 0, 0, $bottom_width, $bottom_height);
// save to file and display on the browser
imagepng($new,'merged_image.png');
echo '<img src="merged_image.png" alt="Not available" />';
Я попытался изменить свойства из imagecopy
функционировать, но я не могу найти правильный путь.
Буду благодарен, если кто-нибудь поможет мне выбрать правильные настройки.
Задача ещё не решена.
Других решений пока нет …