Skip crop on 0 crop
This commit is contained in:
parent
7af01f3c4b
commit
cb2849c4f2
1 changed files with 4 additions and 0 deletions
|
@ -229,6 +229,9 @@ public class BinaryGraphicsDocument implements OutputFile {
|
||||||
}
|
}
|
||||||
extractPPI();
|
extractPPI();
|
||||||
int[] offsets = getOffsets(style);
|
int[] offsets = getOffsets(style);
|
||||||
|
if (offsets[0] == 0 && offsets[1] == 0 && offsets[2] == 0 && offsets[3] == 0) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
ByteArrayInputStream bis = new ByteArrayInputStream(blob);
|
ByteArrayInputStream bis = new ByteArrayInputStream(blob);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
@ -251,6 +254,7 @@ public class BinaryGraphicsDocument implements OutputFile {
|
||||||
// TODO Auto-generated catch block
|
// TODO Auto-generated catch block
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
} catch (RasterFormatException e ) {
|
} catch (RasterFormatException e ) {
|
||||||
|
System.out.println(e.getLocalizedMessage());
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue