Aspose.PSD dla Javy 24.2 - Notatki wydania
Contents
 [
      
        Hide
      ]
    
Ta strona zawiera notatki wydania dla Aspose.PSD dla Javy 24.2
| Klucz | Podsumowanie | Kategoria | 
|---|---|---|
| PSDJAVA-584 | Obsługa właściwości kąta dla ustawień wypełnienia wzorcem. | Funkcja | 
| PSDJAVA-585 | Wsparcie skali pionowej i poziomej dla warstwy tekstowej. | Funkcja | 
| PSDJAVA-589 | [Format AI] Wdrożenie poprawnego renderowania tła w formacie AI opartym na PDF. | Funkcja | 
| PSDJAVA-590 | Zmiana mechanizmu zniekształcania w deformacji. | Usprawnienie | 
| PSDJAVA-591 | Przyspieszenie deformacji. | Usprawnienie | 
| PSDJAVA-592 | Błąd “Nie udało się załadować obrazu.” podczas otwierania dokumentu. | Błąd | 
| PSDJAVA-593 | Naprawienie zapisywania plików PSD zawierających wzorzec konturu. | Błąd | 
| PSDJAVA-594 | Styl tekstu jest nieprawidłowy w inteligentnym obiekcie przy użyciu ReplaceContents. | Błąd | 
| PSDJAVA-595 | [Format AI] Napraw rendering Beziera w pliku AI. | Błąd | 
Zmiany w API publicznym
Dodane API:
- M:com.aspose.psd.fileformats.ai.AiImage.getActivePageIndex
 - M:com.aspose.psd.fileformats.ai.AiImage.setActivePageIndex(int)
 - T:com.aspose.psd.fileformats.psd.layers.FillLayer
 - M:com.aspose.psd.fileformats.psd.layers.FillLayer.createInstance(int)
 - M:com.aspose.psd.fileformats.psd.layers.FillLayer.getFillSettings
 - M:com.aspose.psd.fileformats.psd.layers.FillLayer.getFillType
 - M:com.aspose.psd.fileformats.psd.layers.FillLayer.replaceNonTransparentColors(int)
 - M:com.aspose.psd.fileformats.psd.layers.FillLayer.setFillSettings(com.aspose.psd.fileformats.psd.layers.fillsettings.IFillSettings)
 - M:com.aspose.psd.fileformats.psd.layers.FillLayer.update
 - M:com.aspose.psd.fileformats.psd.layers.layerresources.PtFlResource.getAngle
 - M:com.aspose.psd.fileformats.psd.layers.layerresources.PtFlResource.setAngle(double)
 
Usunięte API:
- T:com.aspose.psd.fileformats.psd.layers.filllayers.FillLayer
 - M:com.aspose.psd.fileformats.psd.layers.filllayers.FillLayer.createInstance(int)
 - M:com.aspose.psd.fileformats.psd.layers.filllayers.FillLayer.getFillSettings
 - M:com.aspose.psd.fileformats.psd.layers.filllayers.FillLayer.getFillType
 - M:com.aspose.psd.fileformats.psd.layers.filllayers.FillLayer.replaceNonTransparentColors(int)
 - M:com.aspose.psd.fileformats.psd.layers.filllayers.FillLayer.setFillSettings(com.aspose.psd.fileformats.psd.layers.fillsettings.IFillSettings)
 - M:com.aspose.psd.fileformats.psd.layers.filllayers.FillLayer.update
 
