Seems Easy
    Here's a PixBlt method:

    public void PixBlt(int xs, int ys, int w, int h, int xd, int yd)
    {
        for (int j = 0; j < h; j++) {
            for (int i = 0; i < w; i++) {
                this.setPixel(raster.getPixel(xs+i, ys+j), xd+i, yd+j);
            }
        }
    }
	



But does this work?
What are the issues?
How do you fix it?
Lecture 2   Slide 16   6.837 Fall '01