chore: fix typings

PTAL @lgc2333
This commit is contained in:
Shigma 2025-03-03 23:11:43 +08:00
parent 85cd7b95d0
commit 32596946cf
2 changed files with 2 additions and 2 deletions

View File

@ -610,7 +610,7 @@ export function apply(ctx: Context, config: Config) {
// Gets all files in the ZIP file
const zipEntries = zip.getEntries()
const firstImageBuffer = zip.readFile(zipEntries[0])
const b64 = Buffer.from(firstImageBuffer).toString('base64')
const b64 = firstImageBuffer.toString('base64')
return forceDataPrefix(b64, 'image/png')
}
return forceDataPrefix(res.data?.trimEnd().slice(27))

View File

@ -21,7 +21,7 @@ export interface Size {
export function getImageSize(buffer: ArrayBuffer): Size {
if (typeof Buffer !== 'undefined') {
return imageSize(Buffer.from(buffer))
return imageSize(new Uint8Array(buffer))
}
const blob = new Blob([buffer])
const image = new Image()