Eu confirmo exatamente o mesmo comportamento, e este é um bug de longa duração [1] [2], enquanto o autor de 'cups-pdf' não considera que seja um bug, portanto os patches existentes não serão usados no upstream .
Para o Ubuntu, usar os PPAs mencionados deve funcionar, mas não posso testá-lo atualmente.
Mais habilidades precisam se alguém usar o Slackware bruto. Para o Slackware 14.2 e o CUPS-PDF 3.0.1 [4], o patch [5] [6] de [7] não funcionará, é muito antigo. Durante tentativas e erros cegos, tento preparar um trabalho [8].
Note que você deve instalá-lo manualmente, então com muito cuidado, instale o novo arquivo 'cups-pdf' arquivo por arquivo; Eu não posso começar a trabalhar desde SlackBuild e install.sh de qualquer forma, muito poucas habilidades que eu tenho. Mas o fato de que finalmente o problema foi embora.
Você deve remover suas impressoras PDF existentes e adicionar uma usando o CUPS-PDF_opt.ppd fornecido manualmente, opcionalmente (para garantir) remover o CUPS-PDF.ppd.
[1] link
[2] link
[3] link
[4] link
[5] link
[6] link
[7] link
[8]
--- a/extra/CUPS-PDF_noopt.ppd
+++ b/extra/CUPS-PDF_noopt.ppd
@@ -31,7 +31,8 @@
*ModelName: "Generic CUPS-PDF Printer"
*ShortNickName: "Generic CUPS-PDF Printer"
*NickName: "Generic CUPS-PDF Printer (no options)"
-*1284DeviceID: "MFG:Generic;MDL:CUPS-PDF Printer;DES:Generic CUPS-PDF Printer;CLS:PRINTER;CMD:POSTSCRIPT;"
+*1284DeviceID: "MFG:Generic;MDL:CUPS-PDF Printer;DES:Generic CUPS-PDF Printer;CLS:PRINTER;CMD:PDF,POSTSCRIPT;"
+*cupsFilter: "application/pdf 0 -"
*% cupsFilter: "application/vnd.cups-postscript 0 pstitleiconv"
*PSVersion: "(2017.000) 0"
*LanguageLevel: "2"
--- a/extra/CUPS-PDF_opt.ppd
+++ b/extra/CUPS-PDF_opt.ppd
@@ -31,7 +31,8 @@
*ModelName: "Generic CUPS-PDF Printer"
*ShortNickName: "Generic CUPS-PDF Printer"
*NickName: "Generic CUPS-PDF Printer (w/ options)"
-*1284DeviceID: "MFG:Generic;MDL:CUPS-PDF Printer;DES:Generic CUPS-PDF Printer;CLS:PRINTER;CMD:POSTSCRIPT;"
+*1284DeviceID: "MFG:Generic;MDL:CUPS-PDF Printer;DES:Generic CUPS-PDF Printer;CLS:PRINTER;CMD:PDF,POSTSCRIPT;"
+*cupsFilter: "application/pdf 0 -"
*% cupsFilter: "application/vnd.cups-postscript 0 pstitleiconv"
*PSVersion: "(2017.000) 0"
*LanguageLevel: "2"
--- a/src/cups-pdf.c
+++ b/src/cups-pdf.c
@@ -60,6 +60,7 @@
extern int errno;
static FILE *logfp=NULL;
+int input_is_pdf=0;
static void log_event(short type, char message[], char *detail) {
time_t secs;
@@ -427,7 +427,7 @@
int len;
cp_string setup;
- printf("file cups-pdf:/ \"Virtual PDF Printer\" \"CUPS-PDF\" \"MFG:Generic;MDL:CUPS-PDF Printer;DES:Generic CUPS-PDF Printer;CLS:PRINTER;CMD:POSTSCRIPT;\"\n");
+ printf("file cups-pdf:/ \"Virtual PDF Printer\" \"CUPS-PDF\" \"MFG:Generic;MDL:CUPS-PDF Printer;DES:Generic CUPS-PDF Printer;CLS:PRINTER;CMD:PDF,POSTSCRIPT;\"\n");
if ((dir = opendir(CP_CONFIG_PATH)) != NULL) {
while ((config_ent = readdir(dir)) != NULL) {
@@ -460,6 +461,7 @@
cp_string buffer;
int rec_depth,is_title=0;
FILE *fpdest;
+ size_t bytes = 0;
if (fpsrc == NULL) {
log_event(CPERROR, "failed to open source stream", NULL);
@@ -483,14 +485,39 @@
log_event(CPSTATUS, "***Experimental Option: FixNewlines");
else
log_event(CPDEBUG, "using traditional fgets");
- while (fgets2(buffer, BUFSIZE, fpsrc) != NULL) {
+ while ((bytes = fread(buffer, sizeof(char), 4, fpsrc)) > 0) {
+ if (!strncmp(buffer, "%PDF", 4)) {
+ log_event(CPDEBUG, "found beginning of PDF code", buffer);
+ input_is_pdf=1;
+ break;
+ }
if (!strncmp(buffer, "%!", 2) && strncmp(buffer, "%!PS-AdobeFont", 14)) {
log_event(CPDEBUG, "found beginning of postscript code: %s", buffer);
break;
}
}
- log_event(CPDEBUG, "now extracting postscript code");
- (void) fputs(buffer, fpdest);
+ log_event(CPDEBUG, "now extracting code");
+ fwrite(buffer, sizeof(char), bytes, fpdest);
+ if (input_is_pdf) {
+ while((bytes = fread(buffer, sizeof(char), BUFSIZE, fpsrc)) > 0)
+ fwrite(buffer, sizeof(char), bytes, fpdest);
+/* Commented out because decoding of utf16 PDF strings isn't implemented.
+ rewind(fpsrc);
+ while (fgets2(buffer, BUFSIZE, fpsrc) != NULL) {
+ if (!is_title) {
+ char *begin = strstr(buffer, "/Title");
+ if (begin) {
+ char *end = strstr(begin, ">");
+ if (end) {
+ strncpy(title, begin+6, BUFSIZE);
+ log_event(CPDEBUG, "found title in PDF code", title);
+ is_title=1;
+ }
+ }
+ }
+ }*/
+ }
+ else {
while (fgets2(buffer, BUFSIZE, fpsrc) != NULL) {
(void) fputs(buffer, fpdest);
if (!is_title && !rec_depth)
@@ -513,6 +540,7 @@
}
}
}
+ }
(void) fclose(fpdest);
(void) fclose(fpsrc);
log_event(CPDEBUG, "all data written to spoolfile: %s", spoolfile);
@@ -761,7 +789,12 @@
(void) fclose(logfp);
return 5;
}
- snprintf(gscall, size, Conf_GSCall, Conf_GhostScript, Conf_PDFVer, outfile, spoolfile);
+ if (input_is_pdf) {
+ snprintf(gscall, size, "cp %s %s", spoolfile, outfile);
+ }
+ else {
+ snprintf(gscall, size, Conf_GSCall, Conf_GhostScript, Conf_PDFVer, outfile, spoolfile);
+ }
log_event(CPDEBUG, "ghostscript commandline built: %s", gscall);
(void) unlink(outfile);