Anahtar Özet Kategori
PSDPYTHON-81 [AI Format] XObject Grupları için işleme ekle İyileştirme
PSDPYTHON-82 Metin Katmanı ve Akıllı Nesne Katmanı için Warp Dönüşüm yeteneklerini geliştir Özellik
PSDPYTHON-83 [AI Format] İçerik akışı operatörlerinde katmanları işle Özellik
PSDPYTHON-84 AI dosyasının render sonucu, Illustrator sonuçlarıyla karşılaştırıldığında çok farklı Hata
PSDPYTHON-85 Akıllı Nesne Bağlantısını PSD dosyasındaki tüm Akıllı Nesnelere uygulamaz Hata

Genel API Değişiklikleri

Yeni Eklenen API’lar:

Kaldırılan API’lar:

Kullanım örnekleri:

PSDPYTHON-81. [AI Format] XObject Grupları için işleme ekle

#Örnek yok. İçsel bir iyileştirme

PSDPYTHON-82. Metin Katmanı ve Akıllı Nesne Katmanı için Warp dönüşüm yeteneklerini artırma

        sourceFile = "smart_without_warp.psd"

        opt = PsdLoadOptions()
        opt.load_effects_resource = True
        opt.allow_warp_repaint = True
        outputImageFile = [None] * 4
        outputPsdFile = [None] * 4
        pngOpt = PngOptions()
        pngOpt.compression_level = 9
        pngOpt.color_type = PngColorType.TRUECOLOR_WITH_ALPHA

        for caseIndex in range(len(outputImageFile)):
            outputImageFile[caseIndex] = "export_" + str(caseIndex) + ".png"
            outputPsdFile[caseIndex] = "export_" + str(caseIndex) + ".psd"

            with PsdImage.load(sourceFile, opt) as image:
                img = cast(PsdImage, image)
                for layer in img.layers:
                    if is_assignable(layer, SmartObjectLayer):
                        smartLayer = cast(SmartObjectLayer, layer)
                        smartLayer.warp_settings = GetWarpSettingsByIndex(smartLayer.warp_settings, caseIndex)

                    if is_assignable(layer, TextLayer):
                        textLayer = cast(TextLayer, layer)
                        if caseIndex != 3:
                            textLayer.warp_settings = GetWarpSettingsByIndex(textLayer.warp_settings, caseIndex)

                img.save(outputPsdFile[caseIndex], PsdOptions())
                img.save(outputImageFile[caseIndex], PsdOptions())

            with PsdImage.load(outputPsdFile[caseIndex], opt) as img:
                img.save(outputImageFile[caseIndex], pngOpt)

        def GetWarpSettingsByIndex(warpParams, caseIndex):
            switcher = {
                0: {"Style": WarpStyles.RISE, "Rotate": WarpRotates.HORIZONTAL, "Value": 20},
                1: {"Style": WarpStyles.RISE, "Rotate": WarpRotates.VERTICAL, "Value": 10},
                2: {"Style": WarpStyles.FLAG, "Rotate": WarpRotates.HORIZONTAL, "Value": 30},
                3: {"Style": WarpStyles.CUSTOM}
            }
            params = switcher.get(caseIndex)
            if params:
                warpParams.style = params.get("Style")
                if params.get("Rotate") is not None:
                    warpParams.rotate = params.get("Rotate")
                if params.get("Value") is not None:
                    warpParams.value = params.get("Value")
                if caseIndex == 3:
                    warpParams.mesh_points[2].y += 70

            return warpParams

PSDPYTHON-83. [AI Format] İçerik akışı operatörlerinde katmanları işleme

        sourceFile = "Layers-NoPen.ai"
        outputFile = "Layers-NoPen.output.png"

        with AiImage.load(sourceFile) as image:
            image.save(outputFile, PngOptions())    

PSDPYTHON-84. AI dosyasının render sonucu, Illustrator sonuçlarıyla karşılaştırıldığında çok farklı

        sourceFile = "4.ai"
        outputFile = "4_output.png"
        referenceFile = "4_ethalon.png"

        with AiImage.load(sourceFile) as image:
            image.save(outputFile, PngOptions())

PSDPYTHON-85. Akıllı Nesne Bağlantısını PSD dosyasındaki tüm Akıllı Nesnelere uygulamaz

        dosyalar = ["simple_test", "w22"]
        change_file = "image(19).png"

        for file in dosyalar:
            kaynak_dosya = file + ".psd"
            çıktı_dosyası = file + "_output.psd"
            with Image.load(kaynak_dosya) as img:
                image = cast(PsdImage, img)
                for layer in image.layers:
                    if is_assignable(layer, SmartObjectLayer):
                        smart_layer = cast(SmartObjectLayer, layer)
                        smart_layer.replace_contents(change_file)
                image.save(çıktı_dosyası)