()
| 43 | public native int getHeight(); |
| 44 | |
| 45 | public void close() { |
| 46 | if (handle != 0) { |
| 47 | liq_image_destroy(handle); |
| 48 | handle = 0; |
| 49 | } |
| 50 | } |
| 51 | |
| 52 | private static long handleFromImage(PngQuant attr, BufferedImage image) { |
| 53 | // The JNI wrapper will accept non-premultiplied ABGR and BGR only. |
no test coverage detected