IRONSOFTWAREHOME

IronPPT 시작하기

Curtis Chau
Curtis Chau
Updated: 2026년 6월 29일

IronPowerPoint: .NET 용 PowerPoint 라이브러리

IronPPT 는 Iron Software 에서 개발한 PowerPoint 라이브러리입니다. 이 소프트웨어는 .NET 애플리케이션에서 PowerPoint 프레젠테이션 작업을 위한 강력한 기능을 제공하는 데 탁월합니다.

  • 파워포인트 프레젠테이션을 불러오고, 편집하고, 저장합니다. .pptx 및 .ppt 파일을 간편하게 작업할 수 있습니다.
  • 슬라이드 설정: 슬라이드 크기, 방향, 배경색 및 레이아웃을 구성합니다.
  • 텍스트: 텍스트 내용, 스타일, 분할, 텍스트 추가 및 텍스트 상자 추가를 처리합니다.
  • 텍스트 스타일: 글꼴 종류, 크기, 색상, 굵게, 기울임, 밑줄 및 정렬을 관리합니다.
  • 도형: 크기, 위치, 유형 및 회전을 설정하는 것을 포함하여 도형을 추가하고 조작할 수 있습니다.
  • 이미지: 크기 조정, 정렬 및 위치 지정 옵션을 사용하여 슬라이드에 이미지를 삽입합니다.

설치

IronPPT 라이브러리

IronPPT 설치는 빠르고 간단합니다. 다음 방법을 사용하여 패키지를 추가하세요.

PM > Install-Package IronPPT

또는 IronPPT 공식 NuGet 웹사이트 에서 직접 다운로드할 수도 있습니다.

설치 후 C# 코드 상단에 using IronPPT;을 포함하여 시작하십시오.

라이선스 키 적용

IronPPT를 사용하려면 LicenseKey 속성을 설정하여 유효한 라이선스 또는 평가판 키를 적용하십시오. 다음 코드를 import 문 바로 뒤, 그리고 IronPPT 메서드를 호출하기 전에 추가하십시오.

/// <summary>
/// This code sets the license key for the IronPPT library.
/// Ensure you have the correct namespace access by installing the IronPPT NuGet package
/// and adjust the license key appropriately for your use case.
/// </summary>

using System; // Required for Console output
using IronPPT; // Ensure the IronPPT library is referenced in your project.

namespace IronPPTApplication
{
    class Program
    {
        public static void Main(string[] args)
        {
            // Calling the method to set the IronPPT license key.
            SetIronPPTLicense();
        }

        /// <summary>
        /// Sets the license key for the IronPPT library to unlock its full features.
        /// </summary>
        private static void SetIronPPTLicense()
        {
            // Correctly setting the license for the IronPPT library.
            // Replace "IRONPPT.MYLICENSE.KEY.1EF01" with your actual key.
            IronPPT.License.LicenseKey = "IRONPPT.MYLICENSE.KEY.1EF01";

            // Inform the user that the license key has been set.
            Console.WriteLine("IronPPT license key has been set.");
        }
    }
}

코드 예제

이제 몇 가지 코드 예제와 사용 가능한 기능들을 살펴보겠습니다.

파워포인트 파일 생성

하나의 생성자를 사용하여 PresentationDocument 클래스를 인스턴스화하여 PowerPoint 프레젠테이션을 생성하십시오. AddSlideAddText 메서드를 사용하여 슬라이드와 텍스트를 각각 추가하십시오. 그다음, Save 메서드를 사용하여 PowerPoint 프레젠테이션을 내보내십시오.

using IronPPT;

// This code demonstrates the creation of a PowerPoint presentation and saving it as a file.

// Create a new PowerPoint presentation document
var document = new PresentationDocument();

// Create a new slide object
var slide = new Slide();

// Add text content to the slide
slide.AddText("Hello!");

// Add the newly created slide with text to the document
document.AddSlide(slide);

// Export the PowerPoint presentation to a file named "output.pptx"
document.Save("output.pptx");

도형 추가

슬라이드 객체에서 AddShape 메서드를 사용하여 도형을 추가할 수 있습니다. 채우기 색상, 윤곽선 색상, 위치, 각도, 유형 등의 다양한 도형 속성을 구성할 수 있습니다.

using IronPPT;
using IronPPT.Drawing; // Assuming this namespace contains `Shape` and `Color` classes
using IronPPT.Enums; // Assuming this namespace contains the `ShapeType` enum

// Load a PowerPoint presentation from the specified file
var document = new PresentationDocument("output.pptx");

// Create and configure a new shape, in this case, a triangle
Shape shape = new Shape
{
    Name = "triangle",             // Assign a name to the shape
    Type = ShapeType.Triangle,     // Set the shape type to Triangle
    Width = 100,                   // Set the width of the shape
    Height = 100,                  // Assumed height for the shape, should be set for visibility
    FillColor = new Color("#444444"), // Set the fill color of the shape
    OutlineColor = Color.Black,    // Set the outline color to black
    Position = new System.Drawing.Point(200, 200) // Set the position of the shape
};

// Ensure that the slides array has at least one slide to add the shape to
if (document.Slides.Count > 0)
{
    // Add the shape to the first slide
    document.Slides[0].AddShape(shape);
}
else
{
    // If there are no slides, handle the error or add a slide
    document.Slides.Add(new Slide()); // Assuming there's a way to add new slides
    document.Slides[0].AddShape(shape); // Add the shape to the newly added slide
}

// Export the PowerPoint presentation to a new file
document.Save("addShape.pptx");

이미지 추가

슬라이드에 이미지를 추가하는 것 또한 간단한 작업입니다. 아래 코드 예제는 첫 번째 슬라이드에 이미지를 추가하고, 위치, 각도, 이름, 너비, 높이와 같은 이미지 속성을 수정한 다음, 업데이트된 프레젠테이션을 .pptx 파일로 저장합니다.

using IronPPT;
using System.Drawing;

// This code demonstrates creating a new PowerPoint presentation, adding an image to it,
// modifying the image's properties, and exporting the presentation.

// Create a new PowerPoint presentation
var document = new PresentationDocument();

// Ensure there's at least one slide in the presentation
// Create the first slide if it doesn't exist yet
if (document.Slides.Count == 0)
{
    document.Slides.Add();
}

// Initialize an Image object
// Load an image from a file specified by the file path
// Ensure that "sample.png" exists at the specified path
Image image = new Image(); 
image.LoadFromFile("sample.png");

// Add the image to the first slide of the presentation
var newImage = document.Slides[0].AddImage(image);

// Edit the image's properties
// Set the position of the image using X and Y coordinates
newImage.Position = new Point(200, 200);

// Set the rotation angle of the image in degrees
newImage.Angle = 45;

// Set a name for the image, which can be useful for identification
newImage.Name = "new image";

// Set the dimensions of the image
newImage.Width = 150;
newImage.Height = 150;

// Export the PowerPoint presentation with the new image
document.Save("addImage.pptx");

라이선스 및 지원 가능

IronPPT 는 상용 라이브러리이지만 무료 평가판 라이선스를 이용할 수 있습니다.

Iron Software 에 대한 자세한 내용은 당사 웹사이트를 방문하십시오.https://ironsoftware.com/ . 도움이 필요하시거나 문의사항이 있으시면 저희 팀으로 연락 주세요.

Iron Software 지원

일반적인 문의 사항이나 기술적인 질문이 있으시면 언제든지 다음 이메일 주소로 연락주세요:support@ironsoftware.com .

Curtis Chau
기술 문서 작성자

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

...
더 읽어보기

시작할 준비 되셨나요?

Nuget Downloads 6,070버전:2026.9방금 출시

PDF용 C# NuGet 라이브러리
NuGet을 사용하여 설치하세요

버전: 2026.9

PM > Install-Package IronPPT
nuget.org/packages/IronPPT/
  1. 솔루션 탐색기에서 참조를 마우스 오른쪽 버튼으로 클릭하고 NuGet 패키지 관리를 선택합니다.
  2. 찾아보기를 선택하고 "IronPPT"를 검색하세요.
  3. 패키지를 선택하고 설치하세요
C# PDF DLL
DLL 다운로드

버전: 2026.9

  1. IronPPT 파일을 다운로드하여 솔루션 디렉터리 내의 ~/Libs와 같은 위치에 압축을 푸세요.
  2. Visual Studio 솔루션 탐색기에서 참조를 마우스 오른쪽 버튼으로 클릭합니다. 찾아보기를 선택하고 "IronPPT.dll"을 선택합니다.

라이선스 가격은 749달러 부터 시작합니다.

Key in blue circle

무료 30일 체험 키를 즉시 받으세요.

Your trial license will be sent to your email address

제한 없음. 100% 무제한 이용. 신용카드 불필요.

bullet_checked신용카드나 계정 생성은 필요하지 않습니다.제한 없음. 100% 무제한 이용. 신용카드 불필요.
  • Logo Aetna
  • Logo NASA
  • Logo GE
  • Logo Porsche
  • Logo USDA
  • Logo Qatar
Join Millions of Engineers who’ve tried IronPDF
무료 라이브 데모를 예약하세요
Booking Badge

전 세계 수백만 엔지니어들이 신뢰하는 제품입니다.

Iron Software의 고객 로고
부담 없는 무료 상담을 받아보세요
아래 양식을 작성하시거나 sales@ironsoftware.com으로 이메일을 보내주세요.
고객님의 정보는 항상 비밀로 유지됩니다.
전 세계 수백만 엔지니어들이 신뢰하는 제품입니다.
Iron Software의 고객 로고
지금 바로 30일 무료 체험판 키를 받으세요.
신용카드나 계정 생성은 필요하지 않습니다.