PixelMap是图片解码后的像素图,以下示例将加载的网络图片返回的数据解码成PixelMap格式,再显示在Image组件上,
1.创建PixelMap状态变量。
代码语言:javascript复制@State image: PixelMap = undefined;
2.引用多媒体。 请求网络图片请求,解码编码PixelMap。
2.1引用网络权限与媒体库权限。
代码语言:javascript复制import http from '@ohos.net.http';
import ResponseCode from '@ohos.net.http';
import image from '@ohos.multimedia.image';
2.2填写网络图片地址。
代码语言:javascript复制http.createHttp().request("https://www.example.com/xxx.png",
(error, data) => {
if (error){
console.error(`http reqeust failed with. Code: ${error.code}, message: ${error.message}`);
} else {
}
}
)
2.3将网络地址成功返回的数据,编码转码成pixelMap的图片格式。
代码语言:javascript复制let code = data.responseCode;
if(ResponseCode.ResponseCode.OK === code) {
let imageSource = image.createImageSource(data.result);
let options = {
alphaType: 0, // 透明度
editable: false, // 是否可编辑
pixelFormat: 3, // 像素格式
scaleMode: 1, // 缩略值
size: {height: 100, width: 100}
} // 创建图片大小
imageSource.createPixelMap(options).then((pixelMap) => {
this.image = pixelMap
})
2.4显示图片。
代码语言:javascript复制Button("获取网络图片")
.onClick(() => {
this.httpRequest()
})
Image(this.image).height(100).width(100)
代码语言:javascript复制import http from '@ohos.net.http';
import ResponseCode from '@ohos.net.http';
import image from '@ohos.multimedia.image';
@Entry
@Component
struct NetworkImagePage {
@State message: string = 'Hello World'
@State image: PixelMap = undefined;
httpRequest() {
http.createHttp().request("https://img.yuanmabao.com/zijie/pic/2023/08/10/gj352413j5z.png",
(error, data) => {
let code = data.responseCode;
if (error) {
console.error(`http reqeust failed with. Code: ${error.code}, message: ${error.message}`);
} else {
if (ResponseCode.ResponseCode.OK === code) {
// @ts-ignore
let imageSource = image.createImageSource(data.result);
let options = {
alphaType: 0, // 透明度
editable: true, // 是否可编辑
pixelFormat: 3, // 像素格式
scaleMode: 1, // 缩略值
size: { height: 100, width: 100 }
} // 创建图片大小
imageSource.createPixelMap(options).then((pixelMap) => {
this.image = pixelMap
})
}
}
}
)
}
build() {
Row() {
Column() {
Button("获取网络图片")
.onClick(() => {
this.httpRequest()
})
Image(this.image).height(100).width(100)
}
.width('100%')
}
.height('100%')
}
}
完毕。