私は2つの異なる画像を持っています.1つはローカルマシンにあり、もう1つはウェブにあります。私はこれらの2つのイメージをマージしたい、私はすべてがあるが、私の問題は、これらの2つのイメージは同じ幅と高さではありません。私のローカルイメージはマスクであり、オンラインイメージはローカルに適合する必要があります。ローカル画像のサイズは400x400です。固定サイズに切り抜くことで画像を使用することは可能ですか
問題:オンライン画像の寸法がローカル画像よりも小さい場合は、画像が実際のサイズになり、マスク画像に収まりません。
ここで、これらのイメージをお互いに適合させるにはどうすればよいですか?ですから、これを必要とする
//define the width and height of our images
define("WIDTH", 400);
define("HEIGHT", 400);
$dest_image = imagecreatetruecolor(WIDTH, HEIGHT);
//make sure the transparency information is saved
imagesavealpha($dest_image, true);
//create a fully transparent background (127 means fully transparent)
$trans_background = imagecolorallocatealpha($dest_image, 0, 0, 0, 127);
//fill the image with a transparent background
imagefill($dest_image, 0, 0, $trans_background);
//take create image resources out of the 3 pngs we want to merge into destination image
$a = imagecreatefrompng('https://rickwgrundy.files.wordpress.com/2014/01/pt509_stick_figure_podium_speaking-348x370.png');
$b = imagecreatefrompng('400x400.png');
//copy each png file on top of the destination (result) png
imagecopy($dest_image, $a, 0, 0, 0, 0, WIDTH, HEIGHT);
imagecopy($dest_image, $b, 0, 0, 0, 0, WIDTH, HEIGHT);
//send the appropriate headers and save the image in the given link name
header('Content-Type: image/png');
imagepng($dest_image, "result.png", 9);
//destroy all the image resources to free up memory
imagedestroy($a);
imagedestroy($b);
imagedestroy($dest_image);
uがuはここ –
は私が何を提供できるすべてです欲しいもの実際にこの上でより詳細な情報を与えることができます。私は他に何も持っていません。 – Mysterious
オンライン画像のローカル画像をマージしますか? –