亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? pngencoderb.java

?? tinyos最新版
?? JAVA
字號:
// $Id: PngEncoderB.java,v 1.2 2003/10/07 21:46:02 idgay Exp $package net.tinyos.plot;//package com.keypoint;/** * PngEncoderB takes a Java BufferedImage object and creates a byte string which can be saved as a PNG file. * The encoder will accept BufferedImages with eight-bit samples * or 4-byte ARGB samples.  *  * There is also code to handle 4-byte samples returned as * one int per pixel, but that has not been tested. * * Thanks to Jay Denny at KeyPoint Software *    http://www.keypoint.com/ * who let me develop this code on company time. * * You may contact me with (probably very-much-needed) improvements, * comments, and bug fixes at: * *   david@catcode.com * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. *  * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU * Lesser General Public License for more details. *  * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA * A copy of the GNU LGPL may be found at * http://www.gnu.org/copyleft/lesser.html, * * @author J. David Eisenberg * @version 1.4, 31 March 2000 */import java.awt.*;import java.awt.image.*;import java.util.*;import java.util.zip.*;import java.io.*;public class PngEncoderB extends PngEncoder {    protected BufferedImage image;    protected WritableRaster wRaster;    protected int tType;    /**     * Class constructor     *     */    public PngEncoderB()    {        this( null, false, FILTER_NONE, 0 );    }    /**     * Class constructor specifying BufferedImage to encode, with no alpha channel encoding.     *     * @param image A Java BufferedImage object     */    public PngEncoderB( BufferedImage image )    {        this(image, false, FILTER_NONE, 0);    }    /**     * Class constructor specifying BufferedImage to encode, and whether to encode alpha.     *     * @param image A Java BufferedImage object     * @param encodeAlpha Encode the alpha channel? false=no; true=yes     */    public PngEncoderB( BufferedImage image, boolean encodeAlpha )    {        this( image, encodeAlpha, FILTER_NONE, 0 );    }    /**     * Class constructor specifying BufferedImage to encode, whether to encode alpha, and filter to use.     *     * @param image A Java BufferedImage object     * @param encodeAlpha Encode the alpha channel? false=no; true=yes     * @param whichFilter 0=none, 1=sub, 2=up     */    public PngEncoderB( BufferedImage image, boolean encodeAlpha,       int whichFilter )    {        this( image, encodeAlpha, whichFilter, 0 );    }    /**     * Class constructor specifying BufferedImage source to encode, whether to encode alpha, filter to use, and compression level     *     * @param image A Java BufferedImage object     * @param encodeAlpha Encode the alpha channel? false=no; true=yes     * @param whichFilter 0=none, 1=sub, 2=up     * @param compLevel 0..9     */    public PngEncoderB( BufferedImage image, boolean encodeAlpha,      int whichFilter, int compLevel )    {        this.image = image;        this.encodeAlpha = encodeAlpha;        setFilter( whichFilter );        if (compLevel >=0 && compLevel <=9)        {            this.compressionLevel = compLevel;        }    }    /**     * Set the BufferedImage to be encoded     *     * @param BufferedImage A Java BufferedImage object     */    public void setImage( BufferedImage image )    {        this.image = image;        pngBytes = null;    }    /**     * Creates an array of bytes that is the PNG equivalent of the current image, specifying whether to encode alpha or not.     *     * @param encodeAlpha boolean false=no alpha, true=encode alpha     * @return an array of bytes, or null if there was a problem     */    public byte[] pngEncode( boolean encodeAlpha )    {        byte[]  pngIdBytes = { -119, 80, 78, 71, 13, 10, 26, 10 };        int     i;        if (image == null)        {            return null;        }        width = image.getWidth( null );        height = image.getHeight( null );        this.image = image;        if (!establishStorageInfo())        {            return null;        }                /*         * start with an array that is big enough to hold all the pixels         * (plus filter bytes), and an extra 200 bytes for header info         */        pngBytes = new byte[((width+1) * height * 3) + 200];        /*         * keep track of largest byte written to the array         */        maxPos = 0;        bytePos = writeBytes( pngIdBytes, 0 );        hdrPos = bytePos;        writeHeader();        dataPos = bytePos;        if (writeImageData())        {            writeEnd();            pngBytes = resizeByteArray( pngBytes, maxPos );        }        else        {            pngBytes = null;        }        return pngBytes;    }    /**     * Creates an array of bytes that is the PNG equivalent of the current image.     * Alpha encoding is determined by its setting in the constructor.     *     * @return an array of bytes, or null if there was a problem     */    public byte[] pngEncode()    {        return pngEncode( encodeAlpha );    }    /**     *      * Get and set variables that determine how picture is stored.     *     * Retrieves the writable raster of the buffered image,     * as well its transfer type.     *     * Sets number of output bytes per pixel, and, if only     * eight-bit bytes, turns off alpha encoding.     * @return true if 1-byte or 4-byte data, false otherwise     */    protected boolean establishStorageInfo()    {        int dataBytes;            wRaster = image.getRaster();        dataBytes = wRaster.getNumDataElements();        tType = wRaster.getTransferType();        if (((tType == DataBuffer.TYPE_BYTE) && (dataBytes == 4)) ||            ((tType == DataBuffer.TYPE_INT) && (dataBytes == 1)) )        {            bytesPerPixel = (encodeAlpha) ? 4 : 3;        }        else if ((tType == DataBuffer.TYPE_BYTE) && (dataBytes == 1))        {            bytesPerPixel = 1;            encodeAlpha = false;    // one-byte samples        }        else        {            return false;        }        return true;    }    /**     * Write a PNG "IHDR" chunk into the pngBytes array.     */    protected void writeHeader()    {        int startPos;        startPos = bytePos = writeInt4( 13, bytePos );        bytePos = writeString( "IHDR", bytePos );        width = image.getWidth( null );        height = image.getHeight( null );        bytePos = writeInt4( width, bytePos );        bytePos = writeInt4( height, bytePos );        bytePos = writeByte( 8, bytePos ); // bit depth        if (bytesPerPixel != 1)        {            bytePos = writeByte( (encodeAlpha) ? 6 : 2, bytePos ); // direct model        }        else        {            bytePos = writeByte( 3, bytePos ); // indexed        }        bytePos = writeByte( 0, bytePos ); // compression method        bytePos = writeByte( 0, bytePos ); // filter method        bytePos = writeByte( 0, bytePos ); // no interlace        crc.reset();        crc.update( pngBytes, startPos, bytePos-startPos );        crcValue = crc.getValue();        bytePos = writeInt4( (int) crcValue, bytePos );    }    protected void writePalette( IndexColorModel icm )    {        byte[] redPal = new byte[256];        byte[] greenPal = new byte[256];        byte[] bluePal = new byte[256];        byte[] allPal = new byte[768];        int i;        icm.getReds( redPal );        icm.getGreens( greenPal );        icm.getBlues( bluePal );        for (i=0; i<256; i++)        {            allPal[i*3  ] = redPal[i];            allPal[i*3+1] = greenPal[i];            allPal[i*3+2] = bluePal[i];        }        bytePos = writeInt4( 768, bytePos );        bytePos = writeString( "PLTE", bytePos );        crc.reset();        crc.update("PLTE".getBytes());        bytePos = writeBytes( allPal, bytePos );        crc.update( allPal );        crcValue = crc.getValue();        bytePos = writeInt4( (int) crcValue, bytePos );    }    /**     * Write the image data into the pngBytes array.     * This will write one or more PNG "IDAT" chunks. In order     * to conserve memory, this method grabs as many rows as will     * fit into 32K bytes, or the whole image; whichever is less.     *     *     * @return true if no errors; false if error grabbing pixels     */    protected boolean writeImageData()    {        int rowsLeft = height;  // number of rows remaining to write        int startRow = 0;       // starting row to process this time through        int nRows;              // how many rows to grab at a time        byte[] scanLines;       // the scan lines to be compressed        int scanPos;            // where we are in the scan lines        int startPos;           // where this line's actual pixels start (used for filtering)        int readPos;            // position from which source pixels are read        byte[] compressedLines; // the resultant compressed lines        int nCompressed;        // how big is the compressed area?        byte[] pixels;          // storage area for byte-sized pixels        int[] iPixels;          // storage area for int-sized pixels        Deflater scrunch = new Deflater( compressionLevel );        ByteArrayOutputStream outBytes =             new ByteArrayOutputStream(1024);                    DeflaterOutputStream compBytes =            new DeflaterOutputStream( outBytes, scrunch );        if (bytesPerPixel == 1)        {            writePalette( (IndexColorModel) image.getColorModel() );        }        try        {            while (rowsLeft > 0)            {                nRows = Math.min( 32767 / (width*(bytesPerPixel+1)), rowsLeft );                // nRows = rowsLeft;                /*                 * Create a data chunk. scanLines adds "nRows" for                 * the filter bytes.                 */                scanLines = new byte[width * nRows * bytesPerPixel +  nRows];                if (filter == FILTER_SUB)                {                    leftBytes = new byte[16];                }                if (filter == FILTER_UP)                {                    priorRow = new byte[width*bytesPerPixel];                }                if (tType == DataBuffer.TYPE_BYTE)                {                    pixels = (byte[]) wRaster.getDataElements(                        0, startRow, width, nRows, null );                    iPixels = null;                }                else                {                    iPixels = (int[]) wRaster.getDataElements(                        0, startRow, width, nRows, null );                    pixels = null;                }                scanPos = 0;                readPos = 0;                startPos = 1;                for (int i=0; i<width*nRows; i++)                {                    if (i % width == 0)                    {                        scanLines[scanPos++] = (byte) filter;                         startPos = scanPos;                    }                    if (bytesPerPixel == 1)                    {                        scanLines[scanPos++] = pixels[readPos++];                    }                    else if (tType == DataBuffer.TYPE_BYTE)                    {                        scanLines[scanPos++] = pixels[readPos++];                        scanLines[scanPos++] = pixels[readPos++];                        scanLines[scanPos++] = pixels[readPos++];                        if (encodeAlpha)                        {                            scanLines[scanPos++] = pixels[readPos++];                        }                        else                        {                            readPos++;                        }                    }                    else                    {                        scanLines[scanPos++] = (byte) ((iPixels[readPos] >> 16) & 0xff);                        scanLines[scanPos++] = (byte) ((iPixels[readPos] >>  8) & 0xff);                        scanLines[scanPos++] = (byte) ((iPixels[readPos]      ) & 0xff);                        if (encodeAlpha)						{                            scanLines[scanPos++] = (byte) ((iPixels[readPos] >> 24) & 0xff );                        }                        readPos++;                    }                    if ((i % width == width-1) && (filter != FILTER_NONE))                    {                        if (filter == FILTER_SUB)                        {                            filterSub( scanLines, startPos, width );                        }                        if (filter == FILTER_UP)                        {                            filterUp( scanLines, startPos, width );                        }                    }                }                /*                 * Write these lines to the output area                 */                compBytes.write( scanLines, 0, scanPos );                startRow += nRows;                rowsLeft -= nRows;            }            compBytes.close();            /*             * Write the compressed bytes             */            compressedLines = outBytes.toByteArray();            nCompressed = compressedLines.length;            crc.reset();            bytePos = writeInt4( nCompressed, bytePos );            bytePos = writeString("IDAT", bytePos );            crc.update("IDAT".getBytes());            bytePos = writeBytes( compressedLines, nCompressed, bytePos );            crc.update( compressedLines, 0, nCompressed );            crcValue = crc.getValue();            bytePos = writeInt4( (int) crcValue, bytePos );            scrunch.finish();            return true;        }        catch (IOException e)        {            System.err.println( e.toString());            return false;        }    }}

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
成人看片黄a免费看在线| 欧美日韩aaaaa| 欧美日本一区二区三区四区| 久久综合九色综合97_久久久| 18成人在线观看| 国产一区二区三区精品欧美日韩一区二区三区 | 成人午夜激情片| 欧美日韩一级黄| 综合电影一区二区三区 | 欧美日韩久久久| 国产精品久久久久久亚洲毛片| 日本aⅴ免费视频一区二区三区| 91视视频在线观看入口直接观看www| 日韩欧美国产三级| 亚洲一区二区三区视频在线播放| 国产成人精品aa毛片| 精品毛片乱码1区2区3区| 亚洲午夜影视影院在线观看| av电影在线观看不卡| 久久蜜桃av一区二区天堂 | 日韩一区二区三区三四区视频在线观看| 亚洲手机成人高清视频| 波多野结衣一区二区三区| 精品sm在线观看| 国产一区二区三区四区五区美女| 日韩精品专区在线| 免费三级欧美电影| 日韩一区二区在线观看视频| 丝袜国产日韩另类美女| 91精品一区二区三区在线观看| 亚洲午夜精品网| 精品视频资源站| 丝瓜av网站精品一区二区| 欧美日韩亚洲综合| 日韩在线a电影| 日韩欧美在线网站| 久久国内精品视频| 欧美精品一区在线观看| 国产精品中文欧美| 国产精品女同互慰在线看 | 国产精品1区2区3区在线观看| 精品乱码亚洲一区二区不卡| 国产一区二区视频在线播放| 久久久久久久久久久99999| 国产成人精品三级| 国产精品久久午夜夜伦鲁鲁| 91丨porny丨户外露出| 一区二区三区四区在线| 欧美三级电影在线看| 秋霞av亚洲一区二区三| 欧美精品一区二区三区蜜臀| 不卡av在线网| 亚洲一区二区三区视频在线| 欧美一级一区二区| 国产精品一级片| 国产精品久久久久久久久动漫| 色视频成人在线观看免| 日日夜夜免费精品| 国产网红主播福利一区二区| 色呦呦一区二区三区| 日韩在线观看一区二区| 国产亚洲综合性久久久影院| 欧美影院一区二区| 精品在线播放免费| 亚洲欧美另类小说| 精品国产乱子伦一区| www.在线欧美| 免费成人在线网站| **欧美大码日韩| 日韩欧美在线综合网| 色一情一乱一乱一91av| 美腿丝袜亚洲综合| 亚洲欧美韩国综合色| 亚洲精品一区二区三区精华液| 91蜜桃传媒精品久久久一区二区| 免费精品视频最新在线| 亚洲精品五月天| www欧美成人18+| 欧美日韩一区成人| 成人性生交大片| 日本sm残虐另类| 一区二区免费在线| 中文文精品字幕一区二区| 欧美日韩高清一区二区| 波多野结衣亚洲| 国内精品国产三级国产a久久| 伊人开心综合网| 日本一区二区三区在线观看| 91精品国产丝袜白色高跟鞋| 色综合咪咪久久| 成人综合在线观看| 久久国产精品免费| 日韩成人免费电影| 一区二区三区91| 亚洲久本草在线中文字幕| 久久久久久久久蜜桃| 91精品国产综合久久国产大片| 99久久精品免费精品国产| 国产一区二区主播在线| 日日夜夜精品视频天天综合网| 一区二区国产视频| 亚洲三级电影全部在线观看高清| 久久先锋资源网| 欧美一区二区播放| 欧美日韩高清一区二区不卡| 欧美日韩亚洲综合一区二区三区| 色综合中文字幕| 成+人+亚洲+综合天堂| 国产成人午夜精品影院观看视频| 免费观看在线综合| 男女男精品视频| 日韩成人dvd| 日韩avvvv在线播放| 日韩av网站免费在线| 日韩精品电影在线观看| 日韩中文欧美在线| 蜜臀a∨国产成人精品| 奇米影视在线99精品| 日韩国产成人精品| 麻豆国产欧美一区二区三区| 青草av.久久免费一区| 毛片av一区二区| 久久不见久久见免费视频1| 久久精品999| 国产高清视频一区| 丁香激情综合国产| 99re8在线精品视频免费播放| 99久久婷婷国产综合精品电影| 色婷婷久久久久swag精品| 91国内精品野花午夜精品| 亚洲男人电影天堂| 国产亚洲精品aa午夜观看| 久久久国产精品午夜一区ai换脸 | 91一区二区三区在线观看| 97超碰欧美中文字幕| 91传媒视频在线播放| 欧美久久久一区| 日韩三级在线免费观看| 久久综合99re88久久爱| 中文字幕一区二区三区不卡 | 日本最新不卡在线| 国内精品久久久久影院色| 成人动漫中文字幕| 91国产丝袜在线播放| 日韩欧美在线网站| 中文字幕一区二区在线播放| 亚洲成人tv网| 国产精品一区免费视频| 欧美自拍丝袜亚洲| 日韩欧美电影一二三| 中文字幕一区二区三区四区| 亚洲综合色网站| 91精品婷婷国产综合久久| 亚洲成人午夜影院| 美国一区二区三区在线播放| 国产精品一区在线观看乱码 | 成人ar影院免费观看视频| 欧美最新大片在线看| 欧美一个色资源| 亚洲欧洲国产日韩| 日韩高清在线一区| av欧美精品.com| 91精品久久久久久蜜臀| 亚洲一区二区四区蜜桃| 日韩视频免费观看高清完整版| 777a∨成人精品桃花网| 精品国一区二区三区| 自拍偷拍欧美激情| 另类中文字幕网| 欧洲激情一区二区| 国产亚洲综合色| 秋霞电影网一区二区| 色哟哟精品一区| 欧美激情一区二区三区| 男女男精品视频| 欧美日产国产精品| 亚洲视频一二区| 从欧美一区二区三区| 欧美成人三级电影在线| 偷窥国产亚洲免费视频| 99精品视频一区二区| 久久久精品人体av艺术| 美洲天堂一区二卡三卡四卡视频| 91久久国产综合久久| 亚洲视频在线一区| 成人午夜电影网站| 欧美—级在线免费片| 久久91精品国产91久久小草| 6080午夜不卡| 肉肉av福利一精品导航| 欧美色综合天天久久综合精品| 一区在线播放视频| proumb性欧美在线观看| 国产日韩精品一区二区浪潮av| 理论片日本一区| 精品国产乱码久久久久久牛牛 | 欧美在线999| 亚洲激情中文1区| 91一区二区三区在线观看| 亚洲欧洲精品成人久久奇米网|