Examples of write4Bytes()


Examples of org.apache.sanselan.common.BinaryOutputStream.write4Bytes()

    BinaryOutputStream bos = new BinaryOutputStream(baos,
        BinaryOutputStream.BYTE_ORDER_BIG_ENDIAN);
    bos.write4Bytes(IcnsImageParser.ICNS_MAGIC);
    bos.write4Bytes(4 + 4 + 4 + 4 + 16*16 + 4 + 4 + 16*16 + 4 + 4 + 2*16*16/8);
    bos.write4Bytes(IcnsType.ICNS_16x16_8BIT_IMAGE.getType());
    bos.write4Bytes(4 + 4 + 16*16);
    // 8 BPP image
    for (int y = 0; y < 16; y++)
    {
      for (int x = 0; x < 16; x++)
      {
View Full Code Here

Examples of org.apache.sanselan.common.BinaryOutputStream.write4Bytes()

        else
          bos.write(43);
      }
    }
    // 8 BPP alpha mask, some transparent
    bos.write4Bytes(IcnsType.ICNS_16x16_8BIT_MASK.getType());
    bos.write4Bytes(4 + 4 + 16*16);
    for (int y = 0; y < 16; y++)
    {
      for (int x = 0; x < 16; x++)
      {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.