Explore nuestros productos Toggle navigation
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.
If you experience errors, when you try to download a file, make sure your network policies (enforced by your company or ISP) allow downloading ZIP and/or MSI files.
Se agregó el soporte de la licencia SHA256.
SHA256
Esta versión de la API de manipulación de formato de Photoshop agrega la capacidad de generar un efecto de brillo mientras se procesan las imágenes.
El siguiente fragmento de código de C# muestra cómo puede configurar los valores de efecto para el rango, la dispersión, la opacidad y el modo de fusión a través de la API:
string src = "GreenLayer.psd"; string output = "output261.png"; using (var image = (PsdImage)Image.Load(src)) { OuterGlowEffect effect = image.Layers[1].BlendingOptions.AddOuterGlow(); effect.Range = 10; effect.Spread = 10; ((IColorFillSettings)effect.FillColor).Color = Color.Red; effect.Opacity = 128; effect.BlendMode = BlendMode.Normal; image.Save(output, new PngOptions()); }
Para obtener una lista completa de funciones, mejoras y correcciones de errores en esta versión, visite Aspose.PSD for .NET 22.4 - Release Notes.