푸터 콘텐츠로 바로가기
제품 비교

A Comparison Between IronPDF and PdfPig

Working with PDF (Portable Document Format) files can be an integral part of your working environment, from generating invoices to creating documentation for your products, there's a good chance that at some point in your life, you'll find yourself working with PDFs.

However, in today's technologically driven world, there is an endless range of PDF tools, so how do you know which one is best for you? Today, we will be looking at two PDF tools, PdfPig and IronPDF, taking a comparative look at their features, support, and licensing models.

An Overview of IronPDF and PdfPig

IronPDF is a robust .NET PDF library that can be implemented to generate, manipulate, and work with PDFs in various settings. Whether you want to create PDF documents from HTML content, apply watermarks to existing PDF files, have full control over the security settings for your PDF files, or even save PDF files as images, IronPDF has you covered. With extensive documentation and a strong support team, IronPDF ensures that you will have access to all the resources you need to succeed.

PdfPig is an open-source Apache 2.0 licensed library that allows users to read and create PDFs in C#, F#, and other .NET languages. With PdfPig, you can create simple PDF documents, read PDF files, extract content from PDF files, and more. While it may not match IronPDF's wide range of features and documentation, PdfPig can still be a strong contender, offering you a simpler approach to working with PDF files.

Cross-Platform Compatibility

In this first section, we will look at an overview of the cross-platform support each of the libraries currently offers. This is an essential first step into today's comparison, as you will first need to know if a tool we are looking at would even work within your work environment before we can start looking at features and their use cases.

IronPDF

IronPDF supports a wide range of platforms, ensuring that you can work in your preferred environment.

NuGet NuGet을 사용하여 설치하세요

PM >  Install-Package IronPdf

빠른 설치를 원하시면 NuGet 에서 https://www.NuGet.org/packages/IronPdf를 검색해 보세요. 1천만 건 이상의 다운로드를 기록하며 C#을 이용한 PDF 개발 방식을 혁신하고 있습니다. DLL 파일 이나 윈도우 설치 프로그램을 다운로드할 수도 있습니다.

Here's a breakdown of its compatibility:

  • .NET versions:

    • C#, VB.NET, F#
    • .NET Core (8, 7, 6, 5, and 3.1+)
    • .NET Standard (2.0+)
    • .NET Framework (4.6.2+)
  • App environments: IronPDF works in app environments including Windows, Linux, Mac, Docker, Azure, and AWS.

  • IDEs: Works with IDEs such as Microsoft Visual Studio and JetBrains Rider & ReSharper.

  • OS and Processors: Supports several different OS & processors including Windows, Mac, Linux, x64, x86, ARM.

For more information, visit the detailed IronPDF Compatibility Guide.

PdfPig

  • .NET Versions

    • .NET Standard (2.0+)
    • .NET Core (2.0+)
    • .NET Framework (4.6.1+)
  • Platforms: PdfPig works on various platforms such as Windows, macOS, and Linux.

Feature Comparison: PDF Functionality in IronPDF vs. PdfPig

Both IronPDF and PdfPig offer a range of features for handling PDF documents. Here's a comparison of their key functionalities:

IronPDF Features

  • HTML to PDF conversion: IronPDF can handle HTML to PDF conversion. With its full support for modern web standards, you can be assured that IronPDF will consistently return pixel-perfect PDFs from your HTML content.
  • PDF file conversion: Need to convert file formats other than HTML to PDF? IronPDF supports the conversion of many different file formats including DOCX to PDF, RTF to PDF, Image to PDF, URL to PDF, and even PDF to HTML, all while maintaining the desired document structure.
  • Security features: With IronPDF, you can always be assured that any sensitive PDF files are secure thanks to its security features. Use IronPDF to encrypt your PDF files, set passwords, and set permissions for your PDF files.
  • PDF editing features: With IronPDF, you can edit PDF files with ease. IronPDF offers editing features such as adding headers and footers, stamping text and images onto the PDF pages, adding custom watermarks to the PDF, working with PDF forms, and merging PDF files.

For detailed feature information about the features offered by IronPDF, visit the IronPDF Features Page.

PdfPig Features

  • Extract content: With PdfPig, you can extract text from your PDFs.
  • Read PDF data: PdfPig supports the ability to read PDF annotations, forms, and embedded documents. In addition to this, you can use PdfPig to gain access to the PDF metadata.
  • Create PDF documents: Use PdfPig to create PDF documents. You can use this feature to create PDF documents with control over PDF specification, page sizes, and text and path operations within the document.

