chunk_offs.java

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

JAVA
39
字号
// Copyright (C) 1998, 1999, 2001 Chris Nokleberg// Please see included LICENSE.TXTpackage com.sixlegs.image.png;import java.io.IOException;final class Chunk_oFFsextends Chunk{    Chunk_oFFs ()    {        super(oFFs);    }    protected boolean multipleOK()    {        return false;    }    protected boolean beforeIDAT()    {        return true;    }    protected void readData()    throws IOException    {        int imagePositionX = in_data.readInt();        int imagePositionY = in_data.readInt();        int unit = in_data.readUnsignedByte();        if (unit != PngImage.UNIT_PIXEL && unit != PngImage.UNIT_MICROMETER)            throw new PngExceptionSoft("Illegal oFFs chunk unit specifier: " + unit);        img.data.properties.put("image position x", new Integer(imagePositionX));        img.data.properties.put("image position y", new Integer(imagePositionY));        img.data.properties.put("image position unit", new Integer(unit));    }    }

⌨️ 快捷键说明

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