fix(core): update
This commit is contained in:
parent
040bac5256
commit
14d653e701
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@push.rocks/smartpdf',
|
name: '@push.rocks/smartpdf',
|
||||||
version: '3.1.3',
|
version: '3.1.4',
|
||||||
description: 'A library for creating PDFs dynamically from HTML or websites with additional features like merging PDFs.'
|
description: 'A library for creating PDFs dynamically from HTML or websites with additional features like merging PDFs.'
|
||||||
}
|
}
|
||||||
|
@ -232,7 +232,7 @@ export class SmartPdf {
|
|||||||
height?: number;
|
height?: number;
|
||||||
quality?: number;
|
quality?: number;
|
||||||
} = {}
|
} = {}
|
||||||
): Promise<Uint8Array[]> {
|
) {
|
||||||
const { width = 1024, height = 768, quality = 100 } = options;
|
const { width = 1024, height = 768, quality = 100 } = options;
|
||||||
|
|
||||||
// Load the PDF document
|
// Load the PDF document
|
||||||
@ -257,6 +257,8 @@ export class SmartPdf {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Resolve all promises and return the array of buffers
|
// Resolve all promises and return the array of buffers
|
||||||
return Promise.all(imagePromises);
|
const imageBuffers = await Promise.all(imagePromises);
|
||||||
|
const imageUint8Arrays = imageBuffers.map((buffer) => new Uint8Array(buffer));
|
||||||
|
return imageUint8Arrays;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user