Powershell script to print specific PDF pages into images
问题 How I could I change this powershell script Start-Process –FilePath “C:\Data\PROJECTS\ABC.pdf” –Verb Print -PassThru | %{sleep 10;$_} | kill to: print specific pages of a PDF, directly to an image (e.g. png,jpg,tif, etc), and save them accordingly? For example, I want to print pages 3,4,7 of ABC.pdf into three separate files called ABC_3.png, ABC_4.png, and ABC_7.png; the image file can be any format (.png, .jpg, .tif, etc.). I plan to call on a .csv list to get all the parameter values (e.g.