gpt4 book ai didi

python-3.x - Python 图像保存错误 - 从 e ValueError : unknown file extension: 引发 ValueError ("unknown file extension: {}".format(ext))

转载 作者:行者123 更新时间:2023-12-01 23:54:40 28 4
gpt4 key购买 nike

我只有四个星期的 Python 经验。使用 Tkinter 创建一个工具,将新的公司 Logo 粘贴到现有图像之上。

下面的方法是获取给定目录中的所有图像并将新 Logo 粘贴到初始级别。现有图像、编辑图像、x 位置、y 位置、图像预览和少量数据存储在全局实例 self.images_all_arr 中。

def get_img_copy(self):
self.images_all_arr = []
existing_img_fldr = self.input_frame.input_frame_data['existing_img_folder']
for file in os.listdir(existing_img_fldr):
img_old = Image.open(os.path.join(existing_img_fldr, file))
img_new_copy = img_old.copy()
self.pasteImage(img_new_copy, initpaste=True) #process to paste new logo.
view_new_img = ImageTk.PhotoImage(img_new_copy)
fname, fext = file.split('.')
formObj = {
"fname": fname,
"fext": fext,
"img_old": img_old,
"img_new": img_new_copy,
"img_new_view": view_new_img,
"add_logo": 1,
"is_default": 1,
"is_opacityImg": 0,
"pos_x": self.defult_x.get(),
"pos_y": self.defult_y.get()
}
self.images_all_arr.append(formObj)

在 Tkinter 屏幕中预览每个图像后,根据需要对位置 x 和 y 进行一些调整(更新列表 self.images_all_arr 中的 pos_x 和 pos_y)。

好了,一旦完成。需要保存编辑好的图像。以下方法保存图像,迭代列表 self.images_all_arr 并调用保存方法作为 img['img_new'].save(dir_output) since img['img_new '] 更新了图像。

 def generate_imgae(self):
if len(self.images_all_arr):
dir_output = 'xxxxx'
for img in self.images_all_arr:
print(img['img_new'])
img['img_new'].save(dir_output)

print('completed..')

但它返回以下错误,

Exception in Tkinter callbackTraceback (most recent call last):File "C:\Program Files (x86)\Python38-32\lib\site-packages\PIL\Image.py", line 2138, in saveformat = EXTENSION[ext]KeyError: ''The above exception was the direct cause of the following exception:Traceback (most recent call last):File "C:\Program Files (x86)\Python38-32\lib\tkinter_init_.py", line 1883, in callreturn self.func(*args)File "C:\Users\662828\WORKSPACE\AAA_python_projects\AMI_automation_poc2\position_and_images.py", line 241, in generate_imgaeimg['img_new'].save(dir_output)File "C:\Program Files (x86)\Python38-32\lib\site-packages\PIL\Image.py", line 2140, in saveraise ValueError("unknown file extension: {}".format(ext)) from eValueError: unknown file extension:

最佳答案

dir_output 不包含文件扩展名,它只是 xxxxx。您需要指定所需的图像文件格式。该错误通过“未知文件格式”告诉我们这一点。

基本上,您需要在文件名中包含扩展名,或者将其作为 image.save 中的下一个参数传递。您可以查看文档 here

例如。

image.save('image.png')

image.save('image', 'png')

关于python-3.x - Python 图像保存错误 - 从 e ValueError : unknown file extension: 引发 ValueError ("unknown file extension: {}".format(ext)),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62979407/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com