Smart Object Update and Export using Aspose.PSD for Python
概要
Aspose.PSD for Pythonを使用してPSDファイル内のスマートオブジェクトレイヤーを更新およびエクスポート
PSDファイル内のスマートオブジェクトレイヤーを使用すると、Photoshopデザイン内で外部画像を埋め込み、操作することができます。Aspose.PSD for Pythonを使用すると、スマートオブジェクトレイヤーの更新とエクスポートが簡単に行え、画像編集や操作の強力な機能が提供されます。
本記事では、Aspose.PSD for Pythonを使用してスマートオブジェクトレイヤーを更新およびエクスポートする手順について詳しく説明します。
Shape Layers は、Aspose.PSD for Pythonにおける重要な機能であり、non-destructiveな方法でPSDイメージ内でレイヤーを作成および操作できます。
使用例シナリオ “new_panama-papers-8-trans4.psd” という名前のPSDファイルは、スマートオブジェクトレイヤーを含んでいます。このスマートオブジェクトレイヤーの内容を画像の反転して更新し、修正されたPSDファイルをエクスポートしたいとします。
-
PSDファイルの読み込み まずは、Aspose.PSDライブラリからImage.loadメソッドを使用してPSDファイルを読み込む必要があります。これにより、PSDファイル内のレイヤーにアクセスできます。
-
スマートオブジェクトレイヤーの内容のエクスポート スマートオブジェクトレイヤーの内容をエクスポートするには、SmartObjectLayerクラスのexport_contentsメソッドを使用できます。このメソッドを使用すると埋め込まれたイメージを別のファイルとして保存できます。
-
スマートオブジェクトレイヤーの操作 次に、スマートオブジェクトレイヤーの内容を操作します。たとえば、invert_image関数を使用して画像を反転させることができます。
-
修正された内容の更新 スマートオブジェクトレイヤーを操作した後は、smart_object_providerクラスのupdate_all_modified_contentメソッドを使用して修正された内容を更新する必要があります。これにより、変更が対応するレイヤーに適用されます。
-
修正されたPSDファイルの保存 最後に、更新されたスマートオブジェクトレイヤーを含む修正されたPSDファイルを保存できます。saveメソッドを使用して、所望の形式とオプション用のPsdOptionsを指定します。
** 結論 ** 本記事では、Aspose.PSD for Pythonを使用してPSDファイル内のスマートオブジェクトレイヤーを更新およびエクスポートする方法について学びました。提供された手順に従うことで、スマートオブジェクトレイヤーの内容を簡単に操作およびエクスポートし、画像編集やカスタマイズの幅広い可能性が開けます。
Aspose.PSD for Pythonは、PSDファイルを操作するための包括的な機能とAPIを提供し、Photoshopデザインを扱うPython開発者にとって強力なツールとなります。
Aspose.PSD for Pythonについて詳しく学び、その機能を探索するには、公式ドキュメントとAPIリファレンスを参照してください。
完全な例をご確認ください。
例
from aspose.psd import Image, RasterImage | |
from aspose.psd.fileformats.psd import PsdImage | |
from aspose.psd.fileformats.psd.layers.smartobjects import SmartObjectLayer | |
from aspose.psd.imageoptions import PsdOptions | |
from aspose.pycore import cast | |
# Just inverts all data of image | |
def invert_image(image): | |
pixels = image.load_argb_32_pixels(image.bounds) | |
for i in range(len(pixels)): | |
pixel = pixels[i] | |
alpha = pixel & 0xff000000 | |
pixels[i] = (~ (pixel & 0x00ffffff)) | alpha | |
image.save_argb_32_pixels(image.bounds, pixels) | |
# Demonstation of API to work woth Smart Object Layers | |
def SmartObjectManipulationTest(): | |
source = "new_panama-papers-8-trans4.psd" | |
export_content_path = "export_content.jpg" | |
output_original = "smart_object_orig.psd" | |
output_updated = "smart_object.psd" | |
with Image.load(source) as image: | |
im = cast(PsdImage, image) | |
im.save(output_original) | |
smartLayer = cast(SmartObjectLayer, im.layers[0]) | |
# How to export content of Smart Object | |
smartLayer.export_contents(export_content_path) | |
# Creating Smart Object as a Copy | |
newLayer = smartLayer.new_smart_object_via_copy() | |
newLayer.is_visible = False | |
newLayer.display_name = "Duplicate" | |
# Get the content of Smart Object for manipulation | |
with smartLayer.load_contents(None) as innerImage: | |
layer = cast(RasterImage, innerImage) | |
invert_image(layer) | |
smartLayer.replace_contents(layer) | |
im.smart_object_provider.update_all_modified_content() | |
psd_options = PsdOptions(im) | |
im.save(output_updated, psd_options) |