Image Handlers
#blitzmax #library
|
пре 2 месеци | |
---|---|---|
bmp.mod | пре 3 година | |
cms.mod | пре 2 година | |
gif.mod | пре 1 година | |
ilbm.mod | пре 6 месеци | |
jpeg2000.mod | пре 2 година | |
jpg.mod | пре 3 година | |
jxl.mod | пре 2 година | |
jxlwriter.mod | пре 2 година | |
pcx.mod | пре 3 година | |
pic.mod | пре 3 година | |
png.mod | пре 2 месеци | |
pnm.mod | пре 3 година | |
qoi.mod | пре 3 година | |
raw.mod | пре 3 година | |
stb.mod | пре 10 месеци | |
svg.mod | пре 10 месеци | |
tga.mod | пре 3 година | |
tiff.mod | пре 5 месеци | |
webp.mod | пре 1 година | |
yuv.mod | пре 11 месеци | |
.gitignore | пре 3 година | |
README.md | пре 2 година |
BlitzMax includes support for loading many different image formats.
Simply import one of the image modules, and you will be able to load images of that format into a TPixmap
.
The following image formats are currently supported :
Usage :
Import Image.BMP
See Wikipedia for more information about the format.
Usage :
Import Image.GIF
Supports both static and animated GIFs.
To load an animated GIF, use the following function, TGifImage.LoadImage(url:Object)
:
Local image:TImage = TGifImage.LoadImage("image-name.gif")
This function returns a fully populated Max2D TImage
object directly (similar to calling LoadAnimImage
), rather than a TPixmap
.
GIF frame delays are stored in the frameDuration:Int[]
field of TImage
as a time in milliseconds.
See Wikipedia for more information about the format.
Usage :
Import Image.ILBM
See Wikipedia for more information about the format.
Usage :
Import Image.JPG
See Wikipedia for more information about the format.
Usage :
Import Image.PCX
See Wikipedia for more information about the format.
Usage :
Import Image.PIC
See Wikipedia for more information about the format.
Usage :
Import Image.PNG
See Wikipedia for more information about the format.
Usage :
Import Image.PNM
See Wikipedia for more information about the format.
Usage :
Import Image.QOI
Usage :
Import Image.RAW
See Wikipedia for more information about the format.
Usage :
Import Image.SVG
See Wikipedia for more information about the format.
Usage :
Import Image.TGA
See Wikipedia for more information about the format.
Usage :
Import Image.WEBP
See Wikipedia for more information about the format.