IronPrint 시작하기 IronPrint 시작하기 커티스 차우 업데이트됨:6월 10, 2025 다운로드 IronPrint NuGet 다운로드 무료 체험 시작하기 LLM용 사본 LLM용 사본 LLM용 마크다운 형식으로 페이지를 복사하세요 ChatGPT에서 열기 ChatGPT에 이 페이지에 대해 문의하세요 제미니에서 열기 제미니에게 이 페이지에 대해 문의하세요 Grok에서 열기 Grok에게 이 페이지에 대해 문의하세요 혼란 속에서 열기 Perplexity에게 이 페이지에 대해 문의하세요 공유하다 페이스북에 공유하기 트위터에 공유하기 LinkedIn에 공유하기 URL 복사 이메일로 기사 보내기 This article was translated from English: Does it need improvement? Translated View the article in English IronPrint: .NET 용 올인원 프린트 라이브러리 IronPrint 는 Iron Software 에서 개발한 프린트 라이브러리입니다. 이 라이브러리는 Windows, macOS, Android, iOS를 포함한 다양한 환경과 호환됩니다. C# 인쇄 라이브러리 문서를 인쇄하려면 C# 라이브러리를 다운로드하세요. PDF, PNG, HTML, TIFF, GIF, JPEG, IMAGE, BITMAP 형식을 지원합니다. 인쇄 설정 사용자 지정 인쇄하기 전에 대화 상자를 표시합니다. C#에서 라이브러리의 기능을 무료로 살펴보세요. 호환성 IronPrint 다음과 같은 플랫폼과의 호환성을 지원합니다. .NET 버전 지원 C# , VB .NET , F# .NET 8, 7 , 6, 5 및 Core 3.1 이상 .NET Framework (4.6.2 이상) 운영 체제 및 환경 지원 윈도우 (7 이상, 서버 2016 이상) macOS (10 이상) iOS (11 이상) 안드로이드 API 21 이상 (v5 "롤리팝") .NET 프로젝트 유형 지원 모바일 (Xamarin, MAUI, Avalonia 지원) 데스크톱 (WPF, MAUI 및 Windows Avalonia) 콘솔 (앱 및 라이브러리) 설치 IronPrint 라이브러리 NuGet 패키지 관리자를 통해 IronPrint 패키지를 설치하세요. dotnet add package IronPrint 또는 IronPrint 공식 NuGet 웹사이트 에서 직접 다운로드할 수도 있습니다. 설치가 완료되면 using IronPrint; 를 C# 코드의 상단에 추가하여 시작할 수 있습니다. 라이선스 키 적용 다음으로, License 클래스의 LicenseKey 속성에 라이센스 키를 할당하여 IronPrint에 유효한 라이센스 또는 체험판 키를 적용하십시오. IronPrint 메서드를 사용하기 전에, import 문 바로 다음에 다음 코드를 포함시키십시오. using IronPrint; // Apply your IronPrint license key here License.LicenseKey = "your-license-key-here"; using IronPrint; // Apply your IronPrint license key here License.LicenseKey = "your-license-key-here"; $vbLabelText $csharpLabel 코드 예제 문서 인쇄 문서를 인쇄하려면 파일 경로를 Print 메서드에 간단히 전달하십시오. using IronPrint; class Program { static void Main() { // Specify the file path to be printed string filePath = "document.pdf"; // Invoke the Print method to print the document IronPrint.Print(filePath); } } using IronPrint; class Program { static void Main() { // Specify the file path to be printed string filePath = "document.pdf"; // Invoke the Print method to print the document IronPrint.Print(filePath); } } $vbLabelText $csharpLabel 대화 상자를 사용하여 인쇄 문서를 인쇄하기 위해 ShowPrintDialog 메서드를 사용하고, 인쇄하기 전에 인쇄 다이얼로그를 표시합니다. using IronPrint; class Program { static void Main() { // Specify the file path to be printed string filePath = "document.pdf"; // Invoke the ShowPrintDialog method to prompt the dialog before printing IronPrint.ShowPrintDialog(filePath); } } using IronPrint; class Program { static void Main() { // Specify the file path to be printed string filePath = "document.pdf"; // Invoke the ShowPrintDialog method to prompt the dialog before printing IronPrint.ShowPrintDialog(filePath); } } $vbLabelText $csharpLabel 인쇄 설정 사용자 지정 코드에서 인쇄 설정을 구성하려면 PrintSettings 클래스를 인스턴스화하십시오. PrintSettings 객체를 구성하고 인쇄 메서드 중 하나에 전달하십시오. using IronPrint; class Program { static void Main() { // Create a PrintSettings object to configure printer settings PrintSettings settings = new PrintSettings { Copies = 2, Duplex = DuplexMode.Vertical, PageOrientation = PageOrientation.Landscape }; // Specify the file path to be printed string filePath = "document.pdf"; // Invoke the Print method with custom print settings IronPrint.Print(filePath, settings); } } using IronPrint; class Program { static void Main() { // Create a PrintSettings object to configure printer settings PrintSettings settings = new PrintSettings { Copies = 2, Duplex = DuplexMode.Vertical, PageOrientation = PageOrientation.Landscape }; // Specify the file path to be printed string filePath = "document.pdf"; // Invoke the Print method with custom print settings IronPrint.Print(filePath, settings); } } $vbLabelText $csharpLabel 라이선스 및 지원 가능 IronPrint 는 유료 라이브러리이지만, 여기에서 무료 평가판 라이선스도 이용할 수 있습니다. Iron Software 에 대한 자세한 정보는 당사 웹사이트를 방문하십시오.https://ironsoftware.com/ 더 자세한 지원이나 문의 사항이 있으시면 저희 팀에 문의해 주세요. Iron Software 의 지원 일반적인 지원 및 기술 관련 문의는 다음 이메일 주소로 보내주시기 바랍니다:support@ironsoftware.com . 커티스 차우 지금 바로 엔지니어링 팀과 채팅하세요 기술 문서 작성자 커티스 차우는 칼턴 대학교에서 컴퓨터 과학 학사 학위를 취득했으며, Node.js, TypeScript, JavaScript, React를 전문으로 하는 프론트엔드 개발자입니다. 직관적이고 미적으로 뛰어난 사용자 인터페이스를 만드는 데 열정을 가진 그는 최신 프레임워크를 활용하고, 잘 구성되고 시각적으로 매력적인 매뉴얼을 제작하는 것을 즐깁니다. 커티스는 개발 분야 외에도 사물 인터넷(IoT)에 깊은 관심을 가지고 있으며, 하드웨어와 소프트웨어를 통합하는 혁신적인 방법을 연구합니다. 여가 시간에는 게임을 즐기거나 디스코드 봇을 만들면서 기술에 대한 애정과 창의성을 결합합니다. 시작할 준비 되셨나요? Nuget 다운로드 38,454 | 버전: 2026.3 방금 출시되었습니다 무료 체험 시작하기 NuGet 무료 다운로드 총 다운로드 수: 38,454 라이선스 보기 아직도 스크롤하고 계신가요? 빠른 증거를 원하시나요? PM > Install-Package IronPrint 샘플을 실행하세요 문서가 프린터로 전송되는 것을 지켜보세요. NuGet 무료 다운로드 총 다운로드 수: 38,454 라이선스 보기