Print a specific PDF file using its path?

I would like to print (physically on paper, not display on screen) a particular PDF, from MATLAB. Is this possible?
I have looked through the function "print" and can see that I can use it to print TO a particular file, but I want to physically print out a particular file.

답변 (1개)

Jan
Jan 2022년 8월 1일

0 개 추천

Guessing, that you use Windows:
Acrobat = '"C:\Program Files\Adobe\Acrobat DC\Acrobat\Acrobat.exe"'
PDFFile = '"C:\your.pdf"';
Printer = '"doPDF v7"';
system([Acrobat, ' /N /T ', PDFFile, ' ', Printer]);
Set the printer name etc accordinlgy.
I cannot test this currently. Maybe Acrobat is kept open afterwards.

댓글 수: 2

IFM
IFM 2022년 8월 4일
Thanks for this idea. I can confirm it does leave the UI open, which means it won't be great for my purpose.
Mario Malic
Mario Malic 2022년 8월 4일
Check this thread. There are some properties of System.Diagnostics.Process that might start the program in the background.

댓글을 달려면 로그인하십시오.

카테고리

도움말 센터File Exchange에서 Data Type Identification에 대해 자세히 알아보기

제품

릴리스

R2021a

태그

질문:

IFM
2022년 8월 1일

댓글:

2022년 8월 4일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by