Что нужно поменять в данном коде, чтоб картинка 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');
Изменить строки:
...
// 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);
...
Айфон мало держит заряд, разбираемся с проблемой вместе с AppLab
Не могу понять как правильно сделать регулярное выражение для следующего текста:
На сервере хранится node-js файл, который при обращении с нужными параметрами выдаёт html страницу с необходимой информациейПри обращении через...
Хотите улучшить этот вопрос? Переформулируйте вопрос так, чтобы он был сосредоточен только на одной проблеме