图像属性解码就是获取图像中包含的属性信息,比如EXIF属性。
图像属性解码的功能主要由 ImageSource 和 ExifUtils 提供。
接口名 | 描述 |
---|---|
getThumbnailInfo() | 获取嵌入图像文件的缩略图的基本信息。 |
getImageThumbnailBytes() | 获取嵌入图像文件缩略图的原始数据。 |
getThumbnailFormat() | 获取嵌入图像文件缩略图的格式。 |
接口名 | 描述 |
---|---|
getLatLong(ImageSource imageSource) | 获取嵌入图像文件的经纬度信息。 |
getAltitude(ImageSource imageSource, double defaultValue) | 获取嵌入图像文件的海拔信息。 |
ImageSource.SourceOptions srcOpts = new ImageSource.SourceOptions();
srcOpts.formatHint = "image/jpeg";
String pathName = "/path/to/image.jpg";
ImageSource imageSource = ImageSource.create(pathName, srcOpts);
int format = imageSource.getThumbnailFormat();
byte[] thumbnailBytes = imageSource.getImageThumbnailBytes();
// 将缩略图解码为 PixelMap 对象
ImageSource.DecodingOptions decodingOpts = new ImageSource.DecodingOptions();
PixelMap thumbnailPixelmap = imageSource.createThumbnailPixelmap(decodingOpts, false);
© 2023 mianshi8.net MIT license