mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-16 04:01:56 +00:00
38 lines
891 B
TypeScript
38 lines
891 B
TypeScript
import { loadPhoton } from "./photon.js";
|
|
|
|
/**
|
|
* Convert image to PNG format for terminal display.
|
|
* Kitty graphics protocol requires PNG format (f=100).
|
|
*/
|
|
export async function convertToPng(
|
|
base64Data: string,
|
|
mimeType: string,
|
|
): Promise<{ data: string; mimeType: string } | null> {
|
|
// Already PNG, no conversion needed
|
|
if (mimeType === "image/png") {
|
|
return { data: base64Data, mimeType };
|
|
}
|
|
|
|
const photon = await loadPhoton();
|
|
if (!photon) {
|
|
// Photon not available, can't convert
|
|
return null;
|
|
}
|
|
|
|
try {
|
|
const bytes = new Uint8Array(Buffer.from(base64Data, "base64"));
|
|
const image = photon.PhotonImage.new_from_byteslice(bytes);
|
|
try {
|
|
const pngBuffer = image.get_bytes();
|
|
return {
|
|
data: Buffer.from(pngBuffer).toString("base64"),
|
|
mimeType: "image/png",
|
|
};
|
|
} finally {
|
|
image.free();
|
|
}
|
|
} catch {
|
|
// Conversion failed
|
|
return null;
|
|
}
|
|
}
|