Browse our Products

If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.

KeySummaryCategory
PSDPYTHON-150Replace content in many smart objects that have the same source referenceFeature
PSDPYTHON-151[AI Format] Resolving intersecting paths rendering issueFeature

Public API Changes

Added APIs:

  • M:Aspose.PSD.FileFormats.Psd.Layers.SmartObjects.SmartObjectLayer.ReplaceContents(System.String,System.Boolean)
  • M:Aspose.PSD.FileFormats.Psd.Layers.SmartObjects.SmartObjectLayer.ReplaceContents(System.String,Aspose.PSD.ResolutionSetting,System.Boolean)

Removed APIs:

  • None

Usage examples:

PSDPYTHON-150. Replace content in many smart objects that have the same source reference

src_file = self.GetFileInBaseFolder("Source.psd")
replace_all = "replaceAll.jpg"
replace_one = "replaceOne.jpg"
out_file_img_all = "output_All.png"
out_file_img_one = "output_one.png"

# This will replace the same context in all smart layers with the same link.
with PsdImage.load(src_file) as image:
	img = cast(PsdImage, image)
	smart_object_layer = cast(SmartObjectLayer, img.layers[1])  # Assuming the layer is at index 1
	# This will replace the content in all SmartLayers that use the same content.
	smart_object_layer.replace_contents(replace_all, False)
	smart_object_layer.update_modified_content()

	img.save(out_file_img_all, PngOptions())

	# This will replace the context of only the selected layer, leaving all others with the same context alone.
with PsdImage.load(src_file) as image:
	img = cast(PsdImage, image)
	smart_object_layer = cast(SmartObjectLayer, img.layers[1])  # Again, assuming the layer is at index 1
	# It replaces the content in the selected SmartLayer only.
	smart_object_layer.replace_contents(replace_one, True)
	smart_object_layer.update_modified_content()

	img.save(out_file_img_one, PngOptions())

PSDPYTHON-151. [AI Format] Resolving intersecting paths rendering issue

source_file = "ex.ai"
output_file = "ex.png"

with AiImage.load(source_file) as image:  # Assuming AiImage has a similar load method
	img = cast(AiImage, image)
	img.active_page_index = 8  # Assuming the property name is similar
	img.save(output_file, PngOptions())