HarmonyOS 关于图片裁切问题
当使用CameraKit进行拍照,然后通过如下代码获取图片buffer,但是通过photo: camera.Photo获取的图片宽高为[25165824,1]。
photoOutput.on('photoAvailable', (errCode: BusinessError, photo: camera.Photo): void => {
let imageObj = photo.main
imageObj.getComponent(image.ComponentType.JPEG, async (errCode: BusinessError, component: image.Component): Promise<void> => {
let buffer: ArrayBuffer = component.byteBuffer
this.savePicture(buffer, imageObj)
})
})
目前按照4:3拍照比例进行拍照,当切换至1:1之后,只进行遮挡,然后通过裁剪进行解决,下列代码是将拍照获取的buffer转为pixelmap,然后通过pixelmap.crop进行裁切,裁切完成之后,在转为buffer写入相册。
/*
* PixelMap转Buffer
* */
PixelMapToBuffer(pixelMap: image.PixelMap, width: number, height: number): ArrayBuffer{
//缓存区大小 = width * height * 4
let bufferLength = width * height * 4
const buffer: ArrayBuffer = new ArrayBuffer(bufferLength)
pixelMap.readPixelsToBufferSync(buffer)
return buffer
}
/*
* Buffer转PixelMap
* */
async BufferToPixelMap(buffer: ArrayBuffer, width: number, height: number): Promise<image.PixelMap>{
let sourceOptions: image.SourceOptions = {
sourceDensity: 0, // 在不确定当前密度时传0
sourcePixelFormat: image.PixelMapFormat.RGBA_8888,
sourceSize: {width: width, height: height}
}
let imageSource: image.ImageSource = image.createImageSource(buffer, sourceOptions)
let opts: image.InitializationOptions = {
editable: false,
pixelFormat: image.PixelMapFormat.RGBA_8888,
size: {width: width, height: height}
}
return await imageSource.createPixelMap(opts)
}
try {
//6144 8192
let pixelMap = await this.pixelMapBufferConvertUtil.BufferToPixelMap(buffer, 6144, 8192)
if (!pixelMap) {
LoggerJoy.error(`CameraPage--> occur error when crop photo!`)
return undefined
}
LoggerJoy.info(`CameraPage--> the image size is [${size.width},${size.height}]`)//25165824,1
pixelMap.cropSync({x: 0, y: 0, size: {width: 6144, height: 8192}})
return this.pixelMapBufferConvertUtil.PixelMapToBuffer(pixelMap, 6144, 8192)
} catch (error) {
let err = error as BusinessError
LoggerJoy.error(`CameraPage--> occur error when crop photo, the error code: ${err.code}, error message: ${err.message}`)
return undefined
}
目前所遇到的问题是拍照获取的图片宽高为[25165824,1],裁切之后的图片在相册无法预览。
HarmonyOS
赞
收藏 0
回答 1
待解决
相关问题
HarmonyOS 图片裁切的接口区域设置,x,y,size是什么单位?
66浏览 • 1回复 待解决
HarmonyOS Canvas中关于绘制图片问题
405浏览 • 1回复 待解决
如何使图片占满整个Image组件,并且不会被裁切。
601浏览 • 1回复 待解决
HarmonyOS .clip矩形裁切无法生效
360浏览 • 1回复 待解决
关于图片组件的问题有知道的吗?
1107浏览 • 1回复 待解决
关于导入图片的使用权限和问题
1790浏览 • 1回复 待解决
关于Image组件加载网络图片的问题
649浏览 • 1回复 待解决
HarmonyOS 关于使用picker.PhotoViewPicker选择图片api的几个问题 -
32浏览 • 1回复 待解决
HarmonyOS 关于图片浏览大图
43浏览 • 1回复 待解决
HarmonyOS 关于手势问题
54浏览 • 1回复 待解决
HarmonyOS 关于crash问题
411浏览 • 1回复 待解决
HarmonyOS关于navigation问题
595浏览 • 1回复 待解决
HarmonyOS 关于Map语法问题
443浏览 • 1回复 待解决
HarmonyOS 关于弹窗相关问题
19浏览 • 1回复 待解决
HarmonyOS 关于ColorFilter的问题
454浏览 • 1回复 待解决
HarmonyOS 关于taskpool的问题
240浏览 • 1回复 待解决
HarmonyOS 关于多moudle问题
43浏览 • 1回复 待解决
HarmonyOS 关于customScan的问题
68浏览 • 1回复 待解决
HarmonyOS 关于URL的问题
69浏览 • 1回复 待解决
HarmonyOS 关于单例问题
63浏览 • 1回复 待解决
HarmonyOS 关于从相册中选择图片上传
37浏览 • 1回复 待解决
HarmonyOS 关于GIF图片播放功能的咨询
66浏览 • 1回复 待解决
关于在api8下ets开发引用xml图片的问题
3291浏览 • 1回复 待解决
HarmonyOS 关于权限组的问题
29浏览 • 1回复 待解决
HarmonyOS 关于页面架构封装问题
68浏览 • 1回复 待解决
请参考以下示例: