Package org.apache.sanselan.common

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


          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++)
      {
        if (image[y][x] != 0)
View Full Code Here

        else
          bos.write(0x00);
      }
    }
    // 1 BPP mask
    bos.write4Bytes(IcnsType.ICNS_16x16_1BIT_IMAGE_AND_MASK.getType());
    bos.write4Bytes(4 + 4 + 2*16*16/8);
    // 1 bit image
    for (int y = 0; y < 16; y++)
    {
      for (int x = 0; x < 16; x += 8)
View Full Code Here

          bos.write(0x00);
      }
    }
    // 1 BPP mask
    bos.write4Bytes(IcnsType.ICNS_16x16_1BIT_IMAGE_AND_MASK.getType());
    bos.write4Bytes(4 + 4 + 2*16*16/8);
    // 1 bit image
    for (int y = 0; y < 16; y++)
    {
      for (int x = 0; x < 16; x += 8)
      {
View Full Code Here

    final int foreground = 0xff000000;
    final int background = 0x00cccccc;
    ByteArrayOutputStream baos = new ByteArrayOutputStream();
    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++)
View Full Code Here

    final int background = 0x00cccccc;
    ByteArrayOutputStream baos = new ByteArrayOutputStream();
    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++)
    {
View Full Code Here

    ByteArrayOutputStream baos = new ByteArrayOutputStream();
    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

    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

        else
          bos.write(43);
      }
    }
    // 1 BPP mask
    bos.write4Bytes(IcnsType.ICNS_16x16_1BIT_IMAGE_AND_MASK.getType());
    bos.write4Bytes(4 + 4 + 2*16*16/8);
    // 1 bit image
    for (int y = 0; y < 16; y++)
    {
      for (int x = 0; x < 16; x += 8)
View Full Code Here

          bos.write(43);
      }
    }
    // 1 BPP mask
    bos.write4Bytes(IcnsType.ICNS_16x16_1BIT_IMAGE_AND_MASK.getType());
    bos.write4Bytes(4 + 4 + 2*16*16/8);
    // 1 bit image
    for (int y = 0; y < 16; y++)
    {
      for (int x = 0; x < 16; x += 8)
      {
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.