use of uk.me.parabola.imgfmt.app.BufferedImgFileWriter in project mkgmap by openstreetmap.
the class DEMFile method write.
public void write() {
ImgFileWriter w = getWriter();
if (w instanceof BufferedImgFileWriter) {
// increase file size limit to 256MB, no idea what the limit is
((BufferedImgFileWriter) w).setMaxSize(0xfffffff);
}
getHeader().writeHeader(getWriter());
}
Aggregations