码迷,mamicode.com
首页 > 其他好文 > 详细

e662. 取的图像的色彩模型

时间:2018-09-02 23:41:25      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:body   turn   eof   java   exce   etc   图像   rup   getc   

// This method returns the color model of an image
    public static ColorModel getColorModel(Image image) {
        // If buffered image, the color model is readily available
        if (image instanceof BufferedImage) {
            BufferedImage bimage = (BufferedImage)image;
            return bimage.getColorModel();
        }
    
        // Use a pixel grabber to retrieve the image‘s color model;
        // grabbing a single pixel is usually sufficient
         PixelGrabber pg = new PixelGrabber(image, 0, 0, 1, 1, false);
         try {
             pg.grabPixels();
         } catch (InterruptedException e) {
         }
        ColorModel cm = pg.getColorModel();
        return cm;
    }

 

Related Examples

e662. 取的图像的色彩模型

标签:body   turn   eof   java   exce   etc   图像   rup   getc   

原文地址:https://www.cnblogs.com/borter/p/9575532.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!