hi,
I am trying to get an image with my python application output.
please give me that process.
rajasekhar1242 0 Light Poster
Recommended Answers
Jump to PostHere is a Python output with an image:
# draw a flower with module turtle import turtle as tu tu.title('I call this one Flower') # values for speed are 'fastest' (no delay), 'fast', (delay 5ms), # 'normal' (delay 10ms), 'slow' (delay 15ms), and 'slowest' (delay 20ms) tu.speed('fastest') …
Jump to PostHere is an example that actually creates a jpeg image file of your labor:
# drawing with PIL (Python Image Library) # draw and save a small French flag (blue, white, red) from PIL import Image, ImageDraw # create a new 24x16 pixel image surface (default is …
All 7 Replies
shadwickman 159 Posting Pro in Training
sneekula 969 Nearly a Posting Maven
sneekula 969 Nearly a Posting Maven
rajasekhar1242 0 Light Poster
shadwickman 159 Posting Pro in Training
rajasekhar1242 0 Light Poster
zachabesh 5 Junior Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.