Слияние png изображений

91
25 марта 2021, 20:50

Что нужно поменять в данном коде, чтоб картинка 156.png была слева а не внизу? Заранее благодарен.

$top_file = 'test.png'; 
$bottom_file = '156.png';
 $top = imagecreatefrompng($top_file);
  $bottom = imagecreatefrompng($bottom_file); 
 //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_width, $new_height); 
  imagecopy($new, $top, 0, 0, 0, 0, $top_width, $top_height); 
  imagecopy($new, $bottom, 0, $top_height+1, 0, 0, $bottom_width, $bottom_height);
   // save to file
  imagepng($new, 'merged_image.png');
Answer 1

Изменить строки:

...
// compute new width/height
$new_width = $top_width + $bottom_width;
$new_height = max($top_height, $bottom_height);
// create new image and merge
$new = imagecreate($new_width, $new_height);
imagecopy($new, $bottom, 0, 0, 0, 0, $bottom_width, $bottom_height);
imagecopy($new, $top, $bottom_width+1, 0, 0, 0, $top_width, $top_height);
...
READ ALSO
Сделать регулярное выражени

Сделать регулярное выражени

Не могу понять как правильно сделать регулярное выражение для следующего текста:

95
Ошибка подключения к серверу ***.***.***.***:3000 - Connection refused

Ошибка подключения к серверу ***.***.***.***:3000 - Connection refused

На сервере хранится node-js файл, который при обращении с нужными параметрами выдаёт html страницу с необходимой информациейПри обращении через...

136
Как выводить рейтинг пользователей в laravel? [закрыт]

Как выводить рейтинг пользователей в laravel? [закрыт]

Хотите улучшить этот вопрос? Переформулируйте вопрос так, чтобы он был сосредоточен только на одной проблеме

96