Skip to content
This repository has been archived by the owner on Jan 10, 2023. It is now read-only.
/ QuickBitmap Public archive

A simple Android-Bitmap utility library provides some useful functions: BitmapPool (based on LruCache and DiskLruCache), BitmapIO (supports PNG, JPEG, BMP, WEBP), BitmapChanger (can clip, zoom, flip, rotate, filling and so on).

License

Notifications You must be signed in to change notification settings

Tianscar/QuickBitmap

Repository files navigation

简体中文

QuickBitmap

JavaDoc

An android-bitmap toolkit provides some useful functions e.g.

  • BitmapPool
    Cache pool for Bitmap. Based on LruCache and DiskLruCache.
  • BitmapEncoder/Decoder
    Supports PNG, JPEG, BMP, WEBP.
  • BitmapChanger
    Can clip, zoom, flip, rotate, filling bitmap and so on.
    Seed filling function using C/C++ to achieve, performance is guaranteed.

To get a Git project into your build (gradle):

  • Step 1. Add the JitPack repository to your build file
    Add it in your root build.gradle at the end of repositories:
allprojects {
        repositories {
		...
		maven { url 'https://jitpack.io' }
	}
}
  • Step 2. Add the dependency:
dependencies {
	...
	implementation 'com.github.tianscar:quickbitmap:1.0.2.6'
}

License

MIT © Tianscar

About

A simple Android-Bitmap utility library provides some useful functions: BitmapPool (based on LruCache and DiskLruCache), BitmapIO (supports PNG, JPEG, BMP, WEBP), BitmapChanger (can clip, zoom, flip, rotate, filling and so on).

Topics

Resources

License

Stars

Watchers

Forks