File:Screen Shot.jpg
Revision as of 16:28, 11 October 2013 by Elleke Hageman (talk | contribs)
Size of this preview: 800 × 500 pixels. Other resolution: 1,440 × 900 pixels.
Original file (1,440 × 900 pixels, file size: 662 KB, MIME type: image/jpeg)
import struct, array
width = 320 height = 240
filename="original.tga" datafile = open(filename, "wb")
header = struct.pack("<BBBHHBHHHHBB", 0, 0, 2, 0, 0, 8, 0, 0, width, height, 24, 1 << 5) datafile.write(header)
data =
for y in xrange(50):
for x in xrange(50): r, g, b = 5, 0, 205 #achtergrond
if x > 10 and x < 10: #middenstuk eerste cf breedte ervoor 2de breedte ding zelf g = 255 if y < 20: #hoogte bovenste kolom r = 255 if y > 120: b = 128
for x in xrange(50):
for y in xrange(50):
if y > 10 and x < 10: #middenstuk eerste cf breedte ervoor 2de breedte ding zelf g = 255 if y < 20: #hoogte bovenste kolom r = 255 if y > 120: b = 128
data += struct.pack('B', b) data += struct.pack('B', g) data += struct.pack('B', r)
datafile.write(data) datafile.close()
Hoe teken je een schuine lijn? Hoe gebruik je loops?
File history
Click on a date/time to view the file as it appeared at that time.
Date/Time | Thumbnail | Dimensions | User | Comment | |
---|---|---|---|---|---|
current | 16:27, 11 October 2013 | 1,440 × 900 (662 KB) | Elleke Hageman (talk | contribs) |
You cannot overwrite this file.
File usage
The following page uses this file: