bieniekmateusz commented Jun 3, 2020 • Hi there, thanks for making the repo. Hi, we are probably experiencing the same issue, I solved it for the Ricoh SP112SU. This fixes the ghost script SAFER/NOSAFER new policy issue, see https://ghostscript.com/doc/current/Use.htm. diff --git a/pstoricohddst-gdi b/pstoricohddst-gdi index f86f9b6..e252b37 100755 --- a/pstoricohddst-gdi +++ b/pstoricohddst-gdi @@ -133,7 +133,7 @@ EOF # Converting from PostScript to PostScript-monochrome, then to PBM image format (per page) #gs -sDEVICE=ps2write -sOutputFile=- -r$resolution -dQUIET -dBATCH -dNOPAUSE - | - gs -sDEVICE=pbmraw -sOutputFile=${uid}/%03d-page.pbm -r$resolution -dQUIET -dBATCH -dNOPAUSE - + gs --permit-file-all=${uid}/ -sDEVICE=pbmraw -sOutputFile=${uid}/%03d-page.pbm -r$resolution -dQUIET -dBATCH -dNOPAUSE - stop wait @@ -144,7 +144,7 @@ EOF # Converting from PostScript to PostScript-monochrome, then to PBM image format (per page) log "Converting document to pages" - gs -sDEVICE=ps2write -sOutputFile=- -r$resolution -dQUIET -dBATCH -dNOPAUSE - | gs -sDEVICE=pbmraw -sOutputFile=${uid}/%03d-page.pbm -r$resolution -dQUIET -dBATCH -dNOPAUSE - + gs -sDEVICE=ps2write -sOutputFile=- -r$resolution -dQUIET -dBATCH -dNOPAUSE - | gs --permit-file-all=${uid}/ -sDEVICE=pbmraw -sOutputFile=${uid}/%03d-page.pbm -r$resolution -dQUIET -dBATCH -dNOPAUSE - log "Conversion complete" cat <