Skip to content
Prev 45671 / 63424 Next

vignettes: problems with PDF compaction

On 4/21/2013 1:28 PM, Michael Friendly wrote:
To follow up my own post, I did some more checking of whether/how to
compact PDFs on my own system.  My conclusion is that that I am unable
to comply with the request from CRAN maintainers, even though I would
like to.  Once again, I wonder why this cannot be handled on the CRAN
side automatically.

qpdf: running it from a cmd prompt (using the options from 
tools::compactPDF) doesn't do very much compression

C:\R\test>qpdf --stream-data=compress --object-streams=generate 
HE-examples.pdf
HE-examples-comp.pdf

C:\R\test>dir HE-examples*
04/22/2013  10:55 AM           699,191 HE-examples-comp.pdf
04/22/2013  10:28 AM           756,624 HE-examples.pdf

gs:  I have gs installed at C:\Program Files\gs\gs9.07\bin\gswin32.exe,
but the gs installer doesn't put itself on the path, so 
tools::compactPDF sees gs_cmd as empty:

 > gs_cmd = Sys.getenv("R_GSCMD", "")
[1] ""

so it can't run gs+qpdf.  OK, so I try to do it manually:

 > Sys.setenv(R_GSCMD = "C:/Program Files/gs/gs9.07/bin/gswin32.exe")
 > setwd("test")
 >
 > tools::compactPDF("HE-examples.pdf")
 > tools::compactPDF("HE-examples.pdf", gs_quality="ebook")

But this doesn't do anything, not even changing the timestamp on the 
file, because the file size doesn't change enough.

C:\R\test>dir HE-examples.pdf
04/22/2013  10:28 AM           756,624 HE-examples.pdf