CloverBootloader/CloverApp/libimagequant-2.12.6/org/pngquant/LiqObject.java
vectorsigma72 286f7c643f Optimize Theme ability for Clover.app
When this option is enabled all png images will be converted to PNG-8 (8 bit per pixel).
2020-03-07 19:30:59 +01:00

20 lines
421 B
Java

package org.pngquant;
abstract class LiqObject {
static {
// libimagequant.jnilib or libimagequant.so must be in java.library.path
System.loadLibrary("imagequant");
}
long handle;
/**
* Free memory used by the library. The object must not be used after this call.
*/
abstract public void close();
protected void finalize() throws Throwable {
close();
}
}