`

调用系统相机并剪切的demo转

 
阅读更多

android 下如果做处理图片的软件 可以调用系统的控件 实现缩放切割图片 非常好的效果

     import java.io.ByteArrayOutputStream;  
    import java.io.File;  
    import android.app.Activity;  
    import android.content.Intent;  
    import android.graphics.Bitmap;  
    import android.net.Uri;  
    import android.os.Bundle;  
    import android.os.Environment;  
    import android.provider.MediaStore;  
    import android.view.View;  
    import android.view.View.OnClickListener;  
    import android.widget.Button;  
    import android.widget.ImageView;  
      
    public class testActivity extends Activity {  
      
        public static final int NONE = 0;  
        public static final int PHOTOHRAPH = 1;// 拍照  
        public static final int PHOTOZOOM = 2; // 缩放  
        public static final int PHOTORESOULT = 3;// 结果  
      
        public static final String IMAGE_UNSPECIFIED = "image/*";  
        ImageView imageView = null;  
        Button button0 = null;  
        Button button1 = null;  
      
        @Override  
        public void onCreate(Bundle savedInstanceState) {  
            super.onCreate(savedInstanceState);  
            setContentView(R.layout.main);  
            imageView = (ImageView) findViewById(R.id.imageID);  
            button0 = (Button) findViewById(R.id.btn_01);  
            button1 = (Button) findViewById(R.id.btn_02);  
      
            button0.setOnClickListener(new OnClickListener() {  
                @Override  
                public void onClick(View v) {  
                    Intent intent = new Intent(Intent.ACTION_PICK, null);  
                    intent.setDataAndType(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, IMAGE_UNSPECIFIED);  
                    startActivityForResult(intent, PHOTOZOOM);  
                }  
            });  
      
            button1.setOnClickListener(new OnClickListener() {  
      
                @Override  
                public void onClick(View v) {  
                    Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);  
                    intent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(new File(Environment.getExternalStorageDirectory(), "temp.jpg")));  
                    startActivityForResult(intent, PHOTOHRAPH);  
                }  
            });  
        }  
      
        @Override  
        protected void onActivityResult(int requestCode, int resultCode, Intent data) {  
            if (resultCode == NONE)  
                return;  
            // 拍照  
            if (requestCode == PHOTOHRAPH) {  
                //设置文件保存路径这里放在跟目录下  
                File picture = new File(Environment.getExternalStorageDirectory() + "/temp.jpg");  
                startPhotoZoom(Uri.fromFile(picture));  
            }  
              
            if (data == null)  
                return;  
              
            // 读取相册缩放图片  
            if (requestCode == PHOTOZOOM) {  
                startPhotoZoom(data.getData());  
            }  
            // 处理结果  
            if (requestCode == PHOTORESOULT) {  
                Bundle extras = data.getExtras();  
                if (extras != null) {  
                    Bitmap photo = extras.getParcelable("data");  
                    ByteArrayOutputStream stream = new ByteArrayOutputStream();  
                    photo.compress(Bitmap.CompressFormat.JPEG, 75, stream);// (0 - 100)压缩文件  
                    imageView.setImageBitmap(photo);  
                }  
      
            }  
      
            super.onActivityResult(requestCode, resultCode, data);  
        }  
      
        public void startPhotoZoom(Uri uri) {  
            Intent intent = new Intent("com.android.camera.action.CROP");  
            intent.setDataAndType(uri, IMAGE_UNSPECIFIED);  
            intent.putExtra("crop", "true");  
            // aspectX aspectY 是宽高的比例  
            intent.putExtra("aspectX", 1);  
            intent.putExtra("aspectY", 1);  
            // outputX outputY 是裁剪图片宽高  
            intent.putExtra("outputX", 64);  
            intent.putExtra("outputY", 64);  
            intent.putExtra("return-data", true);  
            startActivityForResult(intent, PHOTORESOULT);  
        }  
    }  


    <?xml version="1.0" encoding="utf-8"?>  
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
        android:orientation="vertical" android:layout_width="fill_parent"  
        android:layout_height="fill_parent">  
        <TextView android:layout_width="fill_parent"  
            android:layout_height="wrap_content" android:text="@string/hello" />  
        <ImageView android:id="@+id/imageID"  
            android:adjustViewBounds="true" android:maxWidth="50dip"  
            android:maxHeight="50dip" android:layout_width="wrap_content"  
            android:layout_height="wrap_content" />  
        <Button android:id="@+id/btn_01" android:layout_height="50dip"  
                android:text="相册" android:layout_width="150dip"/>  
        <Button android:id="@+id/btn_02" android:layout_height="50dip"  
                android:text="拍照" android:layout_width="150dip"/>  
    </LinearLayout>  


分享到:
评论

相关推荐

    调用系统的相机,图库以及对相片进行剪切的demo

    这个名为"调用系统的相机,图库以及对相片进行剪切的demo"的项目,提供了一个完整的解决方案,涵盖了这些常见功能。 首先,调用系统相机是通过Intent机制实现的。在Android中,Intent是一种用于启动其他组件(如...

    Android 拍照剪切demo

    在活动中,我们可以使用Intent来调用系统相机: ```java Intent takePictureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); if (takePictureIntent.resolveActivity(getPackageManager()) != null) { ...

    android demo图片剪切

    1. **Intent选择器**:Android系统提供了Intent机制,允许我们调用系统服务,比如打开相册或启动相机。在图片剪切的场景中,我们可以创建一个ACTION_PICK Intent来打开相册,让用户选择一张图片;另外,ACTION_IMAGE...

    android相册或相机拍照后对图片剪切不会内存溢出支持7.0

    android从相册里面选择某张图片或调用相机拍照后对图片剪切,不会内存溢出!!亲测的!!!剪切的时候内存溢出太坑爹了!!!图片剪切的demo网上不少,我下载的几个都有内存溢出,只好自己改改。并且7.0不会崩溃。...

    Android剪切图片的Demo

    Android系统提供了Intent机制,允许开发者调用系统服务,如相机。在这个Demo中,开发者通过`Intent ACTION_IMAGE_CAPTURE`启动系统相机应用,让用户拍摄照片。完成拍摄后,相机应用会返回所拍照片的URI,开发者可以...

    Unity调用Android/IOS系统相册、摄像机,选取后可以裁剪(Demo)

    最新版,Unity调用Android/IOS系统相册、摄像机,选取后可以裁剪(Demo)

    andorid下从相册选取/拍照选取一张相片并剪切

    创建一个指向相机的`Intent`,设置其`ACTION_IMAGE_CAPTURE`,然后调用`startActivityForResult()`启动相机。记得在`onActivityResult()`中处理返回的结果。 ```java Intent takePictureIntent = new Intent...

    Java版水果管理系统源码-Camera1Kotlin:Camera1自定义相机kotlin版

    现在很多app都会有拍照功能,一般调用系统进行拍照裁剪就能满足平时的需求,但有些场景或者特殊情况下如:持续不间断拍多张照片或者是进行人脸识别的时候,这时候之间调用系统原生相机拍照时不能满足自己的开发需求...

    头像上传的一个demo,可以从相册选择图片并裁剪

    这个Demo提供了一个基础的功能,让用户能够从相册中选择图片,并对其进行裁剪,以便作为头像使用。然而,具体的上传逻辑并未包含在这个Demo中,这意味着开发者需要根据自己的需求来实现这一部分。 首先,我们需要...

    vue+threejsDEMO.zip

    通常选择`PerspectiveCamera`,并设置其视野角度、近剪切平面和远剪切平面。 4. **添加光源**:3D场景需要光源来呈现阴影和立体感。可以添加各种类型的光源,如`PointLight`、`SpotLight`或`DirectionalLight`。 5...

Global site tag (gtag.js) - Google Analytics