PathResource Class

Summary: Represents Photoshop Path Resource.

Module: aspose.imaging.fileformats.tiff.pathresources

Full Name: aspose.imaging.fileformats.tiff.pathresources.PathResource

Aspose.Imaging Version: 24.7.0

Constructors

NameDescription
PathResource()Initializes a new instance of the PathResource class

Properties

NameTypeAccessDescription
block_idshortr/wGets or sets the block identifier.
namestringr/wGets or sets the name.
recordslist[aspose.imaging.fileformats.core.vectorpaths.VectorPathRecord]r/wGets or sets the records.

Constructor: PathResource()

 PathResource() 

Initializes a new instance of the PathResource class

Examples

Transfer Clipping Paths during export from TIFF to PSD image.


from aspose.imaging import Image
from aspose.imaging.imageoptions import PsdOptions

with Image.load("Sample.tif") as image:
	image.save("SampleWithPaths.psd", PsdOptions())