Learn how to Create a Bulleted or Numbered List in OneNote using 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
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 |
Learn how to Convert Visio to SVG in 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
class Program | |
{ | |
static void Main() | |
{ | |
// The path to the documents directory. | |
string MyDir = "data"; | |
string sourceFilePath = MyDir + "conic_pyramid.dxf"; | |
// Load the source DXF file by calling the Image.Load method. | |
using (Aspose.CAD.Image image = Aspose.CAD.Image.Load(sourceFilePath)) | |
{ |
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 = "ouput_1.svg" | |
# Invoke the Image.load method to load the source DGN file. | |
with cad.Image.load(inputDir) as image: | |
# Create an instance of the CadRasterizationOptions class. | |
cadRasterizationOptions = cad.imageoptions.CadRasterizationOptions() | |
# Set the image height. | |
cadRasterizationOptions.page_height = 800.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
const AsposePage = require('asposepagenodejs'); | |
console.log("Aspose.Page for Node.js via C++ examples."); | |
AsposePage().then(AsposePageModule => { | |
//AsposePageAbout - Get info about Product | |
const json = AsposePageModule.AsposePageAbout(); | |
console.log("AsposePageAbout => %O", json.errorCode == 0 ? JSON.parse(JSON.stringify(json).replace('"errorCode":0,"errorText":"",','')) : json.errorText); | |
}); |
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 | |
# Set path for the working files. | |
inputDir = "sample.dgn" | |
outputDir = "ouput_1.dxf" | |
# Load the DGN file by calling the Image.load method. | |
with cad.Image.load(inputDir) as image: | |
# Create DXF options by initializing an object of the CadRasterizationOptions class. | |
dxf_options = cad.imageoptions.CadRasterizationOptions() | |
# Instantiate an instance of the DxfOptions class. | |
export_options = cad.imageoptions.DxfOptions() |