Gambas文档
主题
代码片段
名词解释
如何操作
应用程序仓库
废弃的组件
开发环境文档
开发者文档
教程
文档
最新修改
组件
gb
gb.args
gb.cairo
gb.chart
gb.clipper
gb.complex
gb.compress
gb.crypt
gb.data
gb.db
gb.db.form
gb.db.mysql
gb.db.odbc
gb.db.postgresql
gb.db.sqlite2
gb.db.sqlite3
gb.dbus
gb.dbus.trayicon
gb.debug
gb.desktop
gb.desktop.x11
gb.eval
gb.eval.highlight
gb.form
gb.form.dialog
gb.form.editor
gb.form.htmlview
gb.form.mdi
gb.form.print
gb.form.terminal
gb.gmp
gb.gsl
gb.gtk
Button
ComboBox
Container
Embedder
Font
Panel
trayicon
trayicons
gb.gtk3
gb.gtk3.opengl
gb.gtk3.webview
gb.gui
gb.gui.qt
gb.gui.qt.ext
gb.gui.trayicon
gb.gui.webview
gb.hash
gb.highlight
gb.image
gb.image.effect
gb.image.io
gb.inotify
gb.logging
gb.map
gb.media
gb.media.form
gb.mime
gb.mongodb
gb.mysql
gb.ncurses
gb.net
gb.net.curl
gb.net.pop3
gb.net.smtp
gb.opengl
gb.opengl.glsl
gb.opengl.glu
gb.opengl.sge
gb.openssl
gb.option
gb.pcre
gb.pdf
gb.poppler
gb.qt4
gb.qt4.ext
gb.qt4.opengl
gb.qt4.webkit
gb.qt4.webview
gb.qt5
gb.qt5.ext
gb.qt5.opengl
gb.qt5.webview
gb.qt6
gb.qt6.ext
gb.qt6.opengl
gb.qt6.webview
gb.report
gb.report2
gb.sdl
gb.sdl2
gb.sdl2.audio
gb.settings
gb.signal
gb.term
gb.test
gb.util
gb.util.web
gb.v4l
gb.vb
gb.web
gb.web.feed
gb.web.form
gb.web.gui
gb.xml
gb.xml.html
gb.xml.rpc
gb.xml.xslt
维基手册
维基搜索
维基许可协议
编译和安装
语言概览
语言索引
说明
错误消息

Picture (gb.gtk)

This class represents a picture.

The picture contents are stored in the display server, not in the process memory like an Image.

Even if the underlying toolkit does not completely manage transparency yet, each picture can have a mask. This feature can be set explicitly at picture instantiation, or implicitly when loading an image file that has transparency like PNG.

When drawing on a picture having a mask, the picture and the mask are modified accordingly.

This class is creatable.

This class acts like a read / write static array.

Static methods
Flush   Flushes the internal picture cache.
FromString  
Load   Loads a picture from the disk.
Refresh  

Properties
Depth   Returns the color depth of the picture.
H  
Height   Returns the height of the picture.
Image   Converts the picture into an image and returns it.
Transparent   Returns or sets if the picture has a mask.
W  
Width   Returns the width of the picture.

Methods
Clear   Clears the picture.
Copy   Returns a copy of the picture, or a copy of a part of the picture.
Fill   Fills the picture with the specified color.
Resize   Resizes a picture.
Save   Saves a picture to the disk. The file extension of Path will give the format of the saved image.
Stretch   Return a stretched copy of a picture.
ToString  

Tip:

Calling something like...
Picture["/tmp/TemporaryPicture.png"]
will load the picture from the disk if it has not already done so.
If it has already loaded this picture calling the same file path again will load the cached picture from the display server and not from disk.

If you wish to reload the same picture path from disk you must use the Picture.Load(Path) method.
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.