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;
}