ExportShapesAsSvg

HtmlSaveOptions.ExportShapesAsSvg property

Controlla seShape nodi vengono convertiti in immagini SVG quando si salva in HTML, MHTML, EPUB o AZW3. Il valore predefinito èfalso .

public bool ExportShapesAsSvg { get; set; }

Osservazioni

Se questa opzione è impostata suVERO ,Shape i nodi vengono esportati come elementi <svg>. Altrimenti, vengono renderizzati in bitmap e vengono esportati come elementi <img>.

Esempi

Mostra come esportare la forma come grafica vettoriale scalabile.

Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);

Shape textBox = builder.InsertShape(ShapeType.TextBox, 100.0, 60.0);
builder.MoveTo(textBox.FirstParagraph);
builder.Write("My text box");

// Quando salviamo il documento in HTML, possiamo passare un oggetto SaveOptions
// per determinare in che modo l'operazione di salvataggio esporterà le forme delle caselle di testo.
// Se impostiamo il flag "ExportTextBoxAsSvg" su "true",
// l'operazione di salvataggio convertirà le forme con testo in oggetti SVG.
// Se impostiamo il flag "ExportTextBoxAsSvg" su "false",
// l'operazione di salvataggio convertirà le forme con testo in immagini.
HtmlSaveOptions options = new HtmlSaveOptions { ExportShapesAsSvg = exportShapesAsSvg };

doc.Save(ArtifactsDir + "HtmlSaveOptions.ExportTextBox.html", options);

string outDocContents = File.ReadAllText(ArtifactsDir + "HtmlSaveOptions.ExportTextBox.html");

if (exportShapesAsSvg)
{
    Assert.True(outDocContents.Contains(
        "<span style=\"-aw-left-pos:0pt; -aw-rel-hpos:column; -aw-rel-vpos:paragraph; -aw-top-pos:0pt; -aw-wrap-type:inline\">" +
        "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" versione=\"1.1\" larghezza=\"133\" altezza= \"80\">"));
}
else
{
    Assert.True(outDocContents.Contains(
        "<p style=\"margin-top:0pt; margin-bottom:0pt\">" +
            "<img src=\"HtmlSaveOptions.ExportTextBox.001.png\" width=\"136\" height=\"83\" alt=\"\" " +
            "style=\"-aw-left-pos:0pt; -aw-rel-hpos:column; -aw-rel-vpos:paragraph; -aw-top-pos:0pt; -aw-wrap-type:inline\" />" +
        "</p>"));
}

Guarda anche