Package org.boris.pecoff4j.resources

Examples of org.boris.pecoff4j.resources.Bitmap


import org.boris.pecoff4j.resources.VersionInfo;

public class ResourceParser
{
    public static Bitmap readBitmap(IDataReader dr) throws IOException {
        Bitmap bm = new Bitmap();
        bm.setFileHeader(readBitmapFileHeader(dr));
        bm.setInfoHeader(readBitmapInfoHeader(dr));

        return bm;
    }
View Full Code Here

TOP

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

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.