Notes de publication Aspose.PSD pour .NET 24.4

Clé Résumé Catégorie
PSDNET-1871 [Format AI] Ajouter la gestion des ressources XObjectForm Fonctionnalité
PSDNET-1961 Ajouter un constructeur pour la ShapeLayer Fonctionnalité
PSDNET-1879 Correction de la conversion du fichier Psd de RVB en CMJN Problème
PSDNET-1966 Impossible d’exporter un fichier PSD spécifique à l’aide d’Aspose.PSD Problème

Modifications de l’API publique

APIs ajoutées :

  • M:Aspose.PSD.FileFormats.Psd.PsdImage.AddShapeLayer

APIs supprimées :

  • Aucune

Exemples d’utilisation :

PSDNET-1871. [Format AI] Ajouter la gestion des ressources XObjectForm

string fichierSource = Path.Combine(baseFolder, "exemple.ai");
string cheminFichierSortie = Path.Combine(outputFolder, "exemple.png");

utiliser (AiImage image = (AiImage)Image.Load(sourceFile))
{
    image.Save(outputFilePath, new PngOptions());
}

PSDNET-1879. Correction de la conversion du fichier Psd de RVB à CMJN

// Vérifier que le fichier psd converti à CMJN + RLE 4 canaux à partir du fichier psd en RVB + RLE 4 canaux, a vraiment 4 canaux
// et HasTransparencyData == faux.

string fichierSource = Path.Combine(baseFolder, "frog_nosymb.psd");
string fichierSortie = Path.Combine(outputFolder, "frog_nosymb_output.psd");

utiliser (PsdImage psdImage = (PsdImage)Image.Load(sourceFile))
{
    psdImage.HasTransparencyData = false;

    PsdOptions psdOptions = new PsdOptions(psdImage)
    {
        ColorMode = ColorModes.Cmyk,
        CompressionMethod = CompressionMethod.RLE,
        ChannelsCount = 4,
    };

    psdImage.Save(outputFile, psdOptions);
}

utiliser (PsdImage psdImage = (PsdImage)Image.Load(outputFile))
{
    AssertAreEqual(false, psdImage.HasTransparencyData);
    AssertAreEqual((ushort)4, psdImage.Layers[0].ChannelsCount);
}

void AssertAreEqual(object expected, object actual, string message = null)
{
    si (!object.Equals(expected, actual))
    {
        jeter une Exception(message ?? "Les objets ne sont pas égaux.");
    }
}

PSDNET-1961. Ajouter un constructeur pour la ShapeLayer

string fichierSortie = Path.Combine(outputFolder, "AddShapeLayer_output.psd");

const int ImgToPsdRatio = 256 * 65535;

utiliser (PsdImage newPsd = new PsdImage(600, 400))
{
    ShapeLayer layer = newPsd.AddShapeLayer();

    var newShape = GenerateNewShape(newPsd.Size);
    List<IPathShape> newShapes = new List<IPathShape>();
    newShapes.Add(newShape);
    layer.Path.SetItems(newShapes.ToArray());

    layer.Update();

    newPsd.Save(outputFile);
}

utiliser (PsdImage image = (PsdImage)Image.Load(outputFile))
{
    AssertAreEqual(2, image.Layers.Length);

    ShapeLayer shapeLayer = image.Layers[1] as ShapeLayer;
    ColorFillSettings internalFill = shapeLayer.Fill as ColorFillSettings;
    IStrokeSettings strokeSettings = shapeLayer.Stroke;
    ColorFillSettings strokeFill = shapeLayer.Stroke.Fill as ColorFillSettings;

    AssertAreEqual(1, shapeLayer.Path.GetItems().Length); // 1 Forme
    AssertAreEqual(3, shapeLayer.Path.GetItems()[0].GetItems().Length); // 3 points dans une forme

    AssertAreEqual(-16127182, internalFill.Color.ToArgb()); // ff09eb32

    AssertAreEqual(7.41, strokeSettings.Size);
    AssertAreEqual(false, strokeSettings.Enabled);
    AssertAreEqual(StrokePosition.Center, strokeSettings.LineAlignment);
    AssertAreEqual(LineCapType.ButtCap, strokeSettings.LineCap);
    AssertAreEqual(LineJoinType.MiterJoin, strokeSettings.LineJoin);
    AssertAreEqual(-16777216, strokeFill.Color.ToArgb()); // ff000000
}

PathShape GenerateNewShape(Size imageSize)
{
    var newShape = new PathShape();

    PointF point1 = new PointF(20, 100);
    PointF point2 = new PointF(200, 100);
    PointF point3 = new PointF(300, 10);

    BezierKnotRecord[] bezierKnots = new BezierKnotRecord[]
    {
         new BezierKnotRecord()
         {
             IsLinked = true,
             Points = new Point[3]
                      {
                          PointFToResourcePoint(point1, imageSize),
                          PointFToResourcePoint(point1, imageSize),
                          PointFToResourcePoint(point1, imageSize),
                      }
         },
         new BezierKnotRecord()
         {
             IsLinked = true,
             Points = new Point[3]
                      {
                          PointFToResourcePoint(point2, imageSize),
                          PointFToResourcePoint(point2, imageSize),
                          PointFToResourcePoint(point2, imageSize),
                      }
         },
         new BezierKnotRecord()
         {
             IsLinked = true,
             Points = new Point[3]
                      {
                          PointFToResourcePoint(point3, imageSize),
                          PointFToResourcePoint(point3, imageSize),
                          PointFToResourcePoint(point3, imageSize),
                      }
         },
    };

    newShape.SetItems(bezierKnots);

    return newShape;
}

Point PointFToResourcePoint(PointF point, Size imageSize)
{
    return new Point(
        (int)Math.Round(point.Y * (ImgToPsdRatio / imageSize.Height)),
        (int)Math.Round(point.X * (ImgToPsdRatio / imageSize.Width)));
}

void AssertAreEqual(object expected, object actual, string message = null)
{
    si (!object.Equals(expected, actual))
    {
        jeter une Exception(message ?? "Les objets ne sont pas égaux.");
    }
}

PSDNET-1966. Impossible d’exporter un fichier PSD spécifique à l’aide d’Aspose.PSD

string fichierSource = Path.Combine(baseFolder, "1966source.psd");
string sortiePng = Path.Combine(outputFolder, "sortie.png");

utiliser (var psdImage = (PsdImage)Image.Load(sourceFile, new PsdLoadOptions() { LoadEffectsResource = true }))
{
    psdImage.Save(outputPng, new PngOptions());
}