Picture (gb.qt4)
该类描述一个图片。
图片内容被存储于显示服务中,而不是像
Image一样存储于进程内存。
即使基础工具包还不能完全管理透明效果,每个图片也能有一个屏蔽色。
该特性可以明确的设置图片实例,或者当加载一个类似PNG文件有透明效果的图像文件时隐含的设置。
当在一个有屏蔽色的图片上绘画时,图片和屏蔽色相应的被修改。
静态方法
属性
方法
Tip:
按照如下方式调用...
Picture["/tmp/TemporaryPicture.png"]
将从磁盘加载图片(如果尚未加载)。
如果
已经 加载了此图片,则再次调用相同的文件路径将从显示服务器加载缓存的图片而不是从磁盘。
如果您希望从磁盘重新加载相同的图片路径,则必须使用图片
Load(Path) 方法。
Picture.Load("/tmp/TemporaryPicture.png")
Warning about dark themes:
Using the Picture["filepath"] method to load a picture will convert it to dark theme (Image.Invert) if the system is using a dark theme.
If you wish to avoid this feature you must use the Picture.
Load("filepath") method instead.