![]() ![]() |
| |||||||||
| Hotspots: Slides and Code TA Corner Comments? Announcements FAQ Static Webspace | ||||||||||
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() |
def copyPicture(pic):
canvas = makeEmptyPicture(getWidth(pic), getHeight(pic))
for x in range(1, getWidth(pic)):
for y in range(1, getHeight(pic)):
fromPixel = getPixel(pic, x, y)
toPixel = getPixel(canvas, x, y)
setColor(toPixel, getColor(fromPixel))
writePictureTo(canvas, getMediaPath("copy.jpg"))