• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

鸿蒙OS 图像属性解码开发指导

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

场景介绍

图像属性解码就是获取图像中包含的属性信息,比如EXIF属性。

接口说明

图像属性解码的功能主要由 ImageSource 和 ExifUtils 提供。

接口名 描述
getThumbnailInfo() 获取嵌入图像文件的缩略图的基本信息。
getImageThumbnailBytes() 获取嵌入图像文件缩略图的原始数据。
getThumbnailFormat() 获取嵌入图像文件缩略图的格式。
接口名 描述
getLatLong(ImageSource imageSource) 获取嵌入图像文件的经纬度信息。
getAltitude(ImageSource imageSource, double defaultValue) 获取嵌入图像文件的海拔信息。

开发步骤

  1. 创建图像数据源 ImageSource 对象,可以通过 SourceOptions 指定数据源的格式信息,此格式信息仅为给解码器的提示,正确提供能帮助提高解码效率,如果不设置或设置不正确,会自动检测正确的图像格式。

   ImageSource.SourceOptions srcOpts = new ImageSource.SourceOptions();
   srcOpts.formatHint = "image/jpeg";
   String pathName = "/path/to/image.jpg";
   ImageSource imageSource = ImageSource.create(pathName, srcOpts);

  1. 获取缩略图信息。

   int format = imageSource.getThumbnailFormat();
   byte[] thumbnailBytes = imageSource.getImageThumbnailBytes();

    
   // 将缩略图解码为 PixelMap 对象
   ImageSource.DecodingOptions decodingOpts = new ImageSource.DecodingOptions();
   PixelMap thumbnailPixelmap = imageSource.createThumbnailPixelmap(decodingOpts, false);

鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
鸿蒙OS 相机发布时间:2022-02-02
下一篇:
鸿蒙OS 位图操作开发指导发布时间:2022-02-02
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap