gifextension.java

来自「Mapserver的一个java客户端,包含两个applet支持地图显示。」· Java 代码 · 共 32 行

JAVA
32
字号
// Copyright (C) 1998, 1999, 2001 Chris Nokleberg// Please see included LICENSE.TXTpackage com.sixlegs.image.png;/** * Interface to GIF Application Extension chunks (gIFx), * which constains application-specific information converted * from GIF89a files. * @see PngImage#getGifExtensions */public interface GifExtension{    /**      * Returns the Application Identifier of this GifExtension,     * which identifies the application that created the extension.     */    String getIdentifier();    /**      * Returns a the Authentication Code of this GifExtension,     * which may be used to further validate the extension.     */    byte[] getAuthenticationCode();    /**     * Returns the application-specific data of this GifExtension, which     * is not defined by the GIF specification.     */    byte[] getData();}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?