Android图片剪裁的实现

简介: MainActivity如下: package cn.testphotocrop;import android.net.Uri;import android.

MainActivity如下:

package cn.testphotocrop;
import android.net.Uri;
import android.os.Bundle;
import android.provider.MediaStore;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.ImageView;
import android.app.Activity;
import android.content.Intent;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
/**
 * Demo描述:
 * 1 从系统图片库中选取照片进行显示
 * 2 从系统图片库中选取照片进行剪切然后显示
 * 
 * 延伸阅读:
 * 自定义图片剪裁
 * http://blog.csdn.net/liuhanhan512/article/details/8308525
 */
public class MainActivity extends Activity {
    private Button mSelectButton;
    private Button mCropButton;
    private ImageView mImageView;
    private final int SELECT_PHOTO=9527;
    private final int CROP_PHOTO=7;
	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.main);
		init();
	}
    private void init(){
    	mSelectButton=(Button) findViewById(R.id.selectorButton);
    	mSelectButton.setOnClickListener(new ClickListenerImpl());
    	mCropButton=(Button) findViewById(R.id.cropButton);
    	mCropButton.setOnClickListener(new ClickListenerImpl());
    	mImageView=(ImageView) findViewById(R.id.imageView);
    }
   private class ClickListenerImpl implements OnClickListener{
	@Override
	public void onClick(View v) {
		switch (v.getId()) {
			case R.id.selectorButton:
				Intent intent_select = 
				new Intent(Intent.ACTION_PICK,MediaStore.Images.Media.EXTERNAL_CONTENT_URI); 
			    startActivityForResult(intent_select, SELECT_PHOTO);  
				break;
			case R.id.cropButton:
				Intent intent_crop = getImageCropIntent();
				startActivityForResult(intent_crop, CROP_PHOTO);  
				break;

			default:
				break;
		}
	}
   }
   
	@Override
	protected void onActivityResult(int requestCode, int resultCode, Intent data) {
		super.onActivityResult(requestCode, resultCode, data);
		if (requestCode==SELECT_PHOTO) {
			try {
				Uri imageUri=data.getData();
				Bitmap bitmap=BitmapFactory.decodeStream
				(getContentResolver().openInputStream(imageUri), null, null);
				mImageView.setImageBitmap(bitmap);
			} catch (Exception e) {
				
			}
		}
		if (requestCode==CROP_PHOTO) {
			//注意:
			//此处getParcelableExtra("data")中的"data"标签应该与
			//getImageCropIntent()方法中的 intent.putExtra("return-data", true)处
			//"return-data"里的"data"保持一致
			Bitmap bitmap = data.getParcelableExtra("data");   
		    mImageView.setImageBitmap(bitmap);  
		}
	}

	private Intent getImageCropIntent() {
		Intent intent = new Intent(Intent.ACTION_GET_CONTENT, null);
		intent.setType("image/*");
		intent.putExtra("crop", "true");
		intent.putExtra("aspectX", 1);
		intent.putExtra("aspectY", 1);
		intent.putExtra("outputX", 80);
		intent.putExtra("outputY", 80);
		intent.putExtra("return-data", true);
		return intent;
	}  

	
}


main.xml如下:

<RelativeLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
>

    <Button
        android:id="@+id/selectorButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="选择照片"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="10dip"
    />
    
    <Button
        android:id="@+id/cropButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="剪裁照片"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="80dip"
    />
    <ImageView 
        android:id="@+id/imageView"
        android:layout_below="@id/cropButton"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
     />

</RelativeLayout>


 

相关文章
|
8月前
|
XML Java Android开发
Android Studio App开发之对图片进行简单加工(包括放缩,旋转等等 附源码)
Android Studio App开发之对图片进行简单加工(包括放缩,旋转等等 附源码)
167 0
|
8月前
|
XML Java Android开发
Android Studio App开发之使用相机拍摄照片和从相册中选取图片(附源码 超详细必看)
Android Studio App开发之使用相机拍摄照片和从相册中选取图片(附源码 超详细必看)
1015 0
|
4月前
|
存储 缓存 编解码
Android经典面试题之图片Bitmap怎么做优化
本文介绍了图片相关的内存优化方法,包括分辨率适配、图片压缩与缓存。文中详细讲解了如何根据不同分辨率放置图片资源,避免图片拉伸变形;并通过示例代码展示了使用`BitmapFactory.Options`进行图片压缩的具体步骤。此外,还介绍了Glide等第三方库如何利用LRU算法实现高效图片缓存。
78 20
Android经典面试题之图片Bitmap怎么做优化
|
8月前
|
Android开发
Android通过手势(多点)缩放和拖拽图片
Android通过手势(多点)缩放和拖拽图片
62 4
|
8月前
|
Java Android开发
android 下载图片的问题
android 下载图片的问题
52 3
|
5月前
|
数据处理 开发工具 数据安全/隐私保护
Android平台RTMP推送|轻量级RTSP服务|GB28181接入之文字、png图片水印的精进之路
本文探讨了Android平台上推流模块中添加文字与PNG水印的技术演进。自2015年起,为了满足应急指挥及安防领域的需求,逐步发展出三代水印技术:第一代为静态文字与图像水印;第二代实现了动态更新水印内容的能力,例如实时位置与时间信息;至第三代,则优化了数据传输效率,直接使用Bitmap对象传递水印数据至JNI层,减少了内存拷贝次数。这些迭代不仅提升了用户体验和技术效率,也体现了开发者追求极致与不断创新的精神。
|
5月前
|
自然语言处理 定位技术 API
Android经典实战之如何获取图片的经纬度以及如何根据经纬度获取对应的地点名称
本文介绍如何在Android中从图片提取地理位置信息并转换为地址。首先利用`ExifInterface`获取图片内的经纬度,然后通过`Geocoder`将经纬度转为地址。注意操作需在子线程进行且考虑多语言支持。
280 4
|
5月前
|
XML 前端开发 Android开发
Android经典实战之Kotlin中实现圆角图片和圆形图片
本文介绍两种实现圆角图像视图的方法。第一种是通过自定义Kotlin `AppCompatImageView`,重写`onDraw`方法使用`Canvas`和`Path`进行圆角剪裁。第二种利用Android Material库中的`ShapeableImageView`,简单配置即可实现圆角效果。两种方法均易于实现且提供动态调整圆角半径的功能。
99 0
|
7月前
|
JSON 编解码 Apache
Android中使用HttpURLConnection实现GET POST JSON数据与下载图片
Android中使用HttpURLConnection实现GET POST JSON数据与下载图片
76 1
|
7月前
|
Java Android开发
18. 【Android教程】图片控件 ImageView
18. 【Android教程】图片控件 ImageView
113 4