摘要:
1.Bitmap转换为图片字符串Bitmap bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.ic_launcher);ByteArrayOutputStream outputStream = new ByteArra... 阅读全文
摘要:
打开系统相册获取图片并截取,代码相对简单 1 Intent intent = new Intent(Intent.ACTION_GET_CONTENT,null); 2 intent.setType("image/*"); 3 intent.putExtra("cro... 阅读全文