(InputStream inputStream)
| 943 | /// |
| 944 | /// true if PNG, false otherwise |
| 945 | public static boolean isPNG(InputStream inputStream) throws IOException { |
| 946 | String type = Util.guessMimeType(inputStream); |
| 947 | return "image/png".equals(type); |
| 948 | } |
| 949 | |
| 950 | private HashMap<Dimension, Object> getScaleCache() { |
| 951 | if (scaleCache == null) { |
no test coverage detected