You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
	
	
		
			
				
					
						
						
							| 1234567891011 | ifile=${1}
echo "Create printable PDF form File ${ifile}."
gs -dNOPAUSE -dBATCH \
 -sDEVICE=pdfwrite \
 -sOutputFile="${ifile}out.pdf" \
 -dJPEGQ=92 -dQFactor=0.92 \
 -c ".setpdfwrite 25165824 setvmthreshold " \
 -c "<</GrayImageResolution 300/ImageMemory 8388608/AutoRotatePages/None/UCRandBGInfo/Preserve/PreserveOverprintSettings true>> setdistillerparams " \
 -f "${ifile}"
 |