作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
目标:最后的每一帧都应该有一个完整的 sudowoodo。任何不是 sudowoodo 的东西在 gif 中都应该是透明的(我也可以用白色)。我的最终目标是能够重新着色,所以我必须能够区分背景和口袋妖怪。
我正在使用请求从网站获取 gif,然后使用 pillow 获取帧。当我通过帧搜索时,伪影(主要是背景)干扰了我的处理方法。我用 https://ezgif.com/split检查它的外观。
我在我的拼贴画的处理范围周围放置了框架、处理方法和框,以帮助查看它应该如何堆叠(如下图所示)。我在底部放置了将显示重建帧的示例代码。
那么如何使用枕头正确地获得干净的镜框呢?
注意:
使用的 Gif:https://play.pokemonshowdown.com/sprites/xyani/sudowoodo.gif
Python Versions
Python == 3.6.4
Pillow == 7.0.0
requests == 2.23.0
from PIL import Image, ImageDraw, ImageFont
from io import BytesIO
import requests
#Depends on the dispose_method and disposal_extent will process accordingly
def method_dispose(i, frames, previous_frame):
# 0 PIL = Overlay and pass
# 1 PIL = Overlay and return previous
# 2 PIL = Erase Overlay
new_frame = previous_frame.copy()
current_frame = frames.convert('RGBA')
new_frame.alpha_composite(current_frame, dest=frames.dispose_extent[0:2], source=frames.dispose_extent)
if frames.disposal_method is 0:
return new_frame, Image.new('RGBA', box=frames.size)
elif frames.disposal_method is 1:
return new_frame, new_frame.copy()
elif frames.disposal_method is 2:
draw = ImageDraw.Draw(previous_frame)
draw.rectangle(frames.dispose_extent, fill=(255, 255, 255, 0)) #fill white transparent
return new_frame, previous_frame.copy()
# Goes through the frames and pastes them next to each other then shows
def simpleCollage(frames, num_images_width : int = 5, num_images_height : int = 10):
width, height = frames.size
compilation = Image.new('RGBA', size=(width * num_images_width, height * num_images_height))
fnt = ImageFont.load_default().font
for i in range(frames.n_frames):
frames.seek(i)
the_frame = frames.convert('RGBA')
draw = ImageDraw.Draw(the_frame)
draw.rectangle(frames.dispose_extent, outline=(255,173,0,255))
draw.text((0,0), f"F{i}-M{frames.disposal_method}", font=fnt, fill=(255, 0, 0))
compilation.paste(the_frame, box=(width * int(i % num_images_width), height * int(i / num_images_width)))
if i == (num_images_width * num_images_height):
break;
compilation.show()
response = requests.get("https://play.pokemonshowdown.com/sprites/xyani/sudowoodo.gif")
frames = Image.open(BytesIO(response.content))
simpleCollage(frames)
width, height = frames.size
all_frames = []
pass_frame = Image.new('RGBA', size=frames.size)
for i in range(frames.n_frames):
frames.seek(i)
disp_frame, pass_frame = method_dispose(i, frames, pass_frame)
all_frames.append(disp_frame)
all_frames[0].save(fp="test.gif", format='GIF', save_all=True, append_images=all_frames[1:], optimize=False, duration=frames.info['duration'], loop=0)
simpleCollage(Image.open("test.gif"))
我用于处理方法的一些来源:
最佳答案
由于重复 .convert()
而导致的不良图像。要解决此问题,.seek(0)
需要放在 .convert()
之后。所以生成的代码应该是这样的:
for i in range(frames.n_frames):
frames.seek(i)
disp_frame, pass_frame = method_dispose(i, frames, pass_frame)
all_frames.append(disp_frame)
frames.seek(0) # <-- Added
关于python-3.x - Python 枕头 Gif 人工制品/背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60890497/
我对 Bamboo 很陌生。我有一个使用 log4j 生成的 html 文件。我想把它放在用户定义的工件中,但不知道如何。 它在surefire-reports 文件夹中,所以我尝试将Source 目
我是一名优秀的程序员,十分优秀!