python 逆向播放gif

本文探讨了使用Python的PIL库处理GIF文件时遇到的透明度问题,并提供了一个简单的解决方案。此外,还分享了一个Python挑战实例,涉及读取图片文件并提取其中隐藏的信息。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

从头条看到的

from PIL import Image, ImageSequence
from PIL import ImagePalette
with Image.open('sd.gif') as im:
    if im.is_animated:
        frames = [f.copy() for f in ImageSequence.Iterator(im)]
        frames.reverse()
        frames[0].save('out.gif', save_all=True, append_images = frames[1:])   

路过大佬给看下错误,gif图能输出,就是报错

Couldn’t allocate palette entry for transparency “for transparency”)


一个python闯关:

# coding:utf-8
import requests
from PIL import Image
import urllib2
import re
import StringIO

def getChanllenge(p):
    return urllib2.urlopen('http://www.pythonchallenge.com/pc/' + p).read()

def get_images(s):
    return Image.open(StringIO.StringIO(getChanllenge(s)))

im = get_images('def/oxygen.png')
w, h = im.size
print im.getpixel((0,h//2))

print chr(115)
print ''.join([chr(im.getpixel((i, h//2))[0]) for i in range(0,w,8)])
##guess another pixel almost about 8
print ''.join([chr(im.getpixel((i, h//2))[0]) for i in range(0,w,7)])
print ''.join(map(chr, [105, 110, 116, 101, 103, 114, 105, 116, 121]))
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值