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 / 3d-viewer-CF2.java
Last active May 1, 2023 08:02
Aspose.CAD for Java
// load CF2 in an instance of Image via its Load method
Image image = Image.load("template.cf2");
// create an instance of CadRasterizationOptions and set page height & width
CadRasterizationOptions rasterizationOptions = new CadRasterizationOptions();
rasterizationOptions.setPageWidth(1600);
rasterizationOptions.setPageHeight(1600);
// create an instance of TiffOptions
TiffOptions options = new TiffOptions();
@aspose-com-gists
aspose-com-gists / Aspose.Imaging for .NET
Last active February 10, 2022 16:24
Aspose.Imaging for .NET
Gist for Aspose.Imaging for .NET.
@aspose-com-gists
aspose-com-gists / Aspose.Imaging for Java
Last active October 18, 2021 10:02
Aspose.Imaging for Java
Gist for Aspose.Imaging for Java
// Enable Exporters in your initilizing module
Aspose.PSD.Adapters.Imaging.EnableExporters();
// Load PSD, PSB or AI File using Aspose.PSD
using (var img = Aspose.PSD.Image.Load("MyPsdFile.psd"))
{
// Create Save options of Adaptee
var webpSaveOptions = new Aspose.Imaging.ImageOptions.WebPOptions();
img.Save(@"outputPath.webp", webpSaveOptions);
@aspose-com-gists
aspose-com-gists / Aspose.EPS for .NET
Last active January 20, 2019 21:28
Aspose.EPS for .NET
Gist for Aspose.EPS for .NET
@aspose-com-gists
aspose-com-gists / Aspose.PDF for .NET
Last active January 16, 2019 10:58
Aspose.PDF for .NET
Gist for Aspose.PDF for .NET
@aspose-com-gists
aspose-com-gists / Aspose.PDF for .NET
Last active March 12, 2020 13:16
Aspose.PDF for .NET
Gist for Aspose.PDF for .NET
@aspose-com-gists
aspose-com-gists / Aspose.XPS for .NET
Last active March 29, 2019 10:52
Aspose.XPS for .NET
Gist of Aspose.XPS for .NET
@aspose-com-gists
aspose-com-gists / 01_Aspose.Email for .NET
Last active January 3, 2023 09:45
Aspose.Email for .NET
Gists of Aspose.Email for .NET
@aspose-com-gists
aspose-com-gists / Aspose.BarCode for .NET
Last active July 8, 2021 06:36
Aspose.BarCode for .NET
Gists of Aspose.BarCode for .NET