- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
方向:
我创建了以下函数以允许用户将 turtle 更改为他/她选择的图像,然后随时将其标记到 Canvas 上:
def TurtleShape():
try:
# Tkinter buttons related to turtle manipulation
manipulateimage.config(state = NORMAL)
flipButton.config(state = NORMAL)
mirrorButton.config(state = NORMAL)
originalButton.config(state = NORMAL)
resetturtle.config(state = NORMAL)
rotateButton.config(state = NORMAL)
# Ask user for file name from tkinter file dialog, and return file name as `klob`
global klob
klob = filedialog.askopenfilename()
global im
# Open `klob` and return as `im`
im = Image.open(klob)
# Append `im` to pictures deque
pictures.append(im)
# Clear `edited` deque
edited.clear()
# Save `im` as an image, then register image as shape, and finally set image as turtle shape
im.save(klob + '.gif', "GIF")
register_shape(klob + '.gif')
shape(klob + '.gif')
update()
except:
# If user selects cancel in file dialog, then pass
pass
def StampPic():
stamp()
draw_space() # Go forward 100 pixels with pen up after every stamp
update()
pictures
的图像。 deque,调整大小,并将编辑后的图像输出为
.gif
图像,这将是 turtle 的新形状。但是,如果连续调用两次或更多次,由于多次调整同一图片的大小会导致图像失真的问题,我不得不创建另一个双端队列
jiop
它保存了
pictures
中的原始项目deque,每当此函数被连续调用一次以上时,每次都会调整原始图像的大小,而不是每次都调整相同的图像。但是,如果仅作为辅助函数调用,则该函数将简单地从
edited
中获取当前图像。 deque,调整该图像的大小,然后将其设置为 turtle 的新形状:
def TurtleImageResize():
if not hasattr(TurtleImageResize, "counter"):
TurtleImageResize.counter = 0
TurtleImageResize.counter += 1
# width = original size of image
width = im.size[0]
# height = original height of image
height = im.size[1]
# Allow user to enter new width for image
NewOne2 = numinput('Width of Image', 'Set the width of the image: ', minval = 1)
# Allow user to enter new height for image
NewOne = numinput('Height of Image', 'Set the height of your image: ', minval = 1)
# Set width to user input if user input is NOT nothing. Otherwise, use `width` as picture width.
Picwidth = NewOne2 if NewOne2 != None else width
# Set height to user input if user input is NOT None. Otherwise, use `height` as picture height.
Picheight = NewOne if NewOne != None else height
try:
# Secondary Step: Take ORIGINAL image appended to `jiop` (from `except:` code block succeeding `try:` code block) and resize THAT image each time this function is called twice in a row. Otherwise, if ONLY called as a secondary step, take previously edited image from `edited` deque, resize that, and append newly edited image to the `edited` deque.
try:
# `jiop` is a deque
hye = jiop.pop()
jiop.append(hye)
print("Jiop")
except:
hye = edited.pop()
jiop.append(hye)
print("Edited")
# Resize Image to Picwidth and Picheight
editpic = hye.resize((int(Picwidth), int(Picheight)), Image.ANTIALIAS)
edited.append(editpic)
print("Hooplah!")
except:
# Intial step: Take image appended to `pictures` deque from `TurtleShape` function, then edit that and append newly edited image to both `editpic` and `pictures`
geer = pictures.pop()
# Resize Image to Picwidth and Picheight
editpic = geer.resize((int(Picwidth), int(Picheight)), Image.ANTIALIAS)
jiop.append(geer)
edited.append(editpic)
pictures.append(editpic)
print("Normal")
# Save image as `.gif`
editpic.save(klob + str(TurtleImageResize.counter) + '.gif', 'GIF')
# Register image as a shape, and use it as shape of turtle
register_shape(klob + str(TurtleImageResize.counter) + '.gif')
shape(klob + str(TurtleImageResize.counter) + '.gif')
update()
pictures
中获取图像。 deque,操作它,将编辑后的图像附加到
edited
deque,然后将 turtle “形状”更改为该新图像。但是,如果调用第二个,他们每个人都会从
edited
中获取图像。 deque,操纵它,将操纵的图像重新附加回
edited
deque,然后将其设置为 turtle 的新“形状”。这些功能如下所示:
def flippic():
if not hasattr(flippic, "counter"):
flippic.counter = 0
flippic.counter += 1
try:
# Secondary step: Take previously edited image from `edited` deque, manipulate that, and append newly edited image to the `edited` deque
jiop.clear()
ghy = edited.pop()
# Flip image over horizontal line
kpl = ImageOps.flip(ghy)
edited.append(kpl)
print("Jlop")
except:
# Initial step: Take image appended to `pictures` deque from `TurtleShape` function, then edit that and append newly edited image to both `editpic` and `pictures`
neer = pictures.pop()
# Flip image over horizontal line
kpl = ImageOps.flip(neer)
pictures.append(kpl)
edited.append(kpl)
print("Yup")
# Save image as `.gif`
kpl.save(klob + str(flippic.counter) + '.gif', "GIF")
# Register image as a shape, and use it as shape of turtle
register_shape(klob + str(flippic.counter) + '.gif')
shape(klob + str(flippic.counter) + '.gif')
update()
def mirror():
if not hasattr(mirror, "counter"):
mirror.counter = 0
mirror.counter += 1
try:
jiop.clear()
jui = edited.pop()
# Flip image over vertical line
fgrt = ImageOps.mirror(jui)
edited.append(fgrt)
except:
bbc = pictures.pop()
# Flip image over vertical line
fgrt = ImageOps.mirror(bbc)
pictures.append(fgrt)
edited.append(fgrt)
fgrt.save(klob + str(mirror.counter) + ".gif")
register_shape(klob + str(mirror.counter) + ".gif")
shape(klob + str(mirror.counter) + ".gif")
update()
def rotatePic():
if not hasattr(rotatePic, "counter"):
rotatePic.counter = 0
rotatePic.counter += 1
try:
jiop.clear()
lmcb = edited.pop()
# Rotate image 90º right
fetch = lmcb.rotate(-90, expand = True)
edited.append(fetch)
except:
bolt = pictures.pop()
# Rotate image 90º right
fetch = bolt.rotate(-90, expand = True)
pictures.append(fetch)
edited.append(fetch)
fetch.save(klob + str(rotatePic.counter) + ".gif")
register_shape(klob + str(rotatePic.counter) + ".gif")
shape(klob + str(rotatePic.counter) + ".gif")
update()
clear()
任何地方都可以找到的函数(为了向您展示我的意思,请参阅下面的
编辑 )。
显然这个问题只发生在 TurtleImageResize
之后函数被调用。
TurtleImageResize
出了什么问题导致此问题的功能? 我已经将 turtle 形状的图像管理过程完全修改为现在的样子,希望它能解决我在之前的设置中也遇到的这个问题,但显然,情况仍然并非如此。因此,非常感谢对此问题的任何帮助!
GhostScript
才能使其正常工作) :
import os,shutil,subprocess, sys
her = sys.platform
if her == "win32":
print("Windows is your Operating System")
win_gs = ["gs","gswin32c","gswin64c"]
if all( shutil.which(gs_version) is None for gs_version in win_gs ):
paths = ["C:\\Program Files\\gs\\gs9.18\\bin","C:\\Program Files (x86)\\gs\\gs9.18\\bin"]
for path in (x for x in paths if os.path.exists(x)):
os.environ["PATH"] += ";" + path
break
if any( shutil.which(gs_version) for gs_version in win_gs ):
print("GhostScript 9.18 for Windows found and utilized")
else:
print("You do not have GhostScript 9.18 installed for Windows. Please install it.")
sys.exit(0)
else:
print("GhostScript 9.18 for Windows found and utilized")
elif her == 'darwin':
print("Macintosh is your Operating System")
if shutil.which("gs") is None:
os.environ["PATH"] += ":/usr/local/bin"
if shutil.which("gs") is None:
print("You do not have GhostScript installed for Macintosh. Please install it.")
sys.exit(0)
else:
print("GhostScript for Macintosh found and utilized")
from turtle import *
from tkinter import *
try:
import tkinter.filedialog as filedialog
except ImportError:
pass
import collections
from PIL import Image, ImageEnhance, ImageOps
jiop = collections.deque()
pictures = collections.deque()
edited = collections.deque()
picwidth = collections.deque()
picheight = collections.deque()
def draw_space():
# Draw a space 200 pixels wide.
penup()
forward(200)
pendown()
def TurtleShape():
try:
manipulateimage.config(state = NORMAL)
flipButton.config(state = NORMAL)
mirrorButton.config(state = NORMAL)
rotateButton.config(state = NORMAL)
global klob
klob = filedialog.askopenfilename()
global im
im = Image.open(klob)
pictures.append(im)
edited.clear()
im.save(klob + '.gif', "GIF")
register_shape(klob + '.gif')
shape(klob + '.gif')
update()
except AttributeError:
pass
def TurtleImageResize():
if not hasattr(TurtleImageResize, "counter"):
TurtleImageResize.counter = 0
TurtleImageResize.counter += 1
width = im.size[0]
height = im.size[1]
NewOne2 = numinput('Width of Image', 'Set the width of the image: ', minval = 1)
NewOne = numinput('Height of Image', 'Set the height of your image: ', minval = 1)
Picwidth = NewOne2 if NewOne2 != None else width
picwidth.append(Picwidth)
Picheight = NewOne if NewOne != None else height
picheight.append(Picheight)
try:
try:
hye = jiop.pop()
jiop.append(hye)
except:
hye = edited.pop()
jiop.append(hye)
editpic = hye.resize((int(Picwidth), int(Picheight)), Image.ANTIALIAS)
edited.append(editpic)
pictures.append(editpic)
except:
geer = pictures.pop()
editpic = geer.resize((int(Picwidth), int(Picheight)), Image.ANTIALIAS)
jiop.append(geer)
edited.append(editpic)
pictures.append(editpic)
editpic.save(klob + str(TurtleImageResize.counter) + '.gif', 'GIF')
register_shape(klob + str(TurtleImageResize.counter) + '.gif')
shape(klob + str(TurtleImageResize.counter) + '.gif')
update()
def flippic():
if not hasattr(flippic, "counter"):
flippic.counter = 0
flippic.counter += 1
try:
jiop.clear()
ghy = edited.pop()
kpl = ImageOps.flip(ghy)
edited.append(kpl)
pictures.append(kpl)
print("Jlop")
except:
neer = pictures.pop()
kpl = ImageOps.flip(neer)
pictures.append(kpl)
edited.append(kpl)
print("Yup")
kpl.save(klob + str(flippic.counter) + '.gif', "GIF")
register_shape(klob + str(flippic.counter) + '.gif')
shape(klob + str(flippic.counter) + '.gif')
update()
def mirror():
if not hasattr(mirror, "counter"):
mirror.counter = 0
mirror.counter += 1
try:
jiop.clear()
jui = edited.pop()
fgrt = ImageOps.mirror(jui)
edited.append(fgrt)
pictures.append(fgrt)
except:
bbc = pictures.pop()
fgrt = ImageOps.mirror(bbc)
pictures.append(fgrt)
edited.append(fgrt)
fgrt.save(klob + str(mirror.counter) + ".gif")
register_shape(klob + str(mirror.counter) + ".gif")
shape(klob + str(mirror.counter) + ".gif")
update()
def rotatePic():
if not hasattr(rotatePic, "counter"):
rotatePic.counter = 0
rotatePic.counter += 1
try:
jiop.clear()
lmcb = edited.pop()
fetch = lmcb.rotate(-90, expand = True)
edited.append(fetch)
pictures.append(fetch)
except:
bolt = pictures.pop()
fetch = bolt.rotate(-90, expand = True)
pictures.append(fetch)
edited.append(fetch)
fetch.save(klob + str(rotatePic.counter) + ".gif")
register_shape(klob + str(rotatePic.counter) + ".gif")
shape(klob + str(rotatePic.counter) + ".gif")
update()
def StampPic():
stamp()
draw_space()
update()
def move_turtle():
# Pick up the turtle and move it to its starting location.
penup()
goto(-200, 100)
pendown()
def settings():
# Tkinter buttons
turtlepic = Button(text = "Set Turtle Image", command = TurtleShape)
turtlepic.pack(side = 'left')
stampimage = Button(text = "Stamp", command = StampPic)
stampimage.pack(side = 'left')
global manipulateimage
manipulateimage = Button(text = "Resize Turtle Image", command = TurtleImageResize, state = DISABLED)
manipulateimage.pack(side = 'left')
global flipButton
flipButton = Button(text = "Flip image", command = flippic, state = DISABLED)
flipButton.pack(side = 'left')
global mirrorButton
mirrorButton = Button(text = "Mirror Image", command = mirror, state = DISABLED)
mirrorButton.pack(side = 'left')
global rotateButton
rotateButton = Button(text = "Rotate Image", command = rotatePic, state = DISABLED)
rotateButton.pack(side = 'left')
def skip(x, y):
penup()
goto(x, y)
pendown()
update()
move_turtle()
settings()
speed(0)
tracer(0, 0)
onscreenclick(skip)
if sys.platform == 'win32':
input()
else:
pass
GhostScript
和 PIL(或 Pillow)安装在您的系统上,要重现我的问题,请执行以下操作(所有步骤
需要 除第 4 步外):
Set Turtle Image
窗口底部的按钮,选择您想要 turtle 的任何图像,然后按 Open
. turtle 被设置为该图像。 Resize turtle Image
将图像调整为 800x400(或您想要的任何其他尺寸)屏幕底部的按钮。将连续弹出两个对话框。在第一个对话框中输入800的宽度(或您自己的宽度),然后在第二个对话框中输入400的高度(或您自己的高度),完成后,图像将根据提供的尺寸改变大小(或根据您是否按下取消将图像设置回原始尺寸)。 Stamp
窗口底部的按钮。图像被标记到 Canvas 上, turtle 在标记图像“后面”向前移动 400 像素。 TurtleImageResize
出了什么问题导致这种情况发生的功能?
最佳答案
问题似乎在于,通过为不同功能设置单独的计数器,您会覆盖先前操作创建的文件。假设您有一张名为 test.gif
的图片并应用翻转变换。结果将保存为 test.gif1.gif
.如果您现在应用旋转变换,旋转后的图片也会保存为 test.gif1.gif
,覆盖现有文件,之前的图片消失。
因此,修复此错误的一种方法是对所有图片使用一个计数器,而不是每个功能一个计数器,例如使用 itertools.count
或者只是一个 int
.这也会使您的代码更短一些。
但是,还有几个问题我想指出:
except:
一样多,少得多except: pass
;这样你就永远不会知道发生了什么,以防万一出现问题 queue
s 是为了;如果您将所有图片放入一个队列,或者根本没有队列(只需将它们保存在磁盘上),代码也能正常工作;但也许你需要那些不属于你的示例代码的东西 import turtle
import tkinter
import tkinter.filedialog as filedialog
import itertools
from PIL import Image, ImageEnhance, ImageOps
count = itertools.count()
img = None
def turtleShape():
global img
klob = filedialog.askopenfilename()
img = Image.open(klob)
saveAndUpdate(img)
def turtleImageResize():
def resize(img):
picwidth = turtle.numinput('Width of Image', 'Set the width of the image: ', minval=1) or img.size[0]
picheight = turtle.numinput('Height of Image', 'Set the height of your image: ', minval=1) or img.size[1]
return img.resize((int(picwidth), int(picheight)), Image.ANTIALIAS)
manipulate(resize)
def manipulate(function):
global img
if img:
img = function(img)
saveAndUpdate(img)
else:
print("No picture selected")
def flippic():
manipulate(ImageOps.flip)
def mirror():
manipulate(ImageOps.mirror)
def rotatePic():
manipulate(lambda img: img.rotate(-90, expand=True))
def saveAndUpdate(img):
name = "pic_" + str(next(count)) + ".gif"
img.save(name, 'GIF')
turtle.register_shape(name)
turtle.shape(name)
turtle.update()
def stampPic():
turtle.stamp()
turtle.penup()
turtle.forward(200)
turtle.pendown()
def settings():
tkinter.Button(text="Set Turtle Image", command=turtleShape).pack(side='left')
tkinter.Button(text="Stamp", command=stampPic).pack(side = 'left')
tkinter.Button(text="Resize Turtle Image", command=turtleImageResize).pack(side='left')
tkinter.Button(text="Flip image", command=flippic).pack(side='left')
tkinter.Button(text="Mirror Image", command=mirror).pack(side='left')
tkinter.Button(text="Rotate Image", command=rotatePic).pack(side='left')
def skip(x, y):
turtle.penup()
turtle.goto(x, y)
turtle.pendown()
turtle.update()
skip(-200, 100)
settings()
turtle.speed(0)
turtle.tracer(0, 0)
turtle.onscreenclick(skip)
turtle.mainloop()
关于Python turtle 图章在 turtle 形状的图像处理后神秘消失,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34959507/
我正在尝试更新我的 jtable(更改值并按 Enter 键),但出现错误。由于大小原因,错误未完整。我认为其余部分只是 c3p0 池连接工具生成的不相关信息。 假设 起初,我认为这可能是 c3p0
每当我有两个水平并排的元素并指定了右和/或左填充和/或边距时,元素之间通常会在我指定的上方和上方有空格。我希望有人能告诉我如何消除该空间(没有像负边距这样的笨拙东西)。 请注意:我并不是在寻找替代的多
String[] parts = msg.split(" +\n?"); String room = parts[0]; System.out.println(msg); Sy
我知道“一定有什么东西被改变了”,但我的代码似乎在一夜之间无缘无故地崩溃了。 我的服务器目录结构是这样的: / /scripts /audit /other_things 我在“scripts”文件夹
我正在尝试了解 GCM 的工作原理。为此,我复制/粘贴 http://developer.android.com/ 的代码在“实现 GCM 客户端”部分中提出。 从服务器发送消息是可行的,但是当我的客
在生成随机整数时,我发现了一些有趣的事情(至少对我而言),我无法向自己解释,所以我想我会把它贴在这里。 我的需求很简单:我要生成随机积分 (Int32) ID 并旨在最大程度地减少冲突。生成时间不是问
在这里https://stackoverflow.com/a/19915925/4673197我了解到我可以通过设置 IFS 将字符串拆分为数组。 在这里https://stackoverflow.c
我现在正在为我的 CS 测试学习,并尝试编写代码,以明文形式给出整个 IMDB 数据库,找到电影中共同点最多的 Actor 。我已经差不多完成了,只是不断遇到一个奇怪的 KeyError。这是我的代码
在 Android 平台上开发了几个月之后,我仍然有一个悬而未决的问题。很久以前,我注意到我有一个 Activity 不符合应用程序主题的其余部分。这意味着默认情况下,Activity 的字体颜色是白
本周,我注意到我的团队 Azure 门户上有一个持续的网络作业。 团队中没有人表示他们已经部署了它,或者熟悉它。我找到了这个博客: https://azure.microsoft.com/en-ca/
所以我正在制作一个小型闲置游戏,我的部分努力是格式化所有数字,以便它们之间有逗号(出于美观目的)。我成功地让我的货币 Energy 带有这些逗号,但我很难添加其他变量。我用了num.toLocaleS
我遇到了一个我以前从未见过的奇怪问题,我认为它一定是一些我在代码中没有看到的简单问题。 我有一个项目,其中定义了 2 个 Windows 服务。一个我称为 DataSyncService,另一个称为
我有这个jsfiddle一次有效。 function toggle_off(itemID){ alert(itemID+'->'+document.getElementById(itemID).g
更新:已解决,我是白痴,谢谢大家! Okay little bit weird.. I just created a layout file for list items, I can see it
问题:这段代码究竟在做什么? 另外:“w”的使用方式是否是某种现有算法?我试图弄清楚函数的意图,或者至少描述它产生的数字种类。 上下文:我正在查看 Martin O'Leary 的“Fantasy M
你能帮帮我吗?我正在将自己传递给它自己的纯虚函数。 n->dataCallback(handler, n, hangup); 其中 n 是我的类指针,dataCallback 是它自己的(纯)虚函数(
我知道这里有数百万篇关于这个异常(exception)的帖子,但我不明白这里的这个。我有一个极端简单的示例管道服务: [ServiceContract] public interface ISRARi
此代码有效,但它如何不实际调用任何列出的方法。它有效,但它的工作原理和原因似乎几乎是神奇的。我实际上从未调用过 Equals、GetHashCode 或 Compare,但代码有效。我也从不在实现两个
警告: Element 'TextStyle' from SDK library 'ui.dart' is implicitly hidden by 'text_style.dart'. 代码摘录:
我有一个似乎无法解开的谜。我有这个非常简单的单元测试,它使用了一个非常简单的自定义属性。该属性仅添加到甚至未实例化的 1 个类。我计算属性被构建的次数。由于类 MyDummyClass 上的属性,我希
我是一名优秀的程序员,十分优秀!