Skip to content
Soumya Kanti Kar edited this page Apr 4, 2018 · 3 revisions

Editor allows to edit the bitmaps. Depending on the method being called, it can either modify the original bitmap or create a new modified bitmap.

crop(context: Context, bitBeautyBitmap: BitBeautyBitmap, cropRect: Rect): BitBeautyBitmap?
Crop out a section from the original bitmap defined by the rect and generate a new bitmap out of it.

crop(context: Context, bitBeautyBitmap: BitBeautyBitmap, point: PointF, radius:Float): BitBeautyBitmap?
Crop out a section from the original bitmap in a circular format of the provided radius.

clone(context: Context, bitBeautyBitmap: BitBeautyBitmap): BitBeautyBitmap?
Create a cloned BitBeautyBitmap object from the provided one.

erase(bitBeautyBitmap: BitBeautyBitmap, @ColorInt withColor:Int)
Erase the content of the bitmap with the color specified.

rotate(context: Context, bitBeautyBitmap: BitBeautyBitmap, degree:Float): BitBeautyBitmap?
Rotates the bitmap in the degree provided. Note, this would create a new bitmap which would be larger in size compared to the original bitmap. Example, a 300 x 300 source image on rotate would create a 424 x 424 bitmap.

Clone this wiki locally