Global web icon
stackoverflow.com
https://stackoverflow.com/questions/3089773/how-to…
How to change page orientation of PDF? (Ghostscript or PostScript ...
Given a PDF document, how do I change individual page orientation? I'm using latest version of Ghostscript.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/8158584/ghosts…
Ghostscript to merge PDFs compresses the result
I found this neat command to merge multiple PDF into one, using Ghostscript: gs -dBATCH -dNOPAUSE -q -sDEVICE=pdfwrite -sOutputFile=out.pdf in1.pdf in2.pdf The resulting size is smaller than the
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/7446552/resizi…
resize - Resizing a PDF using Ghostscript - Stack Overflow
I am trying to scale a PDF which is for example just small of A4 size up to A4. This works fine with portrait documents. The document is scaled up correctly and then padding is added to the top. On
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/11517659/how-t…
How to use Ghostscript for converting PDF to Image
I found that Ghostscript is able to convert PDF to Image format. I tried PDF to Image Converter but not able to understand it clearly. I have installed gs905w64.exe but when I tried to add refere...
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/6011373/call-g…
Call Ghostscript in Windows by its invocation name?
What should I do to be able to call Ghostscript in Windows by its invocation name? I added Ghostscript bin folder to Windows PATH and Path variables but it doesn't work, neither does 'gswin32c.exe'...
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/9622163/save-p…
Save plot to image file instead of displaying it - Stack Overflow
This displays the figure in a GUI: import matplotlib.pyplot as plt plt.plot([1, 2, 3], [1, 4, 9]) plt.show() But how do I instead save the figure to a file (e.g. foo.png)?
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/4826485/ghosts…
Ghostscript: PDF total pages - Stack Overflow
I'm using Ghostscript library API (wrapping from C#) to print PDF documents from my application. With the ' -dFirstPage ' and ' -dLastPage ' parameters I'm able to select an range of pages to be printed, but how about the total number of a PDF's pages? It is not very nice to allow a user to select a page interval from 2 to 10 when, let me say, the PDF document has only 4 pages. Consider that I ...
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/12675371/how-t…
How to set custom page size with Ghostscript - Stack Overflow
I found that gs was clipping my output even though I had forced the page to the largest standard size, A0. The reason turned out to be that the PostScript document sent to gs by groff / grops contained a %%DocumentMedia specification that was overriding Ghostscript's choice. The solution was to give groff the command-line flag -p-P48i,48i. The -p tells groff to pass the rest of the option to ...
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/51012519/canno…
Cannot delete "ghost" table from Power Pivot - Stack Overflow
I encountered a similar situation after having renamed a query in Power Query : Power Pivot could see the new table under the new name, but the old table was still there in Power Pivot and could not be deleted. Finally I came up with this solution : Make sure there are no remaining relationships or measures in Power Pivot that refer to the table you want to delete. Create a query in Power ...
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/35733645/using…
pdf - Using ghostscript in a php script - Stack Overflow
<?php shell_exec( "gswin64 -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dNOPAUSE -dQUIET -dBATCH -sOutputFile=new-file.pdf test-file.pdf"); echo 'done'; Any ideas what ...