gpt4 book ai didi

android - 如何启动相机 Intent 并保存非压缩图片

转载 作者:行者123 更新时间:2023-11-29 01:40:09 25 4
gpt4 key购买 nike

我是一个非常年轻的自学成才的开发人员,我正在从事我的第一个主要项目,它需要在按下后启动相机 Intent ,保存用户拍摄的图像并将其显示在自定义对话框中。
我让它工作,但我将返回的位图存储在 onactivityresult 中,因此图片被压缩,这会破坏应用程序的功能。

这是有效的代码:

开始 Intent :

Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
startActivityForResult(intent, 1);

接收 Intent 并将数据发送到对话框:

            Bundle bundle = data.getExtras();
File file = new File(getCacheDir() + "/app"
+ System.currentTimeMillis() + ".jpg");
Bitmap bitmap = (Bitmap) bundle.get("data");
ByteArrayOutputStream bos = new ByteArrayOutputStream();
bitmap.compress(CompressFormat.JPEG, 100 /* ignored for PNG */,
bos);
byte[] bitmapdata = bos.toByteArray();

// write the bytes in file
FileOutputStream fos;
try {
fos = new FileOutputStream(file);
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
try {
fos = new FileOutputStream(file);
fos.write(bitmapdata);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}

mdialog.setPic(file.getAbsolutePath());

在自定义对话框中显示图片:

public void setPic(final String mURi) {
this.mURI = mURi;

if (mURI != null) {
hwPic.postDelayed(new Runnable() {

@Override
public void run() {
Drawable d = Drawable.createFromPath(mURI);

hwPic.setImageDrawable(d);;
hwPic.setVisibility(View.VISIBLE);

}
}, 1000);
}
}

这工作正常,但由于图片被压缩,图片中任何合理大小的字体都模糊不清。

这是不起作用的代码:

初始化变量:

private String MURID;

开始 Intent :

文件 file = new File(getCacheDir() + "/app" + System.currentTimeMillis() + ".jpg");

                            if(!file.exists()){
try {
file.createNewFile();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}else{
file.delete();
try {
file.createNewFile();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
MURID=file.getAbsolutePath();
Intent intent = new Intent(
MediaStore.ACTION_IMAGE_CAPTURE);
intent.putExtra(MediaStore.EXTRA_OUTPUT , Uri.parse(MURID));
startActivityForResult(intent, 1);

接收 Intent 并发送到 mydialog:

@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
if (requestCode == 1) {// camera intent for the dialog picture
if (resultCode == RESULT_OK) {


mdialog.setPic(MURID);

}
}
}

setpic 保持不变(在对话框中):

public void setPic(final String mURi) {
this.mURI = mURi;

if (mURI != null) {
hwPic.postDelayed(new Runnable() {

@Override
public void run() {
Drawable d = Drawable.createFromPath(mURI);

hwPic.setImageDrawable(d);;
hwPic.setVisibility(View.VISIBLE);

}
}, 1000);
}
}

我没有得到任何响应,logcat 也没有给我任何错误,似乎是什么问题?任何帮助将不胜感激。

顺便说一句:我希望它也适用于没有 SD 卡的手机。

最佳答案

第三方相机应用无法写入您的 getCacheDir(),如果您指向现有文件,有些应用可能会感到困惑。改用外部存储:

package com.commonsware.android.camcon;

import android.app.Activity;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.os.Environment;
import android.provider.MediaStore;
import java.io.File;

public class CameraContentDemoActivity extends Activity {
private static final int CONTENT_REQUEST=1337;
private File output=null;

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);

Intent i=new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
File dir=
Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DCIM);

output=new File(dir, "CameraContentDemo.jpeg");
i.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(output));

startActivityForResult(i, CONTENT_REQUEST);
}

@Override
protected void onActivityResult(int requestCode, int resultCode,
Intent data) {
if (requestCode == CONTENT_REQUEST) {
if (resultCode == RESULT_OK) {
Intent i=new Intent(Intent.ACTION_VIEW);

i.setDataAndType(Uri.fromFile(output), "image/jpeg");
startActivity(i);
finish();
}
}
}
}

(从 this sample projectthis book )

BTW: i want this to work with phones without sdcards as well.

External storage不是 removable storage .

关于android - 如何启动相机 Intent 并保存非压缩图片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25226615/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com