我正在用另一个图像制造一个部分的形象。 我只使用“部分”的图像。 一些部分需要横向缩减。
例如,这一部分:
imagecopy($output, $input, 0,8, 44,20, 4,12);
如何将这一部分横向排除在外?
我已尝试这样做:
imagecopy($output, $input, (0 - 1),8, 44,20, 4,12);
但它并不奏效。
我寻找了年龄,但找不到任何能够奏效的东西。
我的描述就是这样:
$input = imagecreatefrompng($image_file);
$output = imagecreatetruecolor(50, 40);
imagecopy($output, $input, 4,8, 20,20, 8,14);
imagecopy($output, $input, 12,8, 44,20, 4,14);
imagecopy($output, $input, 4,20, 4,20, 4,14);
imagecopy($output, $input, 8,28, 4,20, 4,14);
imagecopy($output, $input, 32,8, 52,20, 4,14);
imagecopy($output, $input, 24,20, 12,20, 4,14);
imagecopy($output, $input, 28,28, 12,20, 4,14);
imagecopy($output, $input, 4,0, 40,8, 8,9);
imagecopy($output, $input, 24,0, 56,8, 8,9);
header( Content-Type: image/png );
imagepng($output);
imagedestroy($output);
imagedestroy($input);