mirror of https://github.com/apache/poi.git
Avoid NullPointerException if an image cannot be read
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1674952 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
208955bc8c
commit
1201332d48
|
@ -100,6 +100,10 @@ public class XSLFImageRenderer {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(img == null) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
int iw = img.getWidth();
|
int iw = img.getWidth();
|
||||||
int ih = img.getHeight();
|
int ih = img.getHeight();
|
||||||
|
|
||||||
|
|
Binary file not shown.
Loading…
Reference in New Issue