kennyliu

Results 19 comments of kennyliu

Any progress ? +1

This code is working: ```ts mammoth.convertToHtml( { arrayBuffer }, { convertImage: mammoth.images.imgElement((image) => { return image.read('base64').then((imageBuffer) => { return { src: 'data:' + image.contentType + ';base64,' + imageBuffer, style: 'max-width:...

@SuiKaSan According to [this document ](https://github.com/jaredwray/keyv/tree/main/packages/keyv#iterator), the iterator function is needed to be defined in order to iterate over the dataset. It seems that the [keyv-file](https://github.com/zaaack/keyv-file/blob/master/index.ts) did miss this part.

我这也是这个情况,节目单有,但是视频播放失败

@cvaughn42 Problem solved ```setDirectory(index)``` index begins from 0 but the page value begins from 1. ```js handlePageChange = page => { const { tiff } = this; tiff.setDirectory(page - 1);...

+1 For now, there is no page info return by ``convertToHtml`` func.

We will need to use `request({url: pdfUrl, encoding:null}).pipe(pdfParser.createParserStream());` now