Android 图片获取显示照片拍摄时间

简介: Android 图片获取显示照片拍摄时间

image.png

类似图上的右下角日期,就是我们用程序动态画上去的,这个时间显示什么时间当然要根据我们自己的业务需求来定。


以我们的举列,我们的客户要求这个时间显示的是照片拍摄的日期。


这个分为两种情况


1.添加照片时候 用相机拍摄的图片,这个当然直接取当时的时间就可以了,具体代码如下:


 //拍照
    private void fromCarema(OnFilishedListener listener) {
        if (hasSdcard()) {
            String path = null;
            if ( tempFile ==null || !tempFile.exists()) {
                listener.onFilish(null);
                return;
            }
            path = tempFile.getAbsolutePath();
            if (TextUtils.isEmpty(path)) {
                listener.onFilish(null);
                return;
            }
            try {
                Bitmap bitmap = BitmapUtils.scaleBitmap(path);
//+++++++++++++++++++画日期操作
                bitmap = BitmapUtils.drawDate2Bitmap(bitmap);
                File file = new File(path);
                if (file.exists()) {
                    file.delete();
                }
                path = BitmapUtils.saveBitmap(bitmap);
                listener.onFilish(path);
            } catch (Exception e) {
                e.printStackTrace();
                Log.e("保存图片", "图片保存失败");
                listener.onFilish(null);
            }
        } else {
            if (fragment != null) {
                Toast.makeText(fragment.getActivity(), "未找到存储卡,无法存储照片!", Toast.LENGTH_SHORT)
                        .show();
            } else {
                Toast.makeText(activity, "未找到存储卡,无法存储照片!", Toast.LENGTH_SHORT).show();
            }
            listener.onFilish(null);
        }
    }
public static Bitmap drawDate2Bitmap(Bitmap bitmap) {
    SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm", Locale.CHINA);
    String date = sdf.format(new Date());
    Bitmap.Config bitmapConfig = bitmap.getConfig();
    // set default bitmap config if none
    if (bitmapConfig == null) {
      bitmapConfig = Bitmap.Config.ARGB_8888;
    }
    bitmap = bitmap.copy(bitmapConfig, true); // 获取可改变的位图
    Canvas canvas = new Canvas(bitmap);
    Paint paint = new Paint(Paint.ANTI_ALIAS_FLAG);
    // text color - #3D3D3D
    paint.setColor(Color.RED);
    // text size in pixels
    paint.setTextSize(30);
    // text shadow
    // paint.setShadowLayer(1f, 0f, 1f, Color.WHITE);
    Rect bounds = new Rect();
    paint.getTextBounds(date, 0, date.length(), bounds);
    int x = (bitmap.getWidth() - bounds.width());
    canvas.drawText(date, x - 10, bitmap.getHeight() - 10, paint);
    canvas.save();
    return bitmap;
  }

2.如果是从图库选择的照片,我们需要先获取照片拍摄日期,然后再将日期画上去,代码如下:

//从图库选择
    private void fromGallery(Intent data, OnFilishedListener listener) {
        Uri uri = data.getData();
        String[] filePathColumn = {MediaStore.Images.Media.DATA , MediaStore.Images.Media.DATE_TAKEN};
        Cursor cursor = null;
        if (uri == null)
            return;
        if (uri.getScheme().contains("file")) {
            Long fileTime = (new File(uri.getPath())).lastModified();
            String dateTime = TimeUtil.longToDate1(fileTime);
            Log.i("wtt","照片拍摄日期为dateTime: " + dateTime);
            saveSelectPic( dateTime , uri.getPath(), listener);
        } else if (uri.getScheme().contains("content")) {
            if (fragment != null) {
                cursor = fragment.getActivity().getContentResolver()
                        .query(uri, filePathColumn, null, null, null);
            } else {
                cursor = activity.getContentResolver().
                        query(uri,filePathColumn, null, null, null);
            }
            if (cursor.moveToFirst()) {
                int columnIndex = cursor.getColumnIndex(filePathColumn[0]);
                String picturePath = cursor.getString(columnIndex);
                int dateIndex = cursor.getColumnIndexOrThrow(filePathColumn[1]);
                String date = cursor.getString(dateIndex);
                if (TextUtils.isEmpty(date)) {
                    date = TimeUtil.getStringDate1();
                }else{
                    date = TimeUtil.longToDate1(Long.parseLong(date));
                }
                cursor.close();
                saveSelectPic(date , picturePath, listener);
            } else {
                listener.onFilish(null);
            }
        }
    }
 /**
     * 保存圖片
     *
     * @param picPath
     * @param listener
     */
    private void saveSelectPic(String date, String picPath, OnFilishedListener listener) {
        if (TextUtils.isEmpty(picPath)) {
            listener.onFilish(null);
            return;
        }
        Bitmap bitmap = BitmapUtils.scaleBitmap(picPath);
        bitmap = BitmapUtils.drawDate2Bitmap( date , bitmap);
        try {
            picPath = BitmapUtils.saveBitmap(bitmap);
            listener.onFilish(picPath);
        } catch (Exception e) {
            e.printStackTrace();
            Log.e("保存图片", "图片保存失败");
            listener.onFilish(null);
        }
    }
public static Bitmap drawDate2Bitmap(String date , Bitmap bitmap) {
    Bitmap.Config bitmapConfig = bitmap.getConfig();
    // set default bitmap config if none
    if (bitmapConfig == null) {
      bitmapConfig = Bitmap.Config.ARGB_8888;
    }
    bitmap = bitmap.copy(bitmapConfig, true); // 获取可改变的位图
    Canvas canvas = new Canvas(bitmap);
    Paint paint = new Paint(Paint.ANTI_ALIAS_FLAG);
    // text color - #3D3D3D
    paint.setColor(Color.RED);
    // text size in pixels
    paint.setTextSize(30);
    // text shadow
    // paint.setShadowLayer(1f, 0f, 1f, Color.WHITE);
    Rect bounds = new Rect();
    paint.getTextBounds(date, 0, date.length(), bounds);
    int x = (bitmap.getWidth() - bounds.width());
    canvas.drawText(date, x - 10, bitmap.getHeight() - 10, paint);
    canvas.save();
    return bitmap;
  }


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