mirror of
https://github.com/webmproject/libwebp.git
synced 2024-12-26 05:38:22 +01:00
d041efae00
for the swig-impaired Change-Id: I10711c057c11bd9e59bc382fe3c6337883f5c4a6
35 lines
885 B
Plaintext
35 lines
885 B
Plaintext
Building:
|
|
=========
|
|
|
|
JNI SWIG bindings:
|
|
------------------
|
|
$ gcc -shared -fPIC -fno-strict-aliasing -O2 \
|
|
-I/path/to/your/jdk/includes \
|
|
libwebp_java_wrap.c \
|
|
-lwebp \
|
|
-o libwebp_jni.so
|
|
|
|
-------------------------------------- BEGIN PSEUDO EXAMPLE
|
|
import com.google.webp.*;
|
|
import java.io.*;
|
|
|
|
public class libwebp_jni_example {
|
|
static {
|
|
System.loadLibrary("webp_jni");
|
|
}
|
|
|
|
/**
|
|
* usage: java -cp libwebp.jar:.
|
|
* libwebp_jni_example <input.webp> <output.ppm>
|
|
*/
|
|
public static void main(String argv[]) {
|
|
final int version = libwebp.WebPGetDecoderVersion();
|
|
|
|
System.out.println("libwebp version: " + Integer.toHexString(version));
|
|
}
|
|
}
|
|
-------------------------------------- END PSEUDO EXAMPLE
|
|
|
|
$ javac -cp libwebp.jar libwebp_jni_example.java
|
|
$ java -Djava.library.path=. -cp libwebp.jar:. libwebp_jni_example
|