/ Published in: C#
This technical tip shows how .NET developers can add line object to an Existing PDF File inside their .NET applications. Aspose.Pdf for .NET supports the feature to add graph objects (for example graph, line, rectangle etc.) to PDF documents. You also get the leverage to add Line object where you can also specify the dash pattern, color and other formatting for Line element. The legacy Aspose.Pdf.Generator provides the feature to set DashLengthInBlack and DashLengthInWhite properties where dash pattern for line object can be defined. Similar features can be accomplished while using DOM approach.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
//The following code snippet shows how to add a Rectangle object that is filled with color. //[C# Code] // Create Document instance // Add page to pages collection of PDF file Page page = doc.Pages.Add(); // Create Graph instance // Add graph object to paragraphs collection of page instance page.Paragraphs.Add(graph); // Create Rectangle instance // Specify fill color for Graph object line.GraphInfo.DashPhase = 1; // Add rectangle object to shapes collection of Graph object graph.Shapes.Add(line); // Save PDF file doc.Save("c:/pdftest/LineAdded.pdf"); //[VB.NET Code] ' Create Document instance Dim doc As Document = New Document() ' Add page to pages collection of PDF file Dim page As Page = doc.Pages.Add() ' Create Graph instance Dim graph As Aspose.Pdf.Drawing.Graph = New Aspose.Pdf.Drawing.Graph(100, 400) ' Add graph object to paragraphs collection of page instance page.Paragraphs.Add(graph) ' Create Rectangle instance Dim line As Aspose.Pdf.Drawing.Line = New Aspose.Pdf.Drawing.Line(New Single() {100, 100, 200, 100}) ' Specify fill color for Graph object line.GraphInfo.DashPhase = 1 ' Add rectangle object to shapes collection of Graph object graph.Shapes.Add(line) ' Save PDF file doc.Save("c:/pdftest/LineAdded.pdf") //DashLengthInBlack and DashLengthInWhite properties for Line object //[C# Code] // instantiate Document instance // add page to pages collection of Document object Page page = doc.Pages.Add(); // create Drawing object with certain dimensions // add drawing object to paragraphs collection of page instance page.Paragraphs.Add(canvas); // create Line object // set color for Line object line.GraphInfo.Color = Aspose.Pdf.Color.Red; // specify dash array for line object // set the dash phase for Line instance line.GraphInfo.DashPhase = 1; // add line to shapes collection of drawing object canvas.Shapes.Add(line); // save PDF document doc.Save("c:/DashLineInBlack.pdf"); //[VB.NET Code] ' instantiate Document instance Dim doc As Document = New Document() ' add page to pages collection of Document object Dim page As Page = doc.Pages.Add() ' create Drawing object with certain dimensions Dim canvas As Aspose.Pdf.Drawing.Graph = New Aspose.Pdf.Drawing.Graph(100, 400) ' add drawing object to paragraphs collection of page instance page.Paragraphs.Add(canvas) ' create Line object Dim line As Aspose.Pdf.Drawing.Line = New Aspose.Pdf.Drawing.Line(New Single() {100, 100, 200, 100}) ' set color for Line object line.GraphInfo.Color = Aspose.Pdf.Color.Red ' specify dash array for line object line.GraphInfo.DashArray = New Integer() {0, 1, 0} ' set the dash phase for Line instance line.GraphInfo.DashPhase = 1 ' add line to shapes collection of drawing object canvas.Shapes.Add(line) ' save PDF document doc.Save("c:/DashLineInBlack.pdf")
URL: http://www.aspose.com/.net/pdf-component.aspx