中国优质的IT技术网站
专业IT技术创作平台
IT职业在线教育平台
通过convertToImage()接口将PDF文件转为图片
微信扫码分享
Button("PDF转图片") .fontSize(12) .onClick(async () => { let uri = 'file://docs/storage/Users/currentUser' + '/outputImg'; //图片存储路径 let fileUri: fileuri.FileUri = new fileuri.FileUri(uri); let path = fileUri.path; fs.mkdir(path); const result: boolean = this.document.convertToImage(path, 0); //将PDF文件转为图片 if (result) { this.showDialog('PDF转图片成功', '存储路径为:用户目录/outputImg'); } else { this.showDialog('PDF转图片失败', ''); } }).margin({ left: 15 })