Package org.boris.pecoff4j.resources

Examples of org.boris.pecoff4j.resources.BitmapFileHeader


        return bm;
    }

    public static BitmapFileHeader readBitmapFileHeader(IDataReader dr)
            throws IOException {
        BitmapFileHeader bfh = new BitmapFileHeader();
        bfh.setType(dr.readWord());
        bfh.setSize(dr.readDoubleWord());
        bfh.setReserved1(dr.readWord());
        bfh.setReserved2(dr.readWord());
        bfh.setOffBits(dr.readDoubleWord());

        return bfh;
    }
View Full Code Here

TOP

Related Classes of org.boris.pecoff4j.resources.BitmapFileHeader

Copyright © 2018 www.massapicom. 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.