Print a specific PDF file using its path?

2 visualizaciones (últimos 30 días)
IFM
IFM el 1 de Ag. de 2022
Comentada: Mario Malic el 4 de Ag. de 2022
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.

Respuestas (1)

Jan
Jan el 1 de Ag. de 2022
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 comentarios
IFM
IFM el 4 de Ag. de 2022
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 el 4 de Ag. de 2022
Check this thread. There are some properties of System.Diagnostics.Process that might start the program in the background.

Iniciar sesión para comentar.

Categorías

Más información sobre Data Type Identification en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by