├── .gitattributes ├── .gitignore ├── JniBitmapOperationsLibrary ├── .classpath ├── .project ├── AndroidManifest.xml ├── build.gradle ├── jni │ ├── Android.mk │ ├── Application.mk │ ├── JniBitmapOperationsLibrary.cpp │ └── do_not_delete_me_i_am_workaround.c ├── proguard-project.txt ├── project.properties └── src │ └── com │ └── jni │ └── bitmap_operations │ └── JniBitmapHolder.java ├── LICENSE ├── README.md ├── demo.gif ├── extra ├── BilinearInterpolation.java └── old original university code for resizing images │ ├── BilinearInterpolation.java │ └── NearestNeighbor.java ├── gradle └── wrapper │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── sample ├── .classpath ├── .project ├── AndroidManifest.xml ├── build.gradle ├── ic_launcher-web.png ├── libs │ └── android-support-v4.jar ├── proguard-project.txt ├── project.properties ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ ├── ic_launcher.png │ │ └── test.png │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ ├── layout │ │ └── activity_main.xml │ ├── menu │ │ └── activity_main.xml │ ├── values-sw600dp │ │ └── dimens.xml │ ├── values-sw720dp-land │ │ └── dimens.xml │ ├── values-v11 │ │ └── styles.xml │ ├── values-v14 │ │ └── styles.xml │ └── values │ │ ├── strings.xml │ │ └── styles.xml └── src │ └── com │ └── example │ └── jnibitmapoperationstest │ ├── BilinearInterpolation.java │ └── MainActivity.java └── settings.gradle /.gitattributes: -------------------------------------------------------------------------------- 1 | gradlew.bat eol=crlf 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidDeveloperLB/AndroidJniBitmapOperations/HEAD/.gitignore -------------------------------------------------------------------------------- /JniBitmapOperationsLibrary/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidDeveloperLB/AndroidJniBitmapOperations/HEAD/JniBitmapOperationsLibrary/.classpath -------------------------------------------------------------------------------- /JniBitmapOperationsLibrary/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidDeveloperLB/AndroidJniBitmapOperations/HEAD/JniBitmapOperationsLibrary/.project -------------------------------------------------------------------------------- /JniBitmapOperationsLibrary/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidDeveloperLB/AndroidJniBitmapOperations/HEAD/JniBitmapOperationsLibrary/AndroidManifest.xml -------------------------------------------------------------------------------- /JniBitmapOperationsLibrary/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidDeveloperLB/AndroidJniBitmapOperations/HEAD/JniBitmapOperationsLibrary/build.gradle -------------------------------------------------------------------------------- /JniBitmapOperationsLibrary/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidDeveloperLB/AndroidJniBitmapOperations/HEAD/JniBitmapOperationsLibrary/jni/Android.mk -------------------------------------------------------------------------------- /JniBitmapOperationsLibrary/jni/Application.mk: -------------------------------------------------------------------------------- 1 | APP_ABI := all 2 | -------------------------------------------------------------------------------- /JniBitmapOperationsLibrary/jni/JniBitmapOperationsLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidDeveloperLB/AndroidJniBitmapOperations/HEAD/JniBitmapOperationsLibrary/jni/JniBitmapOperationsLibrary.cpp -------------------------------------------------------------------------------- /JniBitmapOperationsLibrary/jni/do_not_delete_me_i_am_workaround.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JniBitmapOperationsLibrary/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidDeveloperLB/AndroidJniBitmapOperations/HEAD/JniBitmapOperationsLibrary/proguard-project.txt -------------------------------------------------------------------------------- /JniBitmapOperationsLibrary/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidDeveloperLB/AndroidJniBitmapOperations/HEAD/JniBitmapOperationsLibrary/project.properties -------------------------------------------------------------------------------- /JniBitmapOperationsLibrary/src/com/jni/bitmap_operations/JniBitmapHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidDeveloperLB/AndroidJniBitmapOperations/HEAD/JniBitmapOperationsLibrary/src/com/jni/bitmap_operations/JniBitmapHolder.java -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidDeveloperLB/AndroidJniBitmapOperations/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidDeveloperLB/AndroidJniBitmapOperations/HEAD/README.md -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidDeveloperLB/AndroidJniBitmapOperations/HEAD/demo.gif -------------------------------------------------------------------------------- /extra/BilinearInterpolation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidDeveloperLB/AndroidJniBitmapOperations/HEAD/extra/BilinearInterpolation.java -------------------------------------------------------------------------------- /extra/old original university code for resizing images/BilinearInterpolation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidDeveloperLB/AndroidJniBitmapOperations/HEAD/extra/old original university code for resizing images/BilinearInterpolation.java -------------------------------------------------------------------------------- /extra/old original university code for resizing images/NearestNeighbor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidDeveloperLB/AndroidJniBitmapOperations/HEAD/extra/old original university code for resizing images/NearestNeighbor.java -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidDeveloperLB/AndroidJniBitmapOperations/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidDeveloperLB/AndroidJniBitmapOperations/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidDeveloperLB/AndroidJniBitmapOperations/HEAD/gradlew.bat -------------------------------------------------------------------------------- /sample/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidDeveloperLB/AndroidJniBitmapOperations/HEAD/sample/.classpath -------------------------------------------------------------------------------- /sample/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidDeveloperLB/AndroidJniBitmapOperations/HEAD/sample/.project -------------------------------------------------------------------------------- /sample/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidDeveloperLB/AndroidJniBitmapOperations/HEAD/sample/AndroidManifest.xml -------------------------------------------------------------------------------- /sample/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidDeveloperLB/AndroidJniBitmapOperations/HEAD/sample/build.gradle -------------------------------------------------------------------------------- /sample/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidDeveloperLB/AndroidJniBitmapOperations/HEAD/sample/ic_launcher-web.png -------------------------------------------------------------------------------- /sample/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidDeveloperLB/AndroidJniBitmapOperations/HEAD/sample/libs/android-support-v4.jar -------------------------------------------------------------------------------- /sample/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidDeveloperLB/AndroidJniBitmapOperations/HEAD/sample/proguard-project.txt -------------------------------------------------------------------------------- /sample/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidDeveloperLB/AndroidJniBitmapOperations/HEAD/sample/project.properties -------------------------------------------------------------------------------- /sample/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidDeveloperLB/AndroidJniBitmapOperations/HEAD/sample/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidDeveloperLB/AndroidJniBitmapOperations/HEAD/sample/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidDeveloperLB/AndroidJniBitmapOperations/HEAD/sample/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/res/drawable-xhdpi/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidDeveloperLB/AndroidJniBitmapOperations/HEAD/sample/res/drawable-xhdpi/test.png -------------------------------------------------------------------------------- /sample/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidDeveloperLB/AndroidJniBitmapOperations/HEAD/sample/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidDeveloperLB/AndroidJniBitmapOperations/HEAD/sample/res/layout/activity_main.xml -------------------------------------------------------------------------------- /sample/res/menu/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidDeveloperLB/AndroidJniBitmapOperations/HEAD/sample/res/menu/activity_main.xml -------------------------------------------------------------------------------- /sample/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidDeveloperLB/AndroidJniBitmapOperations/HEAD/sample/res/values-sw600dp/dimens.xml -------------------------------------------------------------------------------- /sample/res/values-sw720dp-land/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidDeveloperLB/AndroidJniBitmapOperations/HEAD/sample/res/values-sw720dp-land/dimens.xml -------------------------------------------------------------------------------- /sample/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidDeveloperLB/AndroidJniBitmapOperations/HEAD/sample/res/values-v11/styles.xml -------------------------------------------------------------------------------- /sample/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidDeveloperLB/AndroidJniBitmapOperations/HEAD/sample/res/values-v14/styles.xml -------------------------------------------------------------------------------- /sample/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidDeveloperLB/AndroidJniBitmapOperations/HEAD/sample/res/values/strings.xml -------------------------------------------------------------------------------- /sample/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidDeveloperLB/AndroidJniBitmapOperations/HEAD/sample/res/values/styles.xml -------------------------------------------------------------------------------- /sample/src/com/example/jnibitmapoperationstest/BilinearInterpolation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidDeveloperLB/AndroidJniBitmapOperations/HEAD/sample/src/com/example/jnibitmapoperationstest/BilinearInterpolation.java -------------------------------------------------------------------------------- /sample/src/com/example/jnibitmapoperationstest/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidDeveloperLB/AndroidJniBitmapOperations/HEAD/sample/src/com/example/jnibitmapoperationstest/MainActivity.java -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':JniBitmapOperationsLibrary', ':sample' --------------------------------------------------------------------------------