VideoChain-API / src /utils /image /addBase64HeaderToPng.mts
jbilcke-hf's picture
jbilcke-hf HF staff
use PuLIB for the turbo mode
1373ff5
raw
history blame contribute delete
402 Bytes
export function addBase64HeaderToPng(base64Data: string) {
if (typeof base64Data !== "string" || !base64Data) {
return ""
}
if (base64Data.startsWith('data:')) {
if (base64Data.startsWith('data:image/png;base64,')) {
return base64Data
} else {
throw new Error("fatal: the input string is NOT a PNG!")
}
} else {
return `data:image/png;base64,${base64Data}`
}
}