Esempio n. 1
0
        public void ShouldReadIDAT()
        {
            string filePath = @"../../../Data/Plan.png";
            IDAT   idat     = new IDAT(PNGFile.Read(filePath)[4]);

            Assert.AreEqual("IDAT", idat.Type);
        }
Esempio n. 2
0
        public void ShouldConcatOneIDAT()
        {
            IDAT        idat  = new IDAT(new byte[] { 1, 5, 7 }, 0);
            List <IDAT> idats = new List <IDAT> {
                idat
            };

            byte[] result = IDATConverter.ConcatToBytes(idats);
            Assert.AreEqual(new byte[] { 1, 5, 7 }, result);
        }