¡@

Home 

2014/10/16 ¤W¤È 08:11:46

android Programming Glossary: cropwidth

How to crop image in android

http://stackoverflow.com/questions/6464123/how-to-crop-image-in-android

RectF imageRect new RectF 0 0 width height make the default size about 4 5 of the width or height int cropWidth Math.min width height 4 5 int cropHeight cropWidth if mAspectX 0 mAspectY 0 if mAspectX mAspectY cropHeight cropWidth mAspectY.. height make the default size about 4 5 of the width or height int cropWidth Math.min width height 4 5 int cropHeight cropWidth if mAspectX 0 mAspectY 0 if mAspectX mAspectY cropHeight cropWidth mAspectY mAspectX else cropWidth cropHeight mAspectX.. cropWidth Math.min width height 4 5 int cropHeight cropWidth if mAspectX 0 mAspectY 0 if mAspectX mAspectY cropHeight cropWidth mAspectY mAspectX else cropWidth cropHeight mAspectX mAspectY int x width cropWidth 2 int y height cropHeight 2 RectF cropRect..