简介
stb_image主要是C/C++实现的图像解码库。
下载安装
直接在OpenHarmony-SIG仓中搜索stb-image并下载。
使用说明
以OpenHarmony 3.1 Beta的rk3568版本为例
-
库代码存放路径:./third_party/stb-image
-
修改添加依赖的编译脚本,路径:/developtools/bytrace_standard/ohos.build
{"subsystem": "developtools","parts": {"bytrace_standard": {"module_list": ["//developtools/bytrace_standard/interfaces/innerkits/native:bytrace_core","//developtools/bytrace_standard/bin:bytrace_target","//developtools/bytrace_standard/bin:bytrace.cfg","//developtools/bytrace_standard/interfaces/kits/js/napi:bytrace","//third_party/stb-image:stb_image","//third_party/stb-image:stb_image_test"],"inner_kits": [{"type": "so","name": "//developtools/bytrace_standard/interfaces/innerkits/native:bytrace_core","header": {"header_files": ["bytrace.h"],"header_base": "//developtools/bytrace_standard/interfaces/innerkits/native/include"}}],"test_list": ["//developtools/bytrace_standard/bin/test:unittest"]}}}
-
用命令 ./build.sh --product-name rk3568 --ccache 编译
-
生成库文件路径:out/rk3568/developtools/profiler,该路径会生成库文件
接口说明
-
加载图像数据
stbi_write_jpg(char const *filename, int x, int y, int comp, const void *data, int quality)
-
修改图像尺寸
stbir_resize(const void *input_pixels , int input_w , int input_h , int input_stride_in_bytes, void *output_pixels, int output_w, int output_h, int output_stride_in_bytes, stbir_datatype datatype, int num_channels, int alpha_channel, int flags, stbir_edge edge_mode_horizontal, stbir_edge edge_mode_vertical, stbir_filter filter_horizontal, stbir_filter filter_vertical, stbir_colorspace space, void *alloc_context)
-
将像素数据写入文件
stbi_write_png(char const *filename, int x, int y, int comp, const void *data, int stride_bytes)
-
保存 jpg 格式图片
stbi_write_jpg(char const *filename, int x, int y, int comp, const void *data, int quality)
约束与限制
在下述版本验证通过:
DevEco Studio: 3.1Release(3.1.0.200), SDK: API9 Release(3.2.10.6)
目录结构
|---- stb-image #库的具体实现都在此目录下
| |---- data #图片资源
| |---- deprecated #弃用代码
| |---- docs #文档说明
| |---- tests #单元测试用例
| |---- tools #工具模块
| |---- README.md #安装使用方法
为了能让大家更好的学习鸿蒙(HarmonyOS NEXT)开发技术,这边特意整理了《鸿蒙开发学习手册》(共计890页),希望对大家有所帮助:https://qr21.cn/FV7h05
《鸿蒙开发学习手册》:
如何快速入门:https://qr21.cn/FV7h05
- 基本概念
- 构建第一个ArkTS应用
- ……
开发基础知识:https://qr21.cn/FV7h05
- 应用基础知识
- 配置文件
- 应用数据管理
- 应用安全管理
- 应用隐私保护
- 三方应用调用管控机制
- 资源分类与访问
- 学习ArkTS语言
- ……
基于ArkTS 开发:https://qr21.cn/FV7h05
- Ability开发
- UI开发
- 公共事件与通知
- 窗口管理
- 媒体
- 安全
- 网络与链接
- 电话服务
- 数据管理
- 后台任务(Background Task)管理
- 设备管理
- 设备使用信息统计
- DFX
- 国际化开发
- 折叠屏系列
- ……
鸿蒙开发面试真题(含参考答案):https://qr18.cn/F781PH
鸿蒙开发面试大盘集篇(共计319页):https://qr18.cn/F781PH
1.项目开发必备面试题
2.性能优化方向
3.架构方向
4.鸿蒙开发系统底层方向
5.鸿蒙音视频开发方向
6.鸿蒙车载开发方向
7.鸿蒙南向开发方向