added image support and horizontal line support

This commit is contained in:
2026-02-20 15:23:14 -06:00
parent 9d8e80a2bf
commit e0cf9aa122
6 changed files with 289 additions and 10 deletions
+91
View File
@@ -4,3 +4,94 @@ import { twMerge } from "tailwind-merge"
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
}
export const compressImageBase64 = (base64Str: string, maxWidth = 800, quality = 0.7): Promise<string> => {
return new Promise((resolve) => {
const img = new Image();
img.src = base64Str;
img.onload = () => {
let { width, height } = img;
if (width > maxWidth) {
height = Math.round((height * maxWidth) / width);
width = maxWidth;
}
if (height > maxWidth) {
width = Math.round((width * maxWidth) / height);
height = maxWidth;
}
const canvas = document.createElement("canvas");
canvas.width = width;
canvas.height = height;
const ctx = canvas.getContext("2d");
if (!ctx) {
resolve(base64Str);
return;
}
ctx.drawImage(img, 0, 0, width, height);
resolve(canvas.toDataURL("image/jpeg", quality));
};
img.onerror = () => resolve(base64Str);
});
};
export const convertImageToWebpFile = async (file: File): Promise<File> => {
return new Promise((resolve) => {
const reader = new FileReader();
reader.onload = (e) => {
const img = new Image();
img.onload = () => {
let { width, height } = img;
const maxWidth = 2560; // 2K resolution max for task images
if (width > maxWidth) {
height = Math.round((height * maxWidth) / width);
width = maxWidth;
}
if (height > maxWidth) {
width = Math.round((width * maxWidth) / height);
height = maxWidth;
}
const canvas = document.createElement("canvas");
canvas.width = width;
canvas.height = height;
const ctx = canvas.getContext("2d");
if (!ctx) {
resolve(file); // Fallback to original
return;
}
ctx.drawImage(img, 0, 0, width, height);
canvas.toBlob(
(blob) => {
if (!blob) {
resolve(file); // Fallback to original
return;
}
// Replace original extension with .webp
const originalName = file.name;
const finalName = originalName.replace(/\.[^/.]+$/, "") + ".webp";
const newFile = new File([blob], finalName, {
type: "image/webp",
lastModified: Date.now(),
});
resolve(newFile);
},
"image/webp",
0.7 // 70% Quality
);
};
img.onerror = () => resolve(file); // Fallback
img.src = e.target?.result as string;
};
reader.onerror = () => resolve(file); // Fallback
reader.readAsDataURL(file);
});
};