Learn how to Extract Pages from a Word Document in C# Using Aspose.Words
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; | |
namespace CSharp.Presentations.Conversion | |
{ | |
class PPTXtoEMF | |
{ | |
static void Main() | |
{ | |
// The path to the documents directory. | |
string dataDir = "data"; | |
string resultPath = dataDir + "result.emf"; |
Learn how to Read and View a DICOM File in C#
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; | |
namespace CSharp.Presentations.Conversion | |
{ | |
class ODPToPPTX | |
{ | |
static void Main() | |
{ | |
// The path to the documents directory. |
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; | |
namespace CSharp.Presentations.Conversion | |
{ | |
class ODPToPPTX | |
{ | |
static void Main() | |
{ | |
// Define the path to the documents directory. |
Learn how to create a DICOM file programmatically in C#
Learn how to Extract Pages from Word in Python
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
package com.example; | |
import com.aspose.slides.*; | |
import java.awt.*; | |
public class main { | |
public static void main(String[] args) { | |
// Create an object of the Presentation class. | |
Presentation pres = new Presentation(); | |
// Get the first slide by calling the get_Item method. | |
ISlide slide = pres.getSlides().get_Item(0); |
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.BarCode.Generation; | |
class Program | |
{ | |
static void Main() | |
{ | |
// Define the codetext you want to encode. | |
string codetext = "ASPOSE-DATAMATRIX-2025"; | |
// Set the path for output file. | |
string outputPath = "/Users/Mustafa/Desktop/datamatrix_embedded_text.png"; |
Learn how to Delete PDF Pages in Java using Aspose.PDF for Java
NewerOlder