Aspose.Slides  for Node.js via .NET

Node.js 프레젠테이션용 PowerPoint API

외부 소프트웨어 없이 Node.js를 사용하여 PowerPoint 및 OpenOffice 프레젠테이션을 만들고, 읽고, 수정하고, 변환하세요.

  Download Free Trial

.NET을 통한 Node.js용 Aspose.Slides는 Node.js에서 PowerPoint 프레젠테이션을 생성, 수정 및 변환할 수 있는 Node.js 라이브러리입니다. 슬라이드, 도형, 텍스트, 차트, 표, 이미지 등과 같은 모든 프레젠테이션 요소를 지원합니다. 또한 프레젠테이션 병합, 복제, 분할, 비교 및 ​​인쇄와 같은 다양한 고급 기능을 제공합니다. 종속성 없이 작동하며 짧은 시간에 수천 개의 프레젠테이션을 처리할 수 있습니다.

.NET을 통한 Node.js용 Aspose.Slides는 다음과 같은 인기 있는 기능을 제공합니다.

  • 프레젠테이션 로드, 열기, 보기
  • 프레젠테이션 편집.
  • 프레젠테이션 파일을 PPT, PPTX, ODP 등 널리 사용되는 프레젠테이션 형식으로 변환합니다.
  • 프레젠테이션을 PDF, JPG, HTML, GIF, SVG 및 기타 다양한 형식으로 내보냅니다.
  • 프레젠테이션 렌더링 및 인쇄.
  • 프레젠테이션 암호화 및 해독 프레젠테이션을 비밀번호로 보호하고 비밀번호를 제거합니다.
  • 마스터 슬라이드, 도형, 차트, 그림 프레임, 오디오 프레임, 비디오 프레임, OLE, VBA 매크로, 애니메이션 등과 같은 프레젠테이션 엔터티 조작
  • 그리고 더 많은 기능.

Node.js는 개발자가 브라우저 외부에서 명령줄 도구와 서버측 스크립트를 작성할 수 있게 해주는 인기 있는 무료 오픈 소스 크로스 플랫폼 JavaScript 런타임 환경입니다. 이러한 이유로 Aspose.Slides 팀은 Node.js 커뮤니티에 .NET을 통한 Node.js용 Aspose.Slides를 제공하게 된 것을 자랑스럽게 생각합니다.

고급 Node.js PowerPoint API 기능

템플릿에서 기존 슬라이드 생성 또는 복제

API를 통해 PowerPoint 테이블 작업

도형에 보호 적용 또는 제거

슬라이드에 Excel 차트를 OleObject로 추가

도형 작성 및 슬라이드의 도형에 추가

텍스트와 도형을 처리합니다.

데이터베이스에서 프레젠테이션 생성

프레젠테이션 및 결과 PDF 보호

실제 프린터에서 프레젠테이션

시스템 요구사항

  • .NET을 통한 Node.js용 Aspose.Slides는 Node.js를 기반으로 하는 서버측 JavaScript API입니다. .NET6 이상이 설치된 Windows, Unix/Linux 및 Mac 플랫폼에서 실행할 수 있습니다.

Node.js에서 새 PowerPoint 프레젠테이션을 만드는 방법

아래 예제에서는 프레젠테이션의 첫 번째 슬라이드에 직사각형을 추가했습니다.

            	
const asposeSlides = require('aspose.slides.via.net');

const { Presentation, SaveFormat, ShapeType } = asposeSlides;

var pres = new Presentation();
try 
{
    var slide = pres.slides.get(0);
    slide.shapes.addAutoShape(ShapeType.Rectangle, 50, 150, 300, 200);
    
    pres.save("pres.pptx", SaveFormat.Pptx);
}
finally
{
    if (pres != null) pres.dispose();
}
            
        

Node.js에서 슬라이드를 추가/제거/복제하고 모양 속성을 편집하는 방법

이 Node.js 코드는 다양한 속성을 편집하고 슬라이드를 복제하는 방법을 보여줍니다.

            
const asposeSlides = require('aspose.slides.via.net');

const { Presentation, BackgroundType, FillType, ImageFormat } = asposeSlides;

var pres = new Presentation();
try 
{
    // Add an empty slide to the presentation
    pres.slides.addEmptySlide(pres.layoutSlides.get(0));
    
    // Create another presentation and add its clone into the pres
    var pres2 = new Presentation();
    pres.slides.addClone(pres2.slides.get(0));
    
    // Access and modify properties of the first slide in pres
    var slide = pres.slides.get(0); // Get the first slide
    var slideNumber = slide.slideNumber; // Get slide number
    var hidden = slide.hidden; // Check if the slide is hidden
	
    // Set the background of the first slide
    slide.background.type = BackgroundType.OwnBackground; // Set background type
    slide.background.fillFormat.fillType = FillType.Solid; // Set fill type to solid
    slide.background.fillFormat.solidFillColor.color = "#AEC025F4"; // Set a solid fill color
}
finally
{
    if (pres != null) pres.dispose();
}
            
        

Node.js에서 PowerPoint를 PDF로 변환하는 방법

이 Node.js 코드는 PowerPoint를 PDF 문서로 변환하는 방법을 보여줍니다.

            
const asposeSlides = require('aspose.slides.via.net');

const { Presentation, SaveFormat } = asposeSlides;

var pres = new Presentation("pres.pptx");
try 
{
    pres.save("pres.pdf", SaveFormat.Pdf);
}
finally
{
    if (pres != null) pres.dispose();
}
            
        

Node.js에서 PowerPoint를 GIF로 변환하는 방법

이 Node.js 코드는 PowerPoint를 GIF 이미지로 변환하는 방법을 보여줍니다.

            
const asposeSlides = require('aspose.slides.via.net');

const { Presentation, SaveFormat } = asposeSlides;

var pres = new Presentation("pres.pptx");
try 
{
    pres.save("pres.gif", SaveFormat.Gif);
}
finally
{
    if (pres != null) pres.dispose();
}
            
        

Node.js에서 PowerPoint를 HTML로 변환하는 방법

이 Node.js 코드는 PowerPoint를 HTML 문서로 변환하는 방법을 보여줍니다.

            
const asposeSlides = require('aspose.slides.via.net');

const { Presentation, SaveFormat } = asposeSlides;

var pres = new Presentation("pres.pptx");
try 
{
    pres.save("pres.html", SaveFormat.Html);
}
finally
{
    if (pres != null) pres.dispose();
}
            
        

Node.js에서 PowerPoint를 ODP로 변환하는 방법

이 Node.js 코드는 PowerPoint를 ODP 문서로 변환하는 방법을 보여줍니다.

            
const asposeSlides = require('aspose.slides.via.net');

const { Presentation, SaveFormat } = asposeSlides;

var pres = new Presentation("pres.pptx");
try 
{
    pres.save("pres.odp", SaveFormat.Odp);
}
finally
{
    if (pres != null) pres.dispose();
}
            
        

Node.js에서 프레젠테이션을 병합하는 방법

이 Node.js 코드는 프레젠테이션을 병합하는 방법을 보여줍니다.

            
const asposeSlides = require('aspose.slides.via.net');

const { Presentation, SaveFormat } = asposeSlides;

var pres1 = new Presentation("pres1.pptx");
var pres2 = new Presentation("pres2.pptx");
try 
{
    for (var i = 0; i < pres2.slides.length; i++) 
    {
        pres1.slides.addClone(pres2.slides.get(i));
    }
    
    pres1.save("combinedPresentation.pptx", SaveFormat.Pptx);
}
finally
{
    if (pres1 != null) pres1.dispose();
    if (pres2 != null) pres2.dispose();
}
            
        

PowerPoint 프레젠테이션의 다양한 속성을 검색하는 방법

다음 예에서는 PowerPoint 프레젠테이션의 다양한 속성을 검색하는 방법을 보여줍니다.

            
const asposeSlides = require('aspose.slides.via.net');

const { Presentation } = asposeSlides;

var pres = new Presentation("pres.pptx");
try 
{
    // Retrieve various properties of the presentation
    var countSlides = pres.slides.count; // Total number of slides
    var countMastersSlides = pres.masters.count; // Total number of master slides
    var countLayoutSlides = pres.layoutSlides.count; // Total number of layout slides
    var firstSlideNumber = pres.firstSlideNumber; // Number of the first slide
    var lastView = pres.viewProperties.lastView; // Last view type of the presentation
    var masterThemeName = pres.masterTheme.name; // Name of the master theme
    var sourceFormat = pres.sourceFormat; // Format of the source presentation
    var countVideos = pres.videos.count; // Total number of videos in the presentation
    var countImages = pres.images.count; // Total number of images in the presentation
    
    // Retrieve objects for further manipulation or information extraction
    var slideObject = pres.slides.get(0); // Object of the first slide
    var mastersSlideObject = pres.masters.get(0); // Object of the first master slide
    
    // Log the total number of slides to the console
    console.log("countSlides:" + countSlides);    
    console.log("countMastersSlides:" + countMastersSlides);    
    console.log("countLayoutSlides:" + countLayoutSlides);    
    console.log("firstSlideNumber:" + firstSlideNumber);    
    console.log("lastView=" + lastView);    
    console.log("masterThemeName:" + masterThemeName);    
    console.log("sourceFormat:" + sourceFormat);    
    console.log("countVideos:" + countVideos);    
    console.log("countImages:" + countImages);    
}
finally
{
    if (pres != null) pres.dispose();
}
            
        
  

Support and Learning Resources