亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

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

新丰县| 彭泽县| 宜章县| 肥东县| 安徽省| 青铜峡市| 桃园县| 福泉市| 许昌县| 怀宁县| 丹凤县| 山东省| 黔南| 鄂尔多斯市| 樟树市| 墨玉县| 新沂市| 山东省| 德化县| 石首市| 南部县| 永昌县| 抚宁县| 和林格尔县| 子长县| 锦屏县| 双桥区| 英山县| 永济市| 方山县| 易门县| 曲阜市| 浙江省| 惠水县| 黄梅县| 尤溪县| 塔城市| 仙桃市| 怀来县| 武隆县| 车致|