Aspose.PSD for Python via .NET 24.5 - リリースノート
Contents
[
Hide
]
このページには、Aspose.PSD for Python via .NET 24.5 のリリースノートが含まれています。
キー | 概要 | カテゴリ |
---|---|---|
PSDPYTHON-60 | [AI フォーマット] EPSF ヘッダーを持つ AI ファイルの処理サポートを追加 | 機能 |
PSDPYTHON-59 | PSD ファイルプレビューで半透明が誤って処理される | バグ |
PSDPYTHON-61 | 形状レイヤーの一部が不正確にレンダリングされる | バグ |
PSDPYTHON-62 | 200 MB を超えるサイズや大きい寸法の PSD ファイルを保存すると例外が発生する | バグ |
PSDPYTHON-63 | 23.7 から 24.3 へのアップデート後に PDF へ保存する際に画像の保存に失敗した例外が発生 | バグ |
PSDPYTHON-64 | 中国語フォントに対する GetFontInfoRecords メソッドの問題を修正 | バグ |
公開 API の変更
新しい API:
- P:Aspose.PSD.ImageOptions.PsdOptions.BackgroundContents
- P:Aspose.PSD.FileFormats.Ai.AiLayerSection.HasMultiLayerMasks
- P:Aspose.PSD.FileFormats.Ai.AiLayerSection.ColorIndex
削除された API:
- なし
使用例:
PSDPYTHON-59. PSD ファイルプレビューで半透明が誤って処理される
// PSD ファイルプレビューで半透明が誤って処理されます。
// BackgroundContents が White に割り当てられています。透明領域は白色にする必要があります。
sourceFile = "frog_nosymb.psd"
outputFile = "frog_nosymb_backgroundcontents_output.psd"
with PsdImage.load(sourceFile) as psdImage:
backgroundColor = RawColor(PixelDataFormat.rgb_32_bpp, 0)
argbValue = ctypes.c_int32(255 << 24 | 255 << 16 | 255 << 8 | 255).value
backgroundColor.set_as_int(argbValue) # White
psdOptions = PsdOptions(psdImage)
psdOptions.color_mode = ColorModes.RGB
psdOptions.compression_method = CompressionMethod.RLE
psdOptions.channels_count = 4
psdOptions.background_contents = backgroundColor
psdImage.save(outputFile, psdOptions)
PSDPYTHON-60. [AI フォーマット] EPSF ヘッダーを持つ AI ファイルの処理サポートを追加
sourceFile = "example.ai"
outputFilePath = "example.png"
def assert_are_equal(expected, actual):
if expected != actual:
raise Exception("Objects are not equal.")
with AiImage.load(sourceFile) as img:
image = cast(AiImage, img)
assert_are_equal(len(image.layers), 2)
assert_are_equal(image.layers[0].has_multi_layer_masks, False)
assert_are_equal(image.layers[0].color_index, -1)
assert_are_equal(image.layers[1].has_multi_layer_masks, False)
assert_are_equal(image.layers[1].color_index, -1)
image.save(outputFilePath, PngOptions())
PSDPYTHON-61. 形状レイヤーの一部が不正確にレンダリングされる
sourceFile = "ShapeLayerTest.psd"
outputFile = "ShapeLayerTest_output.psd"
with PsdImage.load(sourceFile) as image:
im = cast(PsdImage, image)
shapeLayer = cast(ShapeLayer, im.layers[2])
path = shapeLayer.path
pathShapes = path.get_items()
knotsList = []
for pathShape in pathShapes:
knots = pathShape.get_items()
knotsList.extend(knots)
newShape = PathShape()
bezierKnot1 = BezierKnotRecord()
bezierKnot1.is_linked=True
bezierKnot1.points=[
PointFToResourcePoint(PointF(100, 100), shapeLayer.container.size),
PointFToResourcePoint(PointF(100, 100), shapeLayer.container.size),
PointFToResourcePoint(PointF(100, 100), shapeLayer.container.size)
]
bezierKnot2 = BezierKnotRecord()
bezierKnot2.is_linked=True
bezierKnot2.points=[
PointFToResourcePoint(PointF(50, 490), shapeLayer.container.size),
PointFToResourcePoint(PointF(100, 490), shapeLayer.container.size),
PointFToResourcePoint(PointF(150, 490), shapeLayer.container.size)
]
bezierKnot3 = BezierKnotRecord()
bezierKnot3.is_linked=True
bezierKnot3.points=[
PointFToResourcePoint(PointF(490, 150), shapeLayer.container.size),
PointFToResourcePoint(PointF(490, 50), shapeLayer.container.size),
PointFToResourcePoint(PointF(490, 20), shapeLayer.container.size)
]
bezierKnots = [
bezierKnot1,
bezierKnot2,
bezierKnot3
]
newShape.set_items(bezierKnots)
newShapes = list(pathShapes)
newShapes.append(newShape)
pathShapeNew = newShapes
path.set_items(pathShapeNew)
shapeLayer.update()
im.save(outputFile, PsdOptions())
with PsdImage.load(outputFile) as image:
im = cast(PsdImage, image)
shapeLayer = cast(ShapeLayer, im.layers[2])
path = shapeLayer.path
pathShapes = path.get_items()
knotsList = []
for pathShape in pathShapes:
knots = pathShape.get_items()
knotsList.extend(knots)
assert len(pathShapes) == 3
assert shapeLayer.left == 42
assert shapeLayer.top == 14
assert shapeLayer.bounds.width == 1600
assert shapeLayer.bounds.height == 1086
PSDPYTHON-62. 200 MB を超えるサイズや大きい寸法の PSD ファイルを保存すると例外が発生する
sourceFile = "bigfile.psd"
outputFile = "output_raw.psd"
referenceFile = "output_raw.psd"
loadOptions = PsdLoadOptions()
loadOptions.load_effects_resource = True
loadOptions.use_disk_for_load_effects_resource = True
with PsdImage.load(sourceFile, loadOptions) as psdImage:
opt = PsdOptions()
opt.compression_method = CompressionMethod.RLE
psdImage.save(outputFile, opt)
PSDPYTHON-63. 23.7 から 24.3 へのアップデート後に PDF へ保存する際に画像の保存に失敗した例外が発生
sourceFile = "CVFlor.psd"
outputFile = "_export.pdf"
with PsdImage.load(sourceFile) as psdImage:
saveOptions = PdfOptions()
saveOptions.pdf_core_options = PdfCoreOptions()
psdImage.save(outputFile, saveOptions)
PSDPYTHON-64. 中国語フォントに対する GetFontInfoRecords メソッドの問題を修正
fontFolder = "Font"
sourceFile = "bd-worlds-best-pink.psd"
psdLoadOptions = PsdLoadOptions()
psdLoadOptions.load_effects_resource = True
psdLoadOptions.allow_warp_repaint = True
try:
FontSettings.set_fonts_folders([fontFolder], True)
FontSettings.update_fonts()
with PsdImage.load(sourceFile, psdLoadOptions) as img:
image = cast(PsdImage, img)
for layer in image.layers:
if is_assignable(layer, TextLayer):
textLayer = cast(TextLayer, layer)
if textLayer.text == "best":
// この修正がないと、中国語フォントのために例外が発生します。
textLayer.update_text("SUCCESS")
finally:
FontSettings.reset()
FontSettings.update_fonts()