bgra.java 495 B

12345678910111213
  1. public class bgra {
  2. /////////////////////// the bgra library declarations ///////////////
  3. public static native void create(int num);
  4. public static native void createwithsize(int num, int left, int top);
  5. public static native void fill(int num, int color);
  6. public static native int rgb(int r, int g, int b);
  7. public static native void filtersmartzoom3(int num, int typ);
  8. public static native void savetofile(int num, String fn);
  9. public static native void destroy(int num);
  10. }