91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python通過PyGame繪制圖像并保存為圖片文件的代碼

發布時間:2020-06-20 09:39:05 來源:網絡 閱讀:397 作者:Anthony986 欄目:編程語言

把開發過程中常用的一些內容片段記錄起來,下邊內容是關于python通過PyGame繪制圖像并保存為圖片文件的內容,希望對大伙有較大好處。

''' pg_draw_circle_save101.py
draw a blue solid circle on a white background
save the drawing to an image file
tested with Python 2.7 and PyGame 1.9.2 by vegaseat  16may2013
'''

import pygame as pg

# pygame uses (r, g, b) color tuples
white = (255, 255, 255)
blue = (0, 0, 255)

width = 300
height = 300

# create the display window
win = pg.display.set_mode((width, height))
# optional title bar caption
pg.display.set_caption("Pygame draw circle and save")
# default background is black, so make it white
win.fill(white)

# draw a blue circle
# center coordinates (x, y)
radius = min(center)
# width of 0 (default) fills the circle
# otherwise it is thickness of outline
width = 0
# draw.circle(color, pos, radius, width)
pg.draw.circle(win, blue, center, radius, width)

# now save the drawing
# can save as .bmp .tga .png or .jpg
fname = "circle_blue.png"
pg.image.save(win, fname)
print("file {} has been saved".format(fname))

# update the display window to show the drawing
pg.display.flip()

# event loop and exit conditions
# (press escape key or click window title bar x to exit)
while True:
    for event in pg.event.get():
        if event.type == pg.QUIT:
            # most reliable exit on x click
            pg.quit()
            raise SystemExit
        elif event.type == pg.KEYDOWN:
            # optional exit with escape key
            if event.key == pg.K_ESCAPE:
                pg.quit()
                raise SystemExit
向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

湟源县| 麦盖提县| 尚义县| 都昌县| 左贡县| 钟山县| 阳山县| 呼和浩特市| 新郑市| 松滋市| 体育| 福州市| 达拉特旗| 筠连县| 搜索| 余江县| 普宁市| 辽中县| 凤山市| 霞浦县| 巴林右旗| 永福县| 云浮市| 灵宝市| 石泉县| 手机| 峨边| 和田县| 红河县| 龙里县| 玉林市| 苏州市| 新绛县| 县级市| 新源县| 阳江市| 海门市| 波密县| 滁州市| 金昌市| 淮安市|