Android storeimage也会创建缩略图

时间:2012-02-05 05:53:53

标签: android image insert thumbnails

机器人:

我正在使用以下代码将图片插入相册

根据描述此方法插入图像也会创建其缩略图我不想创建缩略图如何停止缩略图创建?

问题是我在相册中写图像但是当我从相册中选择图像时,它会返回不需要的缩略图图像路径。

插入图像参数

参数

scr The content resolver to use
source  The stream to use for the image
title   The name of the image
description The description of the image


MediaStore.Images.Media.insertImage(contentResolver ,file.getAbsolutePath(),
    file.getName(), );

1 个答案:

答案 0 :(得分:0)

我也在努力解决这个问题。使用图像资源URI获取实际图像数据位置:

        String dataColumnName = MediaStore.Images.Media.DATA;
        Uri mediaUri = //Image's URI;


    if (mediaUri != null)
    {
        String[] proj = { dataColumnName };
        Cursor actualimagecursor = managedQuery(mediaUri, proj, null, null, null);
        int actual_image_column_index = actualimagecursor.getColumnIndexOrThrow(dataColumnName);
        boolean hasValues = actualimagecursor.moveToFirst();

        if (hasValues)
        {
            //this is the file location of the image
            String path = actualimagecursor.getString(actual_image_column_index);
        }
    }