赞
踩
HarmonyOS图像模块支持图像业务的开发,常见功能如图像解码、图像编码、基本的位图操作、图像编辑等。当然,也支持通过接口组合来实现更复杂的图像处理逻辑。
为及时释放本地资源,建议在图像解码的ImageSource对象、位图图像PixelMap对象或图像编码的ImagePacker对象使用完成后,主动调用ImageSource、PixelMap和ImagePacker的release()方法。
图像解码就是将所支持格式的存档图片解码成统一的PixelMap图像,用于后续图像显示或其他处理,比如旋转、缩放、裁剪等。当前支持格式包括JPEG、PNG、GIF、HEIF、WebP、BMP。
ImageSource主要用于图像解码。
接口名 | 描述 |
---|---|
create(String pathName, SourceOptions opts) | 从图像文件路径创建图像数据源。 |
create(InputStream is, SourceOptions opts) | 从输入流创建图像数据源。 |
create(byte[] data, SourceOptions opts) | 从字节数组创建图像源。 |
create(byte[] data, int offset, int length, SourceOptions opts) | 从字节数组指定范围创建图像源。 |
create(File file, SourceOptions opts) | 从文件对象创建图像数据源。 |
create(FileDescriptor fd, SourceOptions opts) | 从文件描述符创建图像数据源。 |
createIncrementalSource(SourceOptions opts) | 创建渐进式图像数据源。 |
createIncrementalSource(IncrementalSourceOptions opts) | 创建渐进式图像数据源,支持设置渐进式数据更新模式。 |
createPixelmap(DecodingOptions opts) | 从图像数据源解码并创建PixelMap图像。 |
createPixelmap(int index, DecodingOptions opts) | 从图像数据源解码并创建PixelMap图像,如果图像数据源支持多张图片的话,支持指定图像索引。 |
updateData(byte[] data, boolean isFinal) | 更新渐进式图像源数据。 |
updateData(byte[] data, int offset, int length, boolean isFinal) | 更新渐进式图像源数据,支持设置输入数据的有效数据范围。 |
getImageInfo() | 获取图像基本信息。 |
getImageInfo(int index) | 根据特定的索引获取图像基本信息。 |
getSourceInfo() | 获取图像源信息。 |
release() | 释放对象关联的本地资源。 |
1. 创建图像数据源ImageSource对象,可以通过SourceOptions指定数据源的格式信息,此格式信息仅为给解码器的提示,正确提供能帮助提高解码效率,如果不设置或设置不正确,会自动检测正确的图像格式。不使用该选项时,可以将create接口传入的SourceOptions设置为null。
- ImageSource.SourceOptions srcOpts = new ImageSource.SourceOptions();
- srcOpts.formatHint = "image/png";
- // 此处传入用户自定义的图像路径
- String pathName = "/sdcard/image.png";
- ImageSource imageSource = ImageSource.create(pathName, srcOpts);
- // 不通过SourceOptions指定数据源格式信息
- ImageSource imageSourceNoOptions = ImageSource.create(pathName, null);
2. 设置解码参数,解码获取PixelMap图像对象,解码过程中同时支持图像处理操作。
如果只需要解码原始图像,不使用该选项时,可将给createPixelMap传入的DecodingOptions 设置为null。
- // 普通解码叠加缩放、裁剪、旋转
- ImageSource.DecodingOptions decodingOpts = new ImageSource.DecodingOptions();
- decodingOpts.desiredSize = new Size(100, 2000);
- decodingOpts.desiredRegion = new Rect(0, 0, 100, 100);
- decodingOpts.rotateDegrees = 90;
- PixelMap pixelMap = imageSource.createPixelmap(decodingOpts);
- // 普通解码
- PixelMap pixelMapNoOptions = imageSource.createPixelmap(null);
3. 解码完成获取到PixelMap对象后,可以进行后续处理,比如渲染显示等。
1. 创建渐进式图像数据源ImageSource对象。
可以通过SourceOptions指定数据源的格式信息,此格式信息仅为提示,如果填写不正确,会自动检测正确的图像格式。使用IncrementalSourceOptions指定图像数据的更新方式为渐进式更新。
- ImageSource.SourceOptions srcOpts = new ImageSource.SourceOptions();
- srcOpts.formatHint = "image/jpeg";
- ImageSource.IncrementalSourceOptions incOpts = new ImageSource.IncrementalSourceOptions();
- incOpts.opts = srcOpts;
- incOpts.mode = ImageSource.UpdateMode.INCREMENTAL_DATA;
- ImageSource imageSource = ImageSource.createIncrementalSource(incOpts);
2. 渐进式更新数据。在未获取到全部图像时,支持先更新部分数据来尝试解码,调用updateData更新数据,将参数isFinal设置为false;当获取到全部数据后,最后一次更新数据时设置isFinal为true,表示数据更新完毕。设置解码参数同普通解码。
- // 传入本地图片路径作为图像数据源
- File file = new File("/sdcard/test.jpg");
- FileInputStream fis = null;
- try {
- fis = new FileInputStream(file);
- ByteArrayOutputStream bos = new ByteArrayOutputStream();
- byte[] data = new byte[1024];
- int len = -1;
- while((len = fis.read(data)) != -1) {
- bos.write(data, 0, len);
- }
- byte[] fileByte = bos.toByteArray();
- // 获取到一定的数据时尝试解码
- imageSource.updateData(fileByte, 0, fileByte.length / 2, false);
- ImageSource.DecodingOptions decodingOpts = new ImageSource.DecodingOptions();
- PixelMap pixelMap = imageSource.createPixelmap(decodingOpts);
-
- // 更新数据再次解码,重复调用直到数据全部更新完成
- imageSource.updateData(fileByte, fileByte.length / 2, fileByte.length / 4, false);
- pixelMap = imageSource.createPixelmap(decodingOpts);
-
- // 数据全部更新完成时需要传入isFinal为true
- imageSource.updateData(fileByte, fileByte.length * 3 / 4, fileByte.length / 4, true);
- pixelMap = imageSource.createPixelmap(decodingOpts);
- } catch (IOException e) {
- e.printStackTrace();
- }
3. 解码完成获取到PixelMap对象后,可以进行后续处理,比如渲染显示等。
最后,为了能让大家更好的去学习提升鸿蒙 (Harmony OS) 开发技术,小编连夜整理了一份30个G纯血版学习资料(含视频、电子书、学习文档等)以及一份在Github上持续爆火霸榜的《纯血版华为鸿蒙 (Harmony OS)开发手册》(共计890页),希望对大家有所帮助。
需要以上视频学习资料小伙伴
这份手册涵盖了当前鸿蒙 (Harmony OS) 开发技术必掌握的核心知识点
HarmonyOS 概念:
如何快速入门?
开发基础知识:
基于ArkTS 开发:
获取以上文中提到的这份纯血版鸿蒙 (Harmony OS) 开发资料的小伙伴
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。