A Comparison of Features with Code Examples Between IronPDF vs. PdfPig

HTML to PDF Conversion

HTML to PDF Conversion Example is a simple task, yet it can be helpful depending on your needs. Whether you want to create a PDF document documenting a website from your portfolio or need to create PDFs from HTML content for your work environment, you'll need a strong HTML to PDF converter so you can consistently produce high-quality PDFs.

IronPDF Code Example:

using IronPdf;

// Enable web security to disable local disk access or cross-origin requests
Installation.EnableWebSecurity = true;

// Instantiate Chrome PDF Renderer
var renderer = new ChromePdfRenderer();

// Create a PDF from an HTML string using C#
var pdf = renderer.RenderHtmlAsPdf("<h1>Hello World</h1>");
pdf.SaveAs("output.pdf");

// Advanced Example with HTML Assets
// Render HTML with external assets: images, CSS, and JavaScript.
var myAdvancedPdf = renderer.RenderHtmlAsPdf("<img src='icons/iron.png'>", @"C:\site\assets\");
myAdvancedPdf.SaveAs("html-with-assets.pdf");
using IronPdf;

// Enable web security to disable local disk access or cross-origin requests
Installation.EnableWebSecurity = true;

// Instantiate Chrome PDF Renderer
var renderer = new ChromePdfRenderer();

// Create a PDF from an HTML string using C#
var pdf = renderer.RenderHtmlAsPdf("<h1>Hello World</h1>");
pdf.SaveAs("output.pdf");

// Advanced Example with HTML Assets
// Render HTML with external assets: images, CSS, and JavaScript.
var myAdvancedPdf = renderer.RenderHtmlAsPdf("<img src='icons/iron.png'>", @"C:\site\assets\");
myAdvancedPdf.SaveAs("html-with-assets.pdf");
$vbLabelText   $csharpLabel

PdfPig Code Example:

PdfPig in itself does not support HTML to PDF conversion, requiring you to use a third-party library to handle the conversion. PdfPig is more geared towards handling PDF creation over PDF conversion. So if you're looking for a library with built-in conversion support, IronPDF would be the way to go.

When you want to convert HTML content or web pages to a PDF format, IronPDF offers a strong, concise tool for handling this task, whereas PdfPig has no such inbuilt tool and relies on outside libraries.

Encrypting PDF Files

When you are dealing with any sensitive or private PDF files, you will be looking for a PDF tool that can handle security tasks such as encrypting PDF files, editing document metadata, and adding a password. Let's now take a look at how these tools would approach this scenario.

IronPDF Code Example:

using IronPdf;
using System;

// Open an Encrypted File, or create a new PDF from HTML
var pdf = PdfDocument.FromFile("encrypted.pdf", "password");

// Edit metadata
pdf.MetaData.Author = "Satoshi Nakamoto";
pdf.MetaData.Keywords = "SEO, Friendly";
pdf.MetaData.ModifiedDate = DateTime.Now;

// Edit file security settings

// Make a PDF read-only and disallow copy & paste and printing
pdf.SecuritySettings.RemovePasswordsAndEncryption();
pdf.SecuritySettings.MakePdfDocumentReadOnly("secret-key");
pdf.SecuritySettings.AllowUserAnnotations = false;
pdf.SecuritySettings.AllowUserCopyPasteContent = false;
pdf.SecuritySettings.AllowUserFormData = false;
pdf.SecuritySettings.AllowUserPrinting = IronPdf.Security.PdfPrintSecurity.FullPrintRights;

// Change or set the document encryption password
pdf.Password = "my-password";
pdf.SaveAs("secured.pdf");
using IronPdf;
using System;

// Open an Encrypted File, or create a new PDF from HTML
var pdf = PdfDocument.FromFile("encrypted.pdf", "password");

// Edit metadata
pdf.MetaData.Author = "Satoshi Nakamoto";
pdf.MetaData.Keywords = "SEO, Friendly";
pdf.MetaData.ModifiedDate = DateTime.Now;

// Edit file security settings

// Make a PDF read-only and disallow copy & paste and printing
pdf.SecuritySettings.RemovePasswordsAndEncryption();
pdf.SecuritySettings.MakePdfDocumentReadOnly("secret-key");
pdf.SecuritySettings.AllowUserAnnotations = false;
pdf.SecuritySettings.AllowUserCopyPasteContent = false;
pdf.SecuritySettings.AllowUserFormData = false;
pdf.SecuritySettings.AllowUserPrinting = IronPdf.Security.PdfPrintSecurity.FullPrintRights;

// Change or set the document encryption password
pdf.Password = "my-password";
pdf.SaveAs("secured.pdf");
$vbLabelText   $csharpLabel

PdfPig Code Example:

PdfPig does not offer the same in-built support for PDF security that IronPDF does. Due to the more simplistic nature of this library, you would need an external PDF library that does offer these features to handle this task.

When dealing with sensitive PDF files, IronPDF offers comprehensive security features like encryption, metadata editing, and password protection, while PdfPig lacks built-in security support and requires an additional library for such tasks.

Redacting PDF Content

What if you want to redact certain words or sections of content from your PDF files? This is another common need when working with a PDF file, so let us see if these PDF libraries are up to the task.

IronPDF Code Example:

using IronPdf;

PdfDocument document = PdfDocument.FromFile("novel.pdf");

// Redact 'are' phrase from all pages
document.RedactTextOnAllPages("are");
document.SaveAs("redacted.pdf");
using IronPdf;

PdfDocument document = PdfDocument.FromFile("novel.pdf");

// Redact 'are' phrase from all pages
document.RedactTextOnAllPages("are");
document.SaveAs("redacted.pdf");
$vbLabelText   $csharpLabel

PdfPig Code Example:

PdfPig does not offer any support for redacting content from PDF files.

IronPDF offers a simple way of redacting content from your PDF files, requiring only a few lines of code. This means you can easily automate any redaction tasks, raising the efficiency of your workplace. PdfPig, on the other hand, offers no such support for this task.

Digitally Signing PDF documents

While this is less likely to be an essential part of your daily PDF manipulation needs, depending on your work environment, you may come across times when you might need to digitally sign your PDF files. So now we will look at how these two tools might handle that.

IronPDF Code Example:

using IronPdf;
using IronPdf.Signing;
using System.Security.Cryptography.X509Certificates;

ChromePdfRenderer renderer = new ChromePdfRenderer();
PdfDocument pdf = renderer.RenderHtmlAsPdf("<h1>foo</h1>");

// Create X509Certificate2 object with X509KeyStorageFlags set to Exportable
X509Certificate2 cert = new X509Certificate2("IronSoftware.pfx", "123456", X509KeyStorageFlags.Exportable);

// Create PdfSignature object
var sig = new PdfSignature(cert);

// Sign PDF document
pdf.Sign(sig);
pdf.SaveAs("signed.pdf");
using IronPdf;
using IronPdf.Signing;
using System.Security.Cryptography.X509Certificates;

ChromePdfRenderer renderer = new ChromePdfRenderer();
PdfDocument pdf = renderer.RenderHtmlAsPdf("<h1>foo</h1>");

// Create X509Certificate2 object with X509KeyStorageFlags set to Exportable
X509Certificate2 cert = new X509Certificate2("IronSoftware.pfx", "123456", X509KeyStorageFlags.Exportable);

// Create PdfSignature object
var sig = new PdfSignature(cert);

// Sign PDF document
pdf.Sign(sig);
pdf.SaveAs("signed.pdf");
$vbLabelText   $csharpLabel

PdfPig Code Example:

PdfPig does not directly support digital signing. You will need to use other libraries or tools to do this.

If you're looking for a tool to make signing PDFs a breeze, IronPDF's straightforward method will help not only raise the efficiency with which you carry out this task but also give you full control over the process. PdfPig, however, does not offer any support for digitally signing PDF files.

Applying Custom Watermarks to Your PDFs

Are you working with sensitive documents or looking to protect your work and avoid others stealing it to claim as their own? Then applying custom watermarks to your PDF pages can be just what you need. Let's see how the libraries tackle this task.

IronPDF Code Example:

using IronPdf;

// Stamps a Watermark onto a new or existing PDF
var renderer = new ChromePdfRenderer();

var pdf = renderer.RenderUrlAsPdf("https://www.nuget.org/packages/IronPdf");
pdf.ApplyWatermark("<h2 style='color:red'>SAMPLE</h2>", 30, IronPdf.Editing.VerticalAlignment.Middle, IronPdf.Editing.HorizontalAlignment.Center);
pdf.SaveAs(@"C:\Path\To\Watermarked.pdf");
using IronPdf;

// Stamps a Watermark onto a new or existing PDF
var renderer = new ChromePdfRenderer();

var pdf = renderer.RenderUrlAsPdf("https://www.nuget.org/packages/IronPdf");
pdf.ApplyWatermark("<h2 style='color:red'>SAMPLE</h2>", 30, IronPdf.Editing.VerticalAlignment.Middle, IronPdf.Editing.HorizontalAlignment.Center);
pdf.SaveAs(@"C:\Path\To\Watermarked.pdf");
$vbLabelText   $csharpLabel

PdfPig Code Example:

PdfPig does not directly support watermarking.

While PdfPig doesn't support adding watermarks to your PDFs, IronPDF does. Taking advantage of its inbuilt support for applying watermarks, you can have full control over the entire process, and if you are familiar with HTML and CSS then it will be even easier to pick up thanks to the fact that it uses HTML/CSS to apply the watermarks.

Stamping Images and Text to PDF documents

Stamping images and text onto your PDF files is much the same as applying watermarks in a sense, and could be used for similar reasons, but can these two libraries carry out this task?

IronPDF Code Example:

using IronPdf;
using IronPdf.Editing;

// Create the PDF from HTML content
ChromePdfRenderer renderer = new ChromePdfRenderer();
PdfDocument pdf = renderer.RenderHtmlAsPdf("<h1>Example HTML Document!</h1>");

// Create text stamper
TextStamper textStamper = new TextStamper()
{
    Text = "Text Stamper!",
    FontFamily = "Bungee Spice",
    UseGoogleFont = true,
    FontSize = 30,
    IsBold = true,
    IsItalic = true,
    VerticalAlignment = VerticalAlignment.Top,
};

// Stamp the text stamper
pdf.ApplyStamp(textStamper);
pdf.SaveAs("stampText.pdf");
using IronPdf;
using IronPdf.Editing;

// Create the PDF from HTML content
ChromePdfRenderer renderer = new ChromePdfRenderer();
PdfDocument pdf = renderer.RenderHtmlAsPdf("<h1>Example HTML Document!</h1>");

// Create text stamper
TextStamper textStamper = new TextStamper()
{
    Text = "Text Stamper!",
    FontFamily = "Bungee Spice",
    UseGoogleFont = true,
    FontSize = 30,
    IsBold = true,
    IsItalic = true,
    VerticalAlignment = VerticalAlignment.Top,
};

// Stamp the text stamper
pdf.ApplyStamp(textStamper);
pdf.SaveAs("stampText.pdf");
$vbLabelText   $csharpLabel
using IronPdf;
using IronPdf.Editing;
using System;

// Create the PDF from HTML content
ChromePdfRenderer renderer = new ChromePdfRenderer();
PdfDocument pdf = renderer.RenderHtmlAsPdf("<h1>Example HTML Document!</h1>");

// Create image stamper
ImageStamper imageStamper = new ImageStamper(new Uri("https://ironpdf.com/img/svgs/iron-pdf-logo.svg"))
{
    VerticalAlignment = VerticalAlignment.Top,
};

// Stamp the image stamper
pdf.ApplyStamp(imageStamper, 0);
pdf.SaveAs("stampImage.pdf");
using IronPdf;
using IronPdf.Editing;
using System;

// Create the PDF from HTML content
ChromePdfRenderer renderer = new ChromePdfRenderer();
PdfDocument pdf = renderer.RenderHtmlAsPdf("<h1>Example HTML Document!</h1>");

// Create image stamper
ImageStamper imageStamper = new ImageStamper(new Uri("https://ironpdf.com/img/svgs/iron-pdf-logo.svg"))
{
    VerticalAlignment = VerticalAlignment.Top,
};

// Stamp the image stamper
pdf.ApplyStamp(imageStamper, 0);
pdf.SaveAs("stampImage.pdf");
$vbLabelText   $csharpLabel

PdfPig Code Example:

PdfPig, on its own, does not support stamping PDF image objects or text onto PDF files. If you wanted to stamp text and images onto your PDF document, you would have to use additional libraries.

If you are looking for a tool that can handle stamping text and images onto your PDFs then IronPDF would be the tool for you. With its powerful inbuilt stamping tool, you would have full control over the entire process and be able to stamp anything you need to stamp onto your files. If you want to add different fonts to the text stamper, IronPDF supports TrueType format fonts. PdfPig does not offer the same support, making it unable to carry out this task.

DOCX to PDF Conversion

Another common conversion task other than converting HTML to PDF is converting DOCX files to a PDF format. So, if this is something that you come across in your day-to-day tasks, or even just once in a while, having a tool that can easily handle this task can make a huge difference in your workplace efficiency.

IronPDF Code Example:

using IronPdf;

// Instantiate Renderer
DocxToPdfRenderer renderer = new DocxToPdfRenderer();

// Render from DOCX file
PdfDocument pdf = renderer.RenderDocxAsPdf("Modern-chronological-resume.docx");

// Save the PDF
pdf.SaveAs("pdfFromDocx.pdf");
using IronPdf;

// Instantiate Renderer
DocxToPdfRenderer renderer = new DocxToPdfRenderer();

// Render from DOCX file
PdfDocument pdf = renderer.RenderDocxAsPdf("Modern-chronological-resume.docx");

// Save the PDF
pdf.SaveAs("pdfFromDocx.pdf");
$vbLabelText   $csharpLabel

PdfPig Code Example:

PdfPig does not support DOCX to PDF conversion. As with the HTML to PDF conversion, PdfPig focuses more on PDF creation from scratch.

With IronPDF, DOCX to PDF conversion is a breeze. With this tool, you can convert any DOCX file to PDF in just a few lines, making it a concise, straightforward yet powerful tool. PdfPig, on the other hand, cannot handle DOCX to PDF conversion.

Pricing and Licensing: IronPDF vs. PdfPig Library

IronPDF Pricing and Licensing

IronPDF offers diverse pricing options for licenses. Developers can also purchase Iron Suite, which gives access to all of Iron Software's products at the price of two. If you're not ready to buy a license, IronPDF provides a free trial that lasts 30 days.

  • Perpetual licenses: Offers a range of perpetual licenses depending on the size of your team, your project needs, and the number of locations. Each license type comes with email support.
  • Lite License: This license supports one developer, one location, and one project. (Price unlisted)
  • Plus License: Supporting three developers, three locations, and three projects, this is the next step up from the lite license and costs $1,199. The Plus license offers chat support and phone support in addition to basic email support.
  • Professional License: This license is suitable for larger teams, supporting ten developers, ten locations, and ten projects for $2,399. It offers the same contact support channels as the previous tiers but also offers screen-sharing support.
  • Royalty-free redistribution: IronPDF's licensing also offers royalty-free redistribution coverage for an extra $2,399.
  • Uninterrupted product support: IronPDF offers access to ongoing product updates, security feature upgrades, and support from their engineering team for either $1,199/year or a one-time purchase of $2,399 for a 5-year coverage.
  • Iron Suite: For $1,498, you get access to all Iron Software products including IronPDF, IronOCR, IronWord, IronXL, IronBarcode, IronQR, IronZIP, IronPrint, and IronWebScraper.

PdfPig Licensing

PdfPig is licensed under the Apache License 2.0. This means that the PdfPig library is free to use, as long as you follow the guidelines of the terms for this licensing. Although it is free, therefore making PdfPig cheaper to use than IronPDF, it lacks in areas such as features and support when compared to the more costly libraries such as IronPDF.

Documentation and Support: IronPDF vs. PdfPig

IronPDF provides robust documentation and support options to ensure developers can make the most of the library:

IronPDF

  • Comprehensive Documentation: Extensive and user-friendly documentation covering all features.
  • 24/5 Support: Active engineer support is available.
  • Video Tutorials: Step-by-step video guides are available on YouTube.
  • Community Forum: Engaged community for additional support.
  • Regular Updates: Monthly product updates to ensure the latest features and security patches.

For more information, check out IronPDF's extensive documentation and guides, and visit the Iron Software YouTube channel.

PdfPig

  • GitHub Wiki: The PdfPig GitHub includes a wiki that details the features PdfPig has to offer, as well as how to use them.
  • Issue Reporting: When using PdfPig, if you were to come across any issues, you can easily file an issue report on their GitHub.
  • Updates: PdfPig appears to get regular updates, and you can read about what was added in recent updates on their GitHub.

Conclusion

When it comes down to it, choosing the right PDF library for you depends on the tasks you need to carry out and your budget. If you're looking for a more budget-friendly option and only really need to be able to do basic tasks such as PDF document creation, reading PDF documents, and extracting content from them, then PdfPig may be better suited for you.

However, if you are looking at doing more complex tasks and want the ease of having all the tools for the job in one place, then IronPDF is the best option for you. With its robust, rich set of features, extensive documentation, and easily accessible support, IronPDF could be a powerful addition to your workspace.

You can try the 30-day free trial to check out their available features.

참고해 주세요PDFPig is a registered trademark of its respective owner. This site is not affiliated with, endorsed by, or sponsored by PDFPig. All product names, logos, and brands are property of their respective owners. Comparisons are for informational purposes only and reflect publicly available information at the time of writing.

자주 묻는 질문

C#에서 HTML을 PDF로 변환하려면 어떻게 해야 하나요?

IronPDF의 RenderHtmlAsPdf 메서드를 사용하여 HTML 문자열을 PDF로 변환할 수 있습니다. 이 기능을 사용하면 웹 페이지 또는 HTML 문서를 높은 충실도로 PDF로 원활하게 변환할 수 있습니다.

PdfPig와 다른 .NET PDF 라이브러리의 차이점은 무엇인가요?

PdfPig는 PDF 문서 읽기 및 작성에 중점을 둔 오픈 소스 C# 라이브러리이지만 HTML에서 PDF로의 변환 및 보안과 같은 기능이 부족합니다. 반면 IronPDF는 변환, 암호화, 편집을 포함한 포괄적인 기능을 제공하므로 보다 복잡한 PDF 작업에 적합합니다.

.NET 라이브러리를 사용하여 PDF 문서를 보호할 수 있나요?

예, IronPDF는 PDF 암호화, 비밀번호 보호, 권한 설정과 같은 강력한 보안 기능을 제공하여 PDF 문서의 보안을 보장합니다.

DOCX에서 PDF로의 변환을 지원하는 .NET 라이브러리가 있나요?

IronPDF는 DOCX 파일을 PDF로 변환하는 간단한 솔루션을 제공하여 개발자가 최소한의 코딩으로 이 작업을 효율적으로 수행할 수 있도록 합니다.

.NET PDF 라이브러리에는 어떤 지원 옵션이 있나요?

IronPDF는 연중무휴 엔지니어 지원, 포괄적인 문서, 동영상 튜토리얼, 커뮤니티 포럼 등 광범위한 지원 옵션을 제공하여 개발자가 라이브러리의 기능을 더 쉽게 활용할 수 있도록 지원합니다.

PdfPig는 PDF의 디지털 서명을 허용하나요?

아니요, PdfPig는 기본적으로 PDF 문서의 디지털 서명을 지원하지 않습니다. 디지털 서명을 위해서는 추가 라이브러리를 통합해야 합니다.

포괄적인 .NET PDF 라이브러리에는 어떤 가격 모델이 있나요?

IronPDF는 다양한 팀 규모와 프로젝트 요구 사항에 맞는 영구 라이선스, 기능을 평가할 수 있는 30일 무료 평가판이 포함된 Iron Suite 패키지 등 다양한 가격 옵션을 제공합니다.

PdfPig는 예산 친화적인 방식으로 기본적인 PDF 작업에 적합합니까?

예, PdfPig는 Apache 라이선스 2.0에 따라 무료로 사용할 수 있으므로 기본적인 PDF 작업을 위한 비용 효율적인 솔루션입니다. 하지만 상용 라이브러리에 비해 일부 고급 기능이 부족합니다.

.NET 라이브러리를 사용하여 PDF를 편집할 수 있나요?

IronPDF를 사용하면 PDF를 쉽게 편집할 수 있습니다. PDF 문서 내에서 텍스트, 이미지 및 주석을 조작할 수 있어 포괄적인 PDF 편집을 위한 다목적 도구 세트를 제공합니다.

이 .NET PDF 라이브러리는 어떤 플랫폼을 지원하나요?

IronPDF는 Windows, Linux, Mac, Docker, Azure, AWS 등 다양한 플랫폼을 지원하므로 다양한 .NET 버전 및 IDE와 호환되어 광범위한 개발 요구 사항을 충족합니다.

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

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

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