我刚刚看了一些关于如何在另一个像素数组上绘制像素数组的代码,如下所示:
public class Bitmap {
private int[] pixels;
private int w, h;
public void draw(Bitmap b, int xp, int yp) {
int x0 = xp;
int x1 = xp+b.w;
int y0 = yp;
int y1 = yp+b.h;
if(x0 < 0) x0 = 0;
if(x1 > w) x1 = w;
if(y0 < 0) y0 = 0;
if(y1 > h) y1 = h;
for (int y = y0; y < y1; y++) {
int sp = (y - yp) * b.w - xp;
int dp = (y) * w;
for (int x = x0; x < x1; x++) {
int c = b.pixels[sp + x];
if (c < 0) pixels[dp + x] = b.pixels[sp + x];
}
}
}
}
如您所见,可以在另一个位图顶部的特定坐标上绘制一个Bitmap对象。
我没有得到的是两个for循环。我知道,外部for循环是绘制的Bitmap的y轴,并启动内部for循环以绘制Bitmap的x轴。
现在我来了:
int sp = (y - yp) * b.w - xp;
int dp = (y) * w;
sp和dp究竟代表什么? 提前致谢,最好的问候int c = b.pixels[sp + x];
if (c < 0) pixels[dp + x] = b.pixels[sp + x];
答案 0 :(得分:2)
根据算法,我们可以猜出原作者在想什么:
sp
是&#34;源位置&#34;:源位图中行的开头dp
是&#34;目标位置&#34;:目标位图中行的开头c
是&#34; color&#34;:源像素值(其中负值是透明的)。