python的graphics
❶ python用graphics中的image圖片保存與調用
from PIL import Image
import os.path
import glob
def convertjpg(jpgfile,outdir,width=1280,height=720):
img=Image.open(jpgfile)
new_img=img.resize((width,height),Image.BILINEAR)
new_img.save(os.path.join(outdir,os.path.basename(jpgfile)))
for jpgfile in glob.glob("D:/python/*.jpg"):
convertjpg(jpgfile,"D:/newfile")
convertjpg調用時可以有四個參數,如convertjpg(jpgfile,"D:/newfile",800,600)
Image open了jpg用完後要不要close?
❷ 在python中用Graphics繪圖怎麼上色
#coding:utf8
fromgraphicsimport*
win=GraphWin()
pt=Point(75,50) #設定圓心
pt.draw(win)
cir=Circle(Point(150,50),25) #設定圓形
cir.draw(win)
cir.setFill('blue') #給圓形上色
cir=Circle(pt,25) #設定圓形
cir.draw(win)
cir.setFill('blue') #給圓形上色
retl=Rectangle(pt,Point(150,100)) #設定矩形
retl.draw(win)
retl.setFill('blue') #給矩形上色
importtime
time.sleep(5)
❸ Python 如何調用graphics庫畫圓弧,半圓等
importturtle
turtle.left(135)
turtle.circle(120,90)
turtle.done()
pythone3
❹ 求助關於python graphics的一個問題
hello~
graphics 這拆陵個模塊容易導入不完全
建漏埋議在終端輸入:
pip install graphics.py
上述代碼本身沒有問題,問題出在導入的graphics模返御螞塊上
❺ python中的graphics怎麼用,是不是要安裝什麼的
想要圖形界面編程直接用Tkinter就行了。。。。在windows環境下的idle中已經自帶了tk
❻ python graphics 問題
有,c=Rectangle(Point(3,4),Point(5,6))
x=c.getP1()
y=c.getP2()
x就是Point(3,4)辯神氏攜散
y是另一個瞎敗