Skip crop on 0 crop

This commit is contained in:
Georgy Litvinov 2020-12-12 22:07:13 +01:00
parent 7af01f3c4b
commit cb2849c4f2

View file

@ -229,6 +229,9 @@ public class BinaryGraphicsDocument implements OutputFile {
}
extractPPI();
int[] offsets = getOffsets(style);
if (offsets[0] == 0 && offsets[1] == 0 && offsets[2] == 0 && offsets[3] == 0) {
return;
}
ByteArrayInputStream bis = new ByteArrayInputStream(blob);
try {
@ -251,6 +254,7 @@ public class BinaryGraphicsDocument implements OutputFile {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (RasterFormatException e ) {
System.out.println(e.getLocalizedMessage());
e.printStackTrace();
}