Turtle gem output som jpg fil
from turtle import Turtle, Screenimport datetime
# get the current time and convert to the hand's angles
wn = Screen()
wn.title("Clock")
wn.bgcolor("white") #saddlebrown
wn.setup(width=500, height=500)
currentDT = datetime.datetime.now()
******
# moving hour hand
def moveHourHand():
currentHourInternal = Piktogram_Time()
degree = (currentHourInternal - 15) * -30
currentMinuteInternal = datetime.datetime.now().minute
degree = degree + -0.5 * currentMinuteInternal
hourHand.setheading(degree)
wn.ontimer(moveHourHand, 60000)
# moving minute hand
def moveMinuteHand():
currentMinuteInternal = Piktogram_Min()
degree = (currentMinuteInternal - 15) * -6
currentSecondInternal = datetime.datetime.now().second
degree = degree + (-currentSecondInternal * 0.1)
minuteHand.setheading(degree)
wn.ontimer(moveMinuteHand, 1000)
if __name__ == "__main__":
#moveHourHand()
#moveMinuteHand()
wn.ontimer(moveHourHand, 1)
wn.ontimer(moveMinuteHand, 1)
wn.exitonclick()
Jeg har brug for lidt hjælp til at gemme outputtet på en JPG fil, jeg har søgt har ikke fået brugbart.
Jeg har ikke kopiret hele koden her, da det virker som det skal men har behov for at kunne gemme det billede som turtle laver.
Hilsen
Peter