codecamp

Pillow IcoImagePlugin模块

classPIL.IcoImagePlugin.IcoFile(buf)

基类:object

frame(idx)

从帧IDX获取图像

getentryindex(sizebpp=False)
getimage(sizebpp=False)

从图标中获取图像

sizes()

获取所有可用图标大小和颜色深度的列表。

classPIL.IcoImagePlugin.IcoImageFile(fp=Nonefilename=None)

基类:PIL.ImageFile.ImageFile

PIL只读图像支持Microsoft Windows.ico文件。

默认情况下,将加载文件中的最大分辨率图像。这可以通过在调用“load”之前更改“size”属性来更改。

信息字典有一个键“大小”,它是图标文件中可用大小的列表。

处理经典、XP和Vista图标格式。

保存时,使用PNG压缩。仅在Windows Vista中添加了对此的支持。

此插件是bryan davis重构的win32的iconimageplugin版本。

format= 'ICO'
format_description= 'Windows Icon'
load()

基于平铺列表加载图像数据

load_seek()
propertysize


Pillow IcnsImagePlugin模块
Pillow ImImagePlugin 模块
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

Pillow 参考

Pillow ImageChops模块

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }