Skip to content

Instantly share code, notes, and snippets.

View aspose-com-gists's full-sized avatar

Aspose.com Gists aspose-com-gists

View GitHub Profile
@aspose-com-gists
aspose-com-gists / extract-word-pages-in-csharp.md
Created July 11, 2025 09:36
Extract Pages from a Word Document in C# Using Aspose.Words
@aspose-com-gists
aspose-com-gists / pptx-to-emf.cs
Created July 10, 2025 12:02
Convert PPTX to EMF
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";
@aspose-com-gists
aspose-com-gists / convert-ppt-to-swf.cs
Created July 9, 2025 09:59
Convert PPT to SWF in C#
using Aspose.Slides;
using Aspose.Slides.Export;
namespace CSharp.Presentations.Conversion
{
class ODPToPPTX
{
static void Main()
{
// The path to the documents directory.
@aspose-com-gists
aspose-com-gists / odp-to-pptx.cs
Created July 7, 2025 20:44
Convert ODP to PPTX
using Aspose.Slides;
using Aspose.Slides.Export;
namespace CSharp.Presentations.Conversion
{
class ODPToPPTX
{
static void Main()
{
// Define the path to the documents directory.
@aspose-com-gists
aspose-com-gists / create-dicom-file-in-csharp.md
Created July 7, 2025 17:47
Create DICOM File in C# with Aspose.Medical for .NET
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);
@aspose-com-gists
aspose-com-gists / datamatrix-barcode-generator.cs
Created July 1, 2025 10:44
Develop a Datamatrix Barcode Generator in C#
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";
@aspose-com-gists
aspose-com-gists / delete-pdf-pages-in-java.md
Created July 1, 2025 06:42
Delete PDF Pages in Java using Aspose.PDF for Java