⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 gifextension.java

📁 Mapserver的一个java客户端,包含两个applet支持地图显示。
💻 JAVA
字号:
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -