Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.80K
1 Posted Topic
def savebitmap(event): form = "Saving {0}%" img = PhotoImage(width = canvas_width, height = canvas_height) perc = -1 for y in range(canvas_height): perc1 = (100*y) // canvas_height if perc1 != perc: perc = perc1 setmessage(form.format(perc), True) row = "{" for x in range(canvas_width): ids = w.find_overlapping(x, y, x, y) color = …
The End.
MatthiasBl