E-Shram Card Cropper & Printer
');
printWindow.document.close();
printWindow.focus();
setTimeout(() => {
printWindow.print();
printWindow.close();
}, 500);
}
pvcModeCheckbox.addEventListener('change', function() {
if (this.checked) {
standardPrintGroup.style.display = 'none';
pvcPrintGroup.style.display = 'flex';
} else {
standardPrintGroup.style.display = 'flex';
pvcPrintGroup.style.display = 'none';
}
});
document.getElementById('print-button').addEventListener('click', function() {
const frontImgSrc = document.getElementById('front-image')?.src;
const backImgSrc = document.getElementById('back-image')?.src;
if (!frontImgSrc || !backImgSrc) return;
const includeBorder = document.getElementById('show-border-checkbox').checked;
const borderStyle = includeBorder ? 'border: 1px dashed #666;' : 'border: none;';
const styles = `
@page { size: A4; margin: 5mm; }
body { margin: 0; font-family: sans-serif; }
.print-container { display: flex; justify-content: center; align-items: center; gap: 15px; width: 100%; page-break-inside: avoid; }
.print-card { width: 8.5cm; padding: 3px; ${borderStyle} }
.print-card img { width: 100%; display: block; }
`;
const content = `