Explore nuestros productos

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.

 

Aspose.PSD para .NET 22.1

Descargar  Foro de soporte 

detalles del archivo

  • Descargas:
  • 18
  • Tamaño del archivo:
  • 22.5 MB
  • Posted By:
  • DmitriySorokin
  • Vistas:
  • 34
  • Fecha de adición:
  • 12/28/2021

Notas de lanzamiento

Descripción

Contiene Aspose.PSD para la versión .NET 22.1.

detalles del archivo

Aplicación mejorada de la superposición de patrones

Anteriormente, PatternOverlay solo se podía aplicar una vez. Ahora este problema se ha solucionado en la API.

Representación optimizada de desenfoque gaussiano

Capacidad para renderizar el filtro inteligente Gaussian Blur de una manera más optimizada. El siguiente es un ejemplo de código C# para aplicar el desenfoque gaussiano a través de la API:

string sourceFilte = "psdnet991_layers.psd";
string outputPsd = "out_psdnet991_layers.psd";
string outputPng = "out_psdnet991_layers.png";

    using (var image = (PsdImage)Image.Load(sourceFilte))
    {
        SmartObjectLayer smartLayer = (SmartObjectLayer)image.Layers[1];
        Layer maskLayer = image.Layers[2];
        Layer regularLayer = image.Layers[3];

        GaussianBlurSmartFilter gaussianBlur = new GaussianBlurSmartFilter();
        gaussianBlur.Radius = 10;

        // Apply filter to SmartObject
        gaussianBlur.Apply(smartLayer);
        smartLayer.SmartFilters.UpdateResourceValues();
        smartLayer.UpdateModifiedContent();

        // Apply filter to layer mask
        gaussianBlur.ApplyToMask(maskLayer);

        //Apply filter to layer
        gaussianBlur.Apply(regularLayer);

        image.Save(outputPsd);
        image.Save(outputPng, new PngOptions() { ColorType = PngColorType.TruecolorWithAlpha });
    }

Soporte mejorado de PattResource

Se agregó el soporte de muchos datos de patrones en PattResource.

Para obtener una lista completa de funciones, mejoras y correcciones de errores en esta versión, visite Aspose.PSD for .NET 22.1 - Release Notes.

 Español