📄 e663. getting the transparent pixel and number of colors used in a gif image.txt
字号:
A IndexColorModel is used to represent the color table of a GIF image.
// Get GIF image
Image image = new ImageIcon("image.gif").getImage();
// Get the color model; this method is implemented in
// e662 Getting the Color Model of an Image
IndexColorModel colorModel = (IndexColorModel)getColorModel(image);
// Get transparent pixel
int trans = colorModel.getTransparentPixel();
if (trans == -1) {
// There is no transparent pixel
}
// Get the number of colors
int numColors = colorModel.getMapSize();
Related Examples
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -