Learn how to Shrink a PDF Size Online in Seconds or Build Your Own Tool
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.ThreeD; | |
using Aspose.ThreeD.Formats; | |
namespace AsposeThreeD | |
{ | |
class Graphics | |
{ | |
// Convert OBJ to PLY in C# | |
static void Main(string[] args) | |
{ | |
// Define the directory path. |
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.ThreeD; | |
using Aspose.ThreeD.Formats; | |
namespace AsposeThreeD | |
{ | |
class Graphics | |
{ | |
// Convert 3MF to STL in C# | |
static void Main(string[] args) | |
{ | |
// Set the directory path. |
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 required classes from Aspose.PSD | |
import aspose.psd as psd | |
from aspose.psd import Image, ResizeType, Color, Rectangle | |
from aspose.psd.fileformats.png import PngColorType | |
from aspose.psd.fileformats.psd import PsdImage | |
from aspose.psd.imageloadoptions import PsdLoadOptions | |
from aspose.psd.imageoptions import PngOptions | |
from aspose.pycore import cast | |
# Define input PSD file and output PNG file paths. |
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 necessary modules from Aspose.PSD for image processing | |
import aspose.psd as psd | |
from aspose.psd import Color | |
from aspose.psd.fileformats.core.blending import BlendMode | |
from aspose.psd.imageoptions import PngOptions | |
from aspose.pycore import cast | |
from aspose.psd.fileformats.png import PngColorType | |
from aspose.psd.fileformats.psd import PsdImage | |
# Define file paths |
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 required modules from Aspose.PSD | |
import aspose.psd as psd | |
from aspose.psd import Graphics, Pen, Color, Rectangle | |
from aspose.psd.brushes import LinearGradientBrush | |
from aspose.psd.fileformats.psd import PsdImage | |
# Define the output file name | |
outputFile = "CreateFileFromScratchExample.psb" | |
# Create a new PSD image with 500x500 dimensions. |
Learn how to Extract JPG Text Using Python and Aspose.OCR
Learn how to Convert Image Text to Editable Text Using Aspose.OCR
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.Imaging; | |
using Aspose.Imaging.ImageOptions; | |
namespace CSharp.ModifyingAndConvertingImages.CDR | |
{ | |
class CdrToPngExample | |
{ | |
static void Main() | |
{ | |
// The path to the documents directory. |
NewerOlder