chunk_phys.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_pHYsextends Chunk{    Chunk_pHYs()    {        super(pHYs);    }    protected boolean multipleOK()    {        return false;    }    protected boolean beforeIDAT()    {        return true;    }    protected void readData()    throws IOException    {        long pixelsPerUnitX = in_data.readUnsignedInt();        long pixelsPerUnitY = in_data.readUnsignedInt();        int unit = in_data.readUnsignedByte();        if (unit != PngImage.UNIT_UNKNOWN && unit != PngImage.UNIT_METER)            throw new PngExceptionSoft("Illegal pHYs chunk unit specifier: " + unit);        img.data.properties.put("pixel dimensions x", new Long(pixelsPerUnitX));        img.data.properties.put("pixel dimensions y", new Long(pixelsPerUnitY));        img.data.properties.put("pixel dimensions unit", new Integer(unit));    }    }

⌨️ 快捷键说明

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