图片处理

图片选择:

                // 图库选择。
                Intent intent = new Intent(Intent.ACTION_PICK, null);
                intent.setDataAndType(
                        MediaStore.Images.Media.EXTERNAL_CONTENT_URI,
                        IMAGE_UNSPECIFIED);
                startActivityForResult(intent, PHOTO_ZOOM);
/** 
* 拍照
*/
//新建图片sd卡路径
        String externalStorageState = Environment.getExternalStorageState();
        if (Environment.MEDIA_MOUNTED.equals(externalStorageState)) {
            mImageFile = new File(Environment.getExternalStorageDirectory(), System.currentTimeMillis() + ".jpg");
            try {
                mImageFile.createNewFile();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
        // android 7.0之后的适配.
        Uri uri = FileProvider.getUriForFile(this, "com.zhy.zhy.fileprovider", mImageFile);
        Log.e(TAG,uri.toString());

        Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
        // 添加这一句表示对目标应用临时授权该Uri所代表的文件
        intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
        intent.putExtra(MediaStore.EXTRA_OUTPUT, uri);
        startActivityForResult(intent, RESULT_CAMERA);

图片剪裁

Android 4.4 的权限问题,导致App 裁剪图片不能保存

 // Intent intent = new Intent(Intent.ACTION_PICK, null);
 
            // 如果使用com.android.camera.action.CROP 则直接打开裁剪照片的activity 那么可以用自己的图片浏览器选择图片 传入参数并使用之
             // Intent intent = new Intent("com.android.camera.action.CROP");
 
             // 如果不设置type,则 ACTION_GET_CONTENT 会弹出异常FATAL EXCEPTION:main android.content.ActivityNotFoundException
              // 而 ACTION_PICK 会弹出可用程序列表 但没有打开图片相关的程序(在我的两个设备上是这样)
              intent.setType("image/*");
 
              // 设置在开启的Intent中设置显示的view可裁剪
              // 这段代码里设置成false也能裁剪啊。。。这是为什么?懂的给我讲讲了
             // 这段注释掉就不会跳转到裁剪的activity
              intent.putExtra("crop", "true");
  
              // 设置x,y的比例,截图方框就按照这个比例来截 若设置为0,0,或者不设置 则自由比例截图
              intent.putExtra("aspectX", 2);
              intent.putExtra("aspectY", 1);
  
              // 裁剪区的宽和高 其实就是裁剪后的显示区域 若裁剪的比例不是显示的比例,则自动压缩图片填满显示区域。若设置为0,0 就不显示。若不设置,则按原始大小显示
              intent.putExtra("outputX", 200);
              intent.putExtra("outputY", 100);
  
              // 不知道有啥用。。可能会保存一个比例值 需要相关文档啊
             intent.putExtra("scale", true);
  
              // true的话直接返回bitmap,可能会很占内存 但是如果设置为false,剪裁图片会保存失败,
            [原因](http://blog.csdn.net/zhanlanmg/article/details/43368585)
             intent.putExtra("return-data", true);
              // 上面设为false的时候将MediaStore.EXTRA_OUTPUT即"output"关联一个Uri
              Uri imgUri = FileProvider.getUriForFile(this, "com.zhy.zhy.fileprovider", cropImgFile);
              intent.putExtra(MediaStore.EXTRA_OUTPUT,imgUri);
              intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
              intent.putExtra("output", imageUri);
              // 看参数即可知道是输出格式
              intent.putExtra("outputFormat", Bitmap.CompressFormat.JPEG.toString());
              // 面部识别 这里用不上
              intent.putExtra("noFaceDetection", false);
  
              // 想从Activity中获得返回数据,在启动Activity时候使用startActivityForResult方法
              // 1为请求代码,可以是任意值,个人感觉用资源id会比较清楚,而且不会重复 比如当前控件的R.id.button
              startActivityForResult(intent, 1);

android 7.0 URI问题

  
        
            
        

//  res/xml/file_paths.xml


    
        // 这个name一定不能为空.
        
    

uri 转 file

private String parseFilePath(Uri uri) {
    String[] filePathColumn = { MediaStore.Images.Media.DATA };
    Cursor cursor = getContentResolver().query(uri, filePathColumn, null, null, null);
    cursor.moveToFirst();
    int columnIndex = cursor.getColumnIndex(filePathColumn[0]);
    String picturePath = cursor.getString(columnIndex);
    cursor.close();
    return picturePath;
}

android bitmap和base64之间的转换

/** 
 * bitmap转为base64 
 * @param bitmap 
 * @return 
 */  
public static String bitmapToBase64(Bitmap bitmap) {  
  
    String result = null;  
    ByteArrayOutputStream baos = null;  
    try {  
        if (bitmap != null) {  
            baos = new ByteArrayOutputStream();  
            bitmap.compress(Bitmap.CompressFormat.JPEG, 100, baos);  
  
            baos.flush();  
            baos.close();  
  
            byte[] bitmapBytes = baos.toByteArray();  
            result = Base64.encodeToString(bitmapBytes, Base64.DEFAULT);  
        }  
    } catch (IOException e) {  
        e.printStackTrace();  
    } finally {  
        try {  
            if (baos != null) {  
                baos.flush();  
                baos.close();  
            }  
        } catch (IOException e) {  
            e.printStackTrace();  
        }  
    }  
    return result;  
}  
  
/** 
 * base64转为bitmap 
 * @param base64Data 
 * @return 
 */  
public static Bitmap base64ToBitmap(String base64Data) {  
    byte[] bytes = Base64.decode(base64Data, Base64.DEFAULT);  
    return BitmapFactory.decodeByteArray(bytes, 0, bytes.length);  
}  

HTML加载base64字符串

public static String fileToBase64String(String filePath) {
        File photoFile = new File(filePath);
        try {
            FileInputStream fis = new FileInputStream(photoFile);
            ByteArrayOutputStream baos = new ByteArrayOutputStream(10000);
            byte[] buffer = new byte[1000];
            while(fis.read(buffer) != -1) {
                baos.write(buffer);
            }
            baos.close();
            fis.close();
            byte[] bytes = baos.toByteArray();
            String s = Base64.encodeToString(bytes, Base64.DEFAULT);

            return s;
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
}

html加载base64字符串,让上面的字符串前面加:
1> data:image/jpeg;base64,...
2> data:image/png;base64,...
这样就可以在HTML页面显示


图片处理_第1张图片
加头

图片处理_第2张图片
没有加头

图片压缩





































你可能感兴趣的:(图片处理)