Package org.apache.sanselan.common

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


        bos.write(0xff & (pixel >> 16));
        bos.write(0xff & (pixel >> 8));
        bos.write(0xff & pixel);
      }
    }
    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(0xff & (pixel >> 8));
        bos.write(0xff & pixel);
      }
    }
    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 = 0xff0000ff;
    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 + 4*16*16 + 4 + 4 + 16*16/8);
    bos.write4Bytes(IcnsType.ICNS_16x16_32BIT_IMAGE.getType());
    bos.write4Bytes(4 + 4 + 4*16*16);
    for (int y = 0; y < 16; y++)
    {
View Full Code Here

    final int background = 0xff0000ff;
    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 + 4*16*16 + 4 + 4 + 16*16/8);
    bos.write4Bytes(IcnsType.ICNS_16x16_32BIT_IMAGE.getType());
    bos.write4Bytes(4 + 4 + 4*16*16);
    for (int y = 0; y < 16; y++)
    {
      for (int x = 0; x < 16; x++)
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 + 4*16*16 + 4 + 4 + 16*16/8);
    bos.write4Bytes(IcnsType.ICNS_16x16_32BIT_IMAGE.getType());
    bos.write4Bytes(4 + 4 + 4*16*16);
    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 + 4*16*16 + 4 + 4 + 16*16/8);
    bos.write4Bytes(IcnsType.ICNS_16x16_32BIT_IMAGE.getType());
    bos.write4Bytes(4 + 4 + 4*16*16);
    for (int y = 0; y < 16; y++)
    {
      for (int x = 0; x < 16; x++)
      {
        // argb, a ignored
View Full Code Here

        bos.write(0xff & (pixel >> 16));
        bos.write(0xff & (pixel >> 8));
        bos.write(0xff & pixel);
      }
    }
    bos.write4Bytes(IcnsType.ICNS_16x16_1BIT_IMAGE_AND_MASK.getType());
    bos.write4Bytes(4 + 4 + 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(0xff & (pixel >> 8));
        bos.write(0xff & pixel);
      }
    }
    bos.write4Bytes(IcnsType.ICNS_16x16_1BIT_IMAGE_AND_MASK.getType());
    bos.write4Bytes(4 + 4 + 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 = 0xff0000ff;
    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 + 4*16*16);
    bos.write4Bytes(IcnsType.ICNS_16x16_32BIT_IMAGE.getType());
    bos.write4Bytes(4 + 4 + 4*16*16);
    for (int y = 0; y < 16; y++)
    {
View Full Code Here

    final int background = 0xff0000ff;
    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 + 4*16*16);
    bos.write4Bytes(IcnsType.ICNS_16x16_32BIT_IMAGE.getType());
    bos.write4Bytes(4 + 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.