e663. 在gif图像中获取透明和色彩的数量
Posted borter
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了e663. 在gif图像中获取透明和色彩的数量相关的知识,希望对你有一定的参考价值。
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 取的图像的色彩模型 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 |
以上是关于e663. 在gif图像中获取透明和色彩的数量的主要内容,如果未能解决你的问题,请参考以下文章