draw a spot in the bitmap image
Anybody please help me with some hints to draw a spot(small filled circle) on a bitmap im开发者_Python百科age.
Just create a new Canvas on your Bitmap, create a new Paint
object and call drawCircle(float cx, float cy, float radius, Paint paint)
on your canvas using the defined paint variable.
精彩评论