Package com.drew.imaging.png

Source Code of com.drew.imaging.png.PngChunkReaderTest

package com.drew.imaging.png;

import com.drew.lang.Iterables;
import com.drew.lang.StreamReader;
import org.junit.Test;

import java.io.FileInputStream;
import java.io.IOException;
import java.util.List;

import static org.junit.Assert.assertEquals;

/**
* @author Drew Noakes http://drewnoakes.com
*/
public class PngChunkReaderTest
{
    public static List<PngChunk> processFile(String filePath) throws PngProcessingException, IOException
    {
        FileInputStream inputStream = null;
        try {
            inputStream = new FileInputStream(filePath);
            return Iterables.toList(new PngChunkReader().extract(new StreamReader(inputStream), null));
        } finally {
            if (inputStream != null) {
                inputStream.close();
            }
        }
    }

    @Test
    public void testExtractMspaint() throws Exception
    {
        List<PngChunk> chunks = processFile("Tests/Data/mspaint-8x10.png");

        assertEquals(6, chunks.size());

        assertEquals(PngChunkType.IHDR, chunks.get(0).getType());
        assertEquals(13, chunks.get(0).getBytes().length);

        assertEquals(PngChunkType.sRGB, chunks.get(1).getType());
        assertEquals(1, chunks.get(1).getBytes().length);

        assertEquals(PngChunkType.gAMA, chunks.get(2).getType());
        assertEquals(4, chunks.get(2).getBytes().length);

        assertEquals(PngChunkType.pHYs, chunks.get(3).getType());
        assertEquals(9, chunks.get(3).getBytes().length);

        assertEquals(PngChunkType.IDAT, chunks.get(4).getType());
        assertEquals(17, chunks.get(4).getBytes().length);

        assertEquals(PngChunkType.IEND, chunks.get(5).getType());
        assertEquals(0, chunks.get(5).getBytes().length);
    }

    @Test
    public void testExtractPhotoshop() throws Exception
    {
        List<PngChunk> chunks = processFile("Tests/Data/photoshop-8x12-rgba32.png");

        assertEquals(5, chunks.size());

        assertEquals(PngChunkType.IHDR, chunks.get(0).getType());
        assertEquals(13, chunks.get(0).getBytes().length);

        assertEquals(PngChunkType.tEXt, chunks.get(1).getType());
        assertEquals(25, chunks.get(1).getBytes().length);

        assertEquals(PngChunkType.iTXt, chunks.get(2).getType());
        assertEquals(802, chunks.get(2).getBytes().length);

        assertEquals(PngChunkType.IDAT, chunks.get(3).getType());
        assertEquals(130, chunks.get(3).getBytes().length);

        assertEquals(PngChunkType.IEND, chunks.get(4).getType());
        assertEquals(0, chunks.get(4).getBytes().length);
    }
}
TOP

Related Classes of com.drew.imaging.png.PngChunkReaderTest

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.