Class AiLayerSection

AiLayerSection class

La sezione Layer in formato Ai

public sealed class AiLayerSection : AiDataSection

Proprietà

NomeDescrizione
Blue { get; set; }Ottiene o imposta il componente del colore blu.
ColorNumber { get; set; }Ottiene o imposta il numero del colore. -1 è il valore del colore personalizzato dalle proprietà Rosso, Verde, Blu. Specifica l’impostazione del colore del livello.
DimValue { get; set; }Ottiene o imposta il valore dim come percentuale. Riduce l’intensità delle immagini collegate e delle immagini bitmap contenute nel livello alla percentuale specificata.
Disposed { get; }Ottiene un valore che indica se questa istanza è stata eliminata.
Green { get; set; }Ottiene o imposta il componente del colore verde.
IsImagesDimmed { get; set; }Ottiene o imposta un valore che indica se questo livello è oscurato. Riduce l’intensità delle immagini collegate e delle immagini bitmap contenute nel livello.
IsLocked { get; set; }Ottiene o imposta un valore che indica se questo livello è bloccato. Impedisce le modifiche all’elemento.
IsPreview { get; set; }Ottiene o imposta un valore che indica se questo livello è un’anteprima. Visualizza la grafica contenuta nel livello a colori anziché come contorni.
IsPrinted { get; set; }Ottiene o imposta un valore che indica se questo livello è stampato. Rende stampabile l’immagine contenuta nel livello se true.
IsShown { get; set; }Ottiene o imposta un valore che indica se questo livello è mostrato. Visualizza tutti gli elementi grafici contenuti nel livello sulla tavola da disegno se vero.
IsTemplate { get; set; }Ottiene o imposta un valore che indica se questo livello è un livello modello.
Name { get; set; }Ottiene o imposta il nome del livello. Specifica il nome dell’elemento così come appare nel pannello Livelli.
RasterImages { get; }Ottiene le immagini raster.
Red { get; set; }Ottiene o imposta il componente del colore rosso.

Metodi

NomeDescrizione
AddRasterImage(AiRasterImageSection)Aggiunge l’immagine raster.
Dispose()Elimina l’istanza corrente.
GetData()Ottiene i dati della stringa.

Esempi

Il codice seguente mostra come caricare le impostazioni delle immagini raster nei file in formato AI.

[C#]

const double DefaultTolerance = 1e-6;

void AssertIsTrue(bool condition, string message)
{
    if (!condition)
    {
        throw new FormatException(message);
    }
}

string sourceFile = "sample.ai";
using (AiImage image = (AiImage)Image.Load(sourceFile))
{
    AiLayerSection layer = image.Layers[0];

    AssertIsTrue(layer.RasterImages != null, "RasterImages property should be not null");
    AssertIsTrue(layer.RasterImages.Length == 1, "RasterImages property should contain exactly one item");

    AiRasterImageSection rasterImage = layer.RasterImages[0];
    AssertIsTrue(rasterImage.Pixels != null, "rasterImage.Pixels property should be not null");
    AssertIsTrue(rasterImage.Pixels.Length == 100, "rasterImage.Pixels property should contain exactly 100 items");
    AssertIsTrue((uint)rasterImage.Pixels[99] == 0xFFB21616, "rasterImage.Pixels[99] should be 0xFFB21616");
    AssertIsTrue((uint)rasterImage.Pixels[19] == 0xFF00FF00, "rasterImage.Pixels[19] should be 0xFF00FF00");
    AssertIsTrue((uint)rasterImage.Pixels[10] == 0xFF01FD00, "rasterImage.Pixels[10] should be 0xFF01FD00");
    AssertIsTrue((uint)rasterImage.Pixels[0] == 0xFF0000FF, "rasterImage.Pixels[0] should be 0xFF0000FF");
    AssertIsTrue(Math.Abs(0.999875 - rasterImage.Width) < DefaultTolerance, "rasterImage.Width should be 0.99987");
    AssertIsTrue(Math.Abs(0.999875 - rasterImage.Height) < DefaultTolerance, "rasterImage.Height should be 0.99987");
    AssertIsTrue(Math.Abs(387 - rasterImage.OffsetX) < DefaultTolerance, "rasterImage.OffsetX should be 387");
    AssertIsTrue(Math.Abs(379 - rasterImage.OffsetY) < DefaultTolerance, "rasterImage.OffsetY should be 379");
    AssertIsTrue(Math.Abs(0 - rasterImage.Angle) < DefaultTolerance, "rasterImage.Angle should be 0");
    AssertIsTrue(Math.Abs(0 - rasterImage.LeftBottomShift) < DefaultTolerance, "rasterImage.LeftBottomShift should be 0");
    AssertIsTrue(Math.Abs(0 - rasterImage.ImageRectangle.X) < DefaultTolerance, "rasterImage.ImageRectangle.X should be 0");
    AssertIsTrue(Math.Abs(0 - rasterImage.ImageRectangle.Y) < DefaultTolerance, "rasterImage.ImageRectangle.Y should be 0");
    AssertIsTrue(Math.Abs(10 - rasterImage.ImageRectangle.Width) < DefaultTolerance, "rasterImage.ImageRectangle.Width should be 10");
    AssertIsTrue(Math.Abs(10 - rasterImage.ImageRectangle.Height) < DefaultTolerance, "rasterImage.ImageRectangle.Height should be 10");
}

Guarda anche