This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import aspose.slides as slides | |
| def find_shape(slide, name): | |
| for shape in slide.shapes: | |
| if shape.name == name: | |
| return shape | |
| raise ValueError("Shape '" + name + "' not found.") | |
| def main(): | |
| slides.License().set_license("license.lic") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import com.aspose.slides.*; | |
| import java.awt.Color; | |
| public class AddTransitions | |
| { | |
| public static void main(String[] args) throws Exception | |
| { | |
| new License().setLicense("license.lic"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Drawing; | |
| using Aspose.Slides; | |
| using Aspose.Slides.Export; | |
| using Aspose.Slides.SlideShow; | |
| namespace SlideTransitionsDemo | |
| { | |
| class Program | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using Aspose.Slides; | |
| using Aspose.Slides.Export; | |
| class Program | |
| { | |
| static void Main() | |
| { | |
| // Load the presentation | |
| using (Presentation presentation = new Presentation("AddNotes_out.pptx")) | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import os | |
| import aspose.slides as slides | |
| from aspose.slides.export import SaveFormat | |
| def main(): | |
| # Load Aspose license, if one is available | |
| license_path = "license.lic" | |
| if os.path.exists(license_path): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import com.aspose.slides.*; | |
| import java.awt.Color; | |
| public class AddNotesExample { | |
| public static void main(String[] args) { | |
| // Apply the Aspose.Slides license | |
| License license = new License(); | |
| license.setLicense("license.lic"); | |
| Presentation presentation = new Presentation(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System.Drawing; | |
| using Aspose.Slides; | |
| namespace AddNotesExample | |
| { | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| // Apply the Aspose.Slides license |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import os | |
| import aspose.slides as slides | |
| from aspose.slides.export import SaveFormat | |
| def main(): | |
| # Load Aspose license | |
| license_path = "license.lic" | |
| if os.path.exists(license_path): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import com.aspose.slides.FillType; | |
| import com.aspose.slides.IAutoShape; | |
| import com.aspose.slides.IPPImage; | |
| import com.aspose.slides.IPictureFrame; | |
| import com.aspose.slides.ISlide; | |
| import com.aspose.slides.License; | |
| import com.aspose.slides.Presentation; | |
| import com.aspose.slides.SaveFormat; | |
| import com.aspose.slides.ShapeType; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.IO; | |
| using Aspose.Slides; | |
| using Aspose.Slides.Export; | |
| namespace AsposeSlidesGifSample | |
| { | |
| class Program | |
| { | |
| static void Main(string[] args) |
NewerOlder