네트워크 프린터에서 PDF 인쇄하기

This article was translated from English: Does it need improvement?
Translated
View the article in English

IronPDF를 사용하여 네트워크 프린터에서 인쇄하려면 어떻게 해야 하나요?

IronPDF는 C#에서 사용할 수 있는 모든 인쇄 옵션을 지원합니다.

기본 프린터로 보내기:

기본 프린터로 PDF를 보내려면 Print 메서드를 사용하십시오.

IronPdf.PdfDocument.Print(System.Boolean)

// C# example of sending a PDF document to the default printer
using IronPdf;

var pdf = PdfDocument.FromFile("example.pdf");

// Sends the document to the default printer
pdf.Print(showPreview: false); // set `showPreview` to true to see a preview before printing
// C# example of sending a PDF document to the default printer
using IronPdf;

var pdf = PdfDocument.FromFile("example.pdf");

// Sends the document to the default printer
pdf.Print(showPreview: false); // set `showPreview` to true to see a preview before printing
$vbLabelText   $csharpLabel

지정된 프린터로 보내기:

오버로드된 Print 메서드를 사용하여 프린터를 이름으로 지정하십시오.

IronPdf.PdfDocument.Print(System.String, System.Boolean)

// C# example of sending a PDF document to a specific printer by name
using IronPdf;

var pdf = PdfDocument.FromFile("example.pdf");
string printerName = "MyNetworkPrinter";

// Sends the document to the specified printer
pdf.Print(printerName, showPreview: false);
// C# example of sending a PDF document to a specific printer by name
using IronPdf;

var pdf = PdfDocument.FromFile("example.pdf");
string printerName = "MyNetworkPrinter";

// Sends the document to the specified printer
pdf.Print(printerName, showPreview: false);
$vbLabelText   $csharpLabel

프린터를 살펴보세요:

문서를 특정 프린터로 보내려면 프린터가 '검색'되어 있는지 확인하십시오.

AirPrint의 경우:

AirPrint를 사용하는 경우 다음 제안 사항을 시도해 보세요.

다음 방법도 시도해 볼 수 있습니다: PdfDocument.GetPrintDocument() 또는 PdfDocument.Print 오버로드를 사용하면 인쇄 미리 보기 창이 표시되고, 사용 가능한 경우 AirPrint를 선택할 수 있습니다.

커티스 차우
기술 문서 작성자

커티스 차우는 칼턴 대학교에서 컴퓨터 과학 학사 학위를 취득했으며, Node.js, TypeScript, JavaScript, React를 전문으로 하는 프론트엔드 개발자입니다. 직관적이고 미적으로 뛰어난 사용자 인터페이스를 만드는 데 열정을 가진 그는 최신 프레임워크를 활용하고, 잘 구성되고 시각적으로 매력적인 매뉴얼을 제작하는 것을 즐깁니다.

커티스는 개발 분야 외에도 사물 인터넷(IoT)에 깊은 관심을 가지고 있으며, 하드웨어와 소프트웨어를 통합하는 혁신적인 방법을 연구합니다. 여가 시간에는 게임을 즐기거나 디스코드 봇을 만들면서 기술에 대한 애정과 창의성을 결합합니다.

시작할 준비 되셨나요?
Nuget 다운로드 17,527,568 | 버전: 2026.2 방금 출시되었습니다