我想使用4px png创建600px png叠加模式。这只是重复x轴。
$srcfile = '4px.png';
$outfile = 'overlay.png';
list($src_w,$src_h,$src_type) = getimagesize($srcfile);
$out_w = 600;
$out_h = 600;
$src = imagecreatefrompng($srcfile);
$out = imagecreatetruecolor($out_w, $out_h);
$curr_x = 0;
while($curr_x < $out_w){
$curr_y = 0;
while($curr_y < $out_h){
imagecopy($out, $src, $curr_y, 0, 0, 0, $src_w, $src_h);
$curr_y += $src_h;
}
$curr_x += $src_w;
}
imagepng($out, $outfile, 100);
imagedestroy($src);
imagedestroy($out);
按如下方式进行x重复
$curr_x = 0;
while($curr_x < $out_w){
imagecopy($out, $src, $curr_x, 0, 0, 0, $src_w, $src_h);
$curr_x += $src_w;
}
我如何Y-repat上面的代码?
答案 0 :(得分:0)
我认为,你应该使用两个循环 - 分别用于x和y
$curr_x = 0;
while($curr_x < $out_w) {
$curr_y = 0;
while($curr_y < $out_h){
imagecopy($out, $src, $curr_x, $curr_y, 0, 0, $src_w, $src_h);
$curr_y += $src_h;
}
$curr_x += $src_w;
}