mf.set(dr.readUtf(length));
return mf;
}
public static RGBQuad readRGB(IDataReader dr) throws IOException {
RGBQuad r = new RGBQuad();
r.setBlue(dr.readByte());
r.setGreen(dr.readByte());
r.setRed(dr.readByte());
r.setReserved(dr.readByte());
return r;
}