This commit is contained in:
Skylar Grant 2024-09-09 13:26:34 -04:00
parent 45d7b10db7
commit 4ddbab45ea
1 changed files with 1 additions and 10 deletions

View File

@ -49,20 +49,11 @@ module.exports = {
// Handle error if the printing process fails // Handle error if the printing process fails
printer.on('error', (err) => { printer.on('error', (err) => {
console.error('Failed to start printing process:', err); console.error('Failed to start printing process:', err);
res.status(500).send('Failed to start printing process');
}); });
// Pipe the PDF data to the printer // Pipe the PDF data to the printer
printer.stdin.write(pdfData); printer.stdin.write(pdfData);
printer.stdin.end();
// Handle the process exit event
printer.on('close', (code) => {
if (code === 0) {
res.send('PDF sent to printer successfully.');
} else {
res.status(500).send('Failed to print PDF');
}
});
}); });
// Add content (image, text) to the PDF // Add content (image, text) to the PDF