Learn how to create a DICOM file programmatically 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() | |
{ | |
// Define the path to the documents directory. |
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
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.barcode.generation.BarCodeImageFormat; | |
import com.aspose.barcode.generation.BarcodeGenerator; | |
import com.aspose.barcode.generation.EncodeTypes; | |
import com.aspose.barcode.generation.Pdf417ErrorLevel; | |
import com.aspose.barcode.generation.Pdf417Parameters; | |
public class main { | |
public static void main(String[] args) { | |
try { |
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.cad as cad | |
# Define the path for the working files. | |
inputDir = "sample.dgn" | |
outputDir = "result.psd" | |
# Invoke the load method to load the source DGN file. | |
image = cad.Image.load(inputDir) | |
# Create an object of the CadRasterizationOptions class. | |
cadRasterizationOptions = cad.imageoptions.CadRasterizationOptions() | |
#Define the image height, width and Zoom setting. | |
cadRasterizationOptions.page_height = 500.5 |
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.cad as cad | |
inputDir = "sample.dgn" | |
outputDir = "result.pdf" | |
# The Image.load method will load the source DGN file. | |
image = cad.Image.load(inputDir) | |
# Create an object of the CadRasterizationOptions class. | |
cadRasterizationOptions = cad.imageoptions.CadRasterizationOptions() | |
# Set the image height, width and Zoom setting. | |
cadRasterizationOptions.page_height = 500.5 |
NewerOlder