Examples of BitsToByteInputStream


Examples of org.apache.commons.imaging.common.mylzw.BitsToByteInputStream

                        "PSD: Missing Image Data");

                final byte[] unpacked = new PackBits().decompress(packed, width);
                final InputStream bais = new ByteArrayInputStream(unpacked);
                final MyBitInputStream mbis = new MyBitInputStream(bais, ByteOrder.BIG_ENDIAN);
                BitsToByteInputStream bbis = null;
                boolean canThrow = false;
                try {
                    bbis = new BitsToByteInputStream(mbis, 8); // we want all samples to be bytes
                    final int[] scanline = bbis.readBitsArray(depth, width);
                    data[channel][y] = scanline;
                    canThrow = true;
                } finally {
                    IoUtils.closeQuietly(canThrow, bbis);
                }
View Full Code Here

Examples of org.apache.commons.imaging.common.mylzw.BitsToByteInputStream

        final int channelCount = dataParser.getBasicChannelsCount();
        final int depth = header.depth;
        final MyBitInputStream mbis = new MyBitInputStream(is, ByteOrder.BIG_ENDIAN);
        // we want all samples to be bytes
        BitsToByteInputStream bbis = null;
        boolean canThrow = false;
        try {
            bbis = new BitsToByteInputStream(mbis, 8);

            final int[][][] data = new int[channelCount][height][width];
            for (int channel = 0; channel < channelCount; channel++) {
                for (int y = 0; y < height; y++) {
                    for (int x = 0; x < width; x++) {
                        final int b = bbis.readBits(depth);
   
                        data[channel][y][x] = (byte) b;
                    }
                }
            }
View Full Code Here

Examples of org.apache.sanselan.common.mylzw.BitsToByteInputStream

        bfp.setDebug(false);

        int channel_count = dataParser.getBasicChannelsCount();
        int depth = header.Depth;
        MyBitInputStream mbis = new MyBitInputStream(is, BYTE_ORDER_MSB);
        BitsToByteInputStream bbis = new BitsToByteInputStream(mbis, 8); // we want all samples to be bytes

        int data[][][] = new int[channel_count][height][width];
        for (int channel = 0; channel < channel_count; channel++)
            for (int y = 0; y < height; y++)
                for (int x = 0; x < width; x++)
                {
                    int b = bbis.readBits(depth);

                    data[channel][y][x] = (byte) b;
                }

        dataParser.parseData(data, bi, imageContents);
View Full Code Here

Examples of org.apache.sanselan.common.mylzw.BitsToByteInputStream

                byte unpacked[] = new PackBits().decompress(packed, width);
                InputStream bais = new ByteArrayInputStream(unpacked);
                MyBitInputStream mbis = new MyBitInputStream(bais,
                        BYTE_ORDER_MSB);
                BitsToByteInputStream bbis = new BitsToByteInputStream(mbis, 8); // we want all samples to be bytes
                int scanline[] = bbis.readBitsArray(depth, width);
                data[channel][y] = scanline;

            }

        dataParser.parseData(data, bi, imageContents);
View Full Code Here

Examples of org.apache.sanselan.common.mylzw.BitsToByteInputStream

    bfp.setDebug(false);

    int channel_count = dataParser.getBasicChannelsCount();
    int depth = header.Depth;
    MyBitInputStream mbis = new MyBitInputStream(is, BYTE_ORDER_MSB);
    BitsToByteInputStream bbis = new BitsToByteInputStream(mbis, 8); // we want all samples to be bytes

    int data[][][] = new int[channel_count][height][width];
    for (int channel = 0; channel < channel_count; channel++)
      for (int y = 0; y < height; y++)
        for (int x = 0; x < width; x++)
        {
          int b = bbis.readBits(depth);

          data[channel][y][x] = (byte) b;
        }

    dataParser.parseData(data, bi, imageContents);
View Full Code Here

Examples of org.apache.sanselan.common.mylzw.BitsToByteInputStream

        byte unpacked[] = new PackBits().decompress(packed, width);
        InputStream bais = new ByteArrayInputStream(unpacked);
        MyBitInputStream mbis = new MyBitInputStream(bais,
            BYTE_ORDER_MSB);
        BitsToByteInputStream bbis = new BitsToByteInputStream(mbis, 8); // we want all samples to be bytes
        int scanline[] = bbis.readBitsArray(depth, width);
        data[channel][y] = scanline;

      }

    dataParser.parseData(data, bi, imageContents);
View Full Code Here

Examples of org.apache.sanselan.common.mylzw.BitsToByteInputStream

        bfp.setDebug(false);

        int channel_count = dataParser.getBasicChannelsCount();
        int depth = header.Depth;
        MyBitInputStream mbis = new MyBitInputStream(is, BYTE_ORDER_MSB);
        BitsToByteInputStream bbis = new BitsToByteInputStream(mbis, 8); // we want all samples to be bytes

        int data[][][] = new int[channel_count][height][width];
        for (int channel = 0; channel < channel_count; channel++)
            for (int y = 0; y < height; y++)
                for (int x = 0; x < width; x++)
                {
                    int b = bbis.readBits(depth);

                    data[channel][y][x] = (byte) b;
                }

        dataParser.parseData(data, bi, imageContents);
View Full Code Here

Examples of org.apache.sanselan.common.mylzw.BitsToByteInputStream

                byte unpacked[] = new PackBits().decompress(packed, width);
                InputStream bais = new ByteArrayInputStream(unpacked);
                MyBitInputStream mbis = new MyBitInputStream(bais,
                        BYTE_ORDER_MSB);
                BitsToByteInputStream bbis = new BitsToByteInputStream(mbis, 8); // we want all samples to be bytes
                int scanline[] = bbis.readBitsArray(depth, width);
                data[channel][y] = scanline;

            }

        dataParser.parseData(data, bi, imageContents);
View Full Code Here

Examples of org.apache.sanselan.common.mylzw.BitsToByteInputStream

        bfp.setDebug(false);

        int channel_count = dataParser.getBasicChannelsCount();
        int depth = header.Depth;
        MyBitInputStream mbis = new MyBitInputStream(is, BYTE_ORDER_MSB);
        BitsToByteInputStream bbis = new BitsToByteInputStream(mbis, 8); // we want all samples to be bytes

        int data[][][] = new int[channel_count][height][width];
        for (int channel = 0; channel < channel_count; channel++)
            for (int y = 0; y < height; y++)
                for (int x = 0; x < width; x++)
                {
                    int b = bbis.readBits(depth);

                    data[channel][y][x] = (byte) b;
                }

        dataParser.parseData(data, bi, imageContents);
View Full Code Here

Examples of org.apache.sanselan.common.mylzw.BitsToByteInputStream

                byte unpacked[] = new PackBits().decompress(packed, width);
                InputStream bais = new ByteArrayInputStream(unpacked);
                MyBitInputStream mbis = new MyBitInputStream(bais,
                        BYTE_ORDER_MSB);
                BitsToByteInputStream bbis = new BitsToByteInputStream(mbis, 8); // we want all samples to be bytes
                int scanline[] = bbis.readBitsArray(depth, width);
                data[channel][y] = scanline;

            }

        dataParser.parseData(data, bi, imageContents);
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.