Przykłady użycia:
** PSDJAVA-584. Obsługa właściwości kąta dla ustawień wypełnienia wzorcem**
    public static void main(String[] args) {
        String sourceFile = "src/main/resources/PatternFillLayerWide_0.psd";
        String outputFile = "src/main/resources/PatternFillLayerWide_0_output.psd";
        PsdLoadOptions psdLoadOptions = new PsdLoadOptions();
        psdLoadOptions.setLoadEffectsResource(true);
        try (PsdImage image = (PsdImage) Image.load(sourceFile, psdLoadOptions)) {
            FillLayer fillLayer = (FillLayer) image.getLayers()[1];
            PatternFillSettings fillSettings = (PatternFillSettings) fillLayer.getFillSettings();
            fillSettings.setAngle(70.0);
            fillLayer.update();
            image.save(outputFile, new PsdOptions());
        }
        try (PsdImage image = (PsdImage) Image.load(outputFile, psdLoadOptions)) {
            FillLayer fillLayer = (FillLayer) image.getLayers()[1];
            PatternFillSettings fillSettings = (PatternFillSettings) fillLayer.getFillSettings();
            assertAreEqual(70.0, fillSettings.getAngle());
        }
    }
    static void assertAreEqual(Object expected, Object actual) {
        assertAreEqual(expected, actual, "Obiekty nie są równe.");
    }
    static void assertAreEqual(Object expected, Object actual, String message) {
        if (!expected.equals(actual)) {
            throw new IllegalArgumentException(message);
        }
    }** PSDJAVA-585. Wsparcie skali pionowej i poziomej dla warstwy tekstowej**
        String src = "src/main/resources/1719_src.psd";
        String output = "src/main/resources/out_1719.png";
        try (PsdImage psdImage = (PsdImage) Image.load(src)) {
            psdImage.save(output, new PngOptions());
        }** PSDJAVA-589. [Format AI] Wdrożenie poprawnego renderowania tła w formacie AI opartym na PDF**
        String sourceFile = "src/main/resources/pineapples.ai";
        String outputFilePath = "src/main/resources/pineapples.png";
        try (AiImage image = (AiImage) Image.load(sourceFile)) {
            image.save(outputFilePath, new PngOptions());
        }** PSDJAVA-590. Zmiana mechanizmu zniekształcania w deformacji**
        String sourceFile = "src/main/resources/crow_grid.psd";
        String outputFile = "src/main/resources/export.png";
        PsdLoadOptions opt = new PsdLoadOptions();
        opt.setLoadEffectsResource(true);
        opt.setAllowWarpRepaint(true);
        try (PsdImage img = (PsdImage) Image.load(sourceFile, opt)) {
            PngOptions pngOptions = new PngOptions();
            pngOptions.setCompressionLevel(9);
            pngOptions.setColorType(PngColorType.TruecolorWithAlpha);
            img.save(outputFile, pngOptions);
        }** PSDJAVA-591. Przyspieszenie deformacji**
        String sourceFile = "src/main/resources/output.psd";
        String outputFile = "src/main/resources/export.png";
        PsdLoadOptions opt = new PsdLoadOptions();
        opt.setLoadEffectsResource(true);
        opt.setAllowWarpRepaint(true);
        long startTime = System.currentTimeMillis();
        try (PsdImage img = (PsdImage) Image.load(sourceFile, opt)) {
            PngOptions pngOptions = new PngOptions();
            pngOptions.setCompressionLevel(9);
            pngOptions.setColorType(PngColorType.TruecolorWithAlpha);
            img.save(outputFile, pngOptions);
        }
        long endTime = System.currentTimeMillis();
        int timeInSec = (int) (endTime - startTime);
        if (timeInSec > 100000) {
            throw new RuntimeException("Czas procesu jest zbyt długi");
        }** PSDJAVA-592. Błąd “Nie udało się załadować obrazu.” podczas otwierania dokumentu**
        String sourceFile1 = "src/main/resources/PRODUCT.ai";
        String outputFile1 = "src/main/resources/PRODUCT.png";
        try (AiImage image = (AiImage) Image.load(sourceFile1)) {
            image.save(outputFile1, new PngOptions());
        }
        String sourceFile2 = "src/main/resources/Dolota.ai";
        String outputFile2 = "src/main/resources/Dolota.png";
        try (AiImage image = (AiImage) Image.load(sourceFile2)) {
            image.save(outputFile2, new PngOptions());
        }
        String sourceFile3 = "src/main/resources/ARS_novelty_2108_out_01(1).ai";
        String outputFile3 = "src/main/resources/ARS_novelty_2108_out_01(1).png";
        try (AiImage image = (AiImage) Image.load(sourceFile3)) {
            image.save(outputFile3, new PngOptions());
        }
        String sourceFile4 = "src/main/resources/bit_gear.ai";
        String outputFile4 = "src/main/resources/bit_gear.png";
        try (AiImage image = (AiImage) Image.load(sourceFile4)) {
            image.save(outputFile4, new PngOptions());
        }
        String sourceFile5 = "src/main/resources/test.ai";
        String outputFile5 = "src/main/resources/test.png";
        try (AiImage image = (AiImage) Image.load(sourceFile5)) {
            image.save(outputFile5, new PngOptions());
        }** PSDJAVA-593. Naprawienie zapisywania plików PSD zawierających wzorzec konturu**
    public static void main(String[] args) {
        String sourceFile = "src/main/resources/StrokeShapePattern.psd";
        String outputFile = "src/main/resources/StrokeShapePattern_output.psd";
        Rectangle newPatternBounds = new Rectangle(0, 0, 4, 4);
        UUID guid = UUID.randomUUID();
        String newPatternName = "$$$/Presets/Patterns/HorizontalLine1=Horizontal Line 9\0";
        int[] newPattern = new int[]
                {
                        Color.getAqua().toArgb(), Color.getRed().toArgb(), Color.getRed().toArgb(), Color.getAqua().toArgb(),
                        Color.getAqua().toArgb(), Color.getWhite().toArgb(), Color.getWhite().toArgb(), Color.getAqua().toArgb(),
                        Color.getAqua().toArgb(), Color.getWhite().toArgb(), Color.getWhite().toArgb(), Color.getAqua().toArgb(),
                        Color.getAqua().toArgb(), Color.getRed().toArgb(), Color.getRed().toArgb(), Color.getAqua().toArgb(),
                };
        try (PsdImage image = (PsdImage) Image.load(sourceFile)) {
            ShapeLayer shapeLayer = (ShapeLayer) image.getLayers()[1];
            PatternFillSettings strokeInternalFillSettings = (PatternFillSettings) shapeLayer.getFill();
            PattResource pattResource;
            for (LayerResource globalLayerResource : image.getGlobalLayerResources()) {
                if (globalLayerResource instanceof PattResource) {
                    pattResource = (PattResource) globalLayerResource;
                    PattResourceData patternItem = pattResource.getPatterns()[0]; // Dane wewnętrznego wzorca konturu
                    patternItem.setPatternId(guid.toString());
                    patternItem.setName(newPatternName);
                    patternItem.setPattern(newPattern, newPatternBounds);
                    break;
                }
            }
            strokeInternalFillSettings.setPatternName(newPatternName);
            strokeInternalFillSettings.setPatternId(guid.toString() + "\0");
            shapeLayer.update();
            image.save(outputFile);
        }
        // Sprawdź zmienione dane.
        try (PsdImage image = (PsdImage) Image.load(outputFile)) {
            ShapeLayer shapeLayer = (ShapeLayer) image.getLayers()[1];
            PatternFillSettings strokeInternalFillSettings = (PatternFillSettings) shapeLayer.getFill();
            assertAreEqual(guid.toString().toUpperCase(), strokeInternalFillSettings.getPatternId());
            assertAreEqual(newPatternName, strokeInternalFillSettings.getPatternName() + "\0");
        }
    }
    static void assertAreEqual(Object expected, Object actual) {
        assertAreEqual(expected, actual, "Obiekty nie są równe.");
    }
    static void assertAreEqual(Object expected, Object actual, String message) {
        if (!expected.equals(actual)) {
            throw new IllegalArgumentException(message);
        }
    }** PSDJAVA-594. Styl tekstu jest nieprawidłowy w inteligentnym obiekcie przy użyciu ReplaceContents.**
        String inputFile = "src/main/resources/source.psd";
        String output2 = "src/main/resources/output.png";
        PsdLoadOptions psdLoadOptions = new PsdLoadOptions();
        psdLoadOptions.setLoadEffectsResource(true);
        try (PsdImage psdImage = (PsdImage) Image.load(inputFile, psdLoadOptions)) {
            SmartObjectLayer smartObject = (SmartObjectLayer) psdImage.getLayers()[1];
            try (PsdImage smartObjectImage = (PsdImage) smartObject.loadContents(psdLoadOptions)) {
                smartObject.replaceContents(smartObjectImage);
            }
            PngOptions pngOptions = new PngOptions();
            pngOptions.setColorType(PngColorType.TruecolorWithAlpha);
            psdImage.save(output2, pngOptions);
        }** PSDJAVA-595. [Format AI] Napraw rendering Beziera w pliku AI.**
        String sourceFile = "src/main/resources/Typography.ai";
        String outputFilePath = "src/main/resources/Typography.png";
        try (AiImage image = (AiImage) Image.load(sourceFile)) {
            image.save(outputFilePath, new PngOptions());
        }