[SerializableAttribute()]
public class PDFSquigglyAnnotation : PDFAnnotation
public class PDFSquigglyAnnotation
extends PDFAnnotation
[SerializableAttribute()]
public ref class PDFSquigglyAnnotation : public PDFAnnotation
class PDFSquigglyAnnotation(PDFAnnotation):
The PDFSquigglyAnnotation class contains information of one or more PDF squiggly annotations, the squiggly annotation is a zigzag line drawn according to its bounding rectangle.
using Leadtools;
using Leadtools.Codecs;
using Leadtools.Pdf;
using Leadtools.WinForms;
using Leadtools.Drawing;
public void PDFSquigglyAnnotationExample()
{
string pdfSrcFileName = Path.Combine(LEAD_VARS.ImagesDir, @"Leadtools.pdf");
string pdfDestFileName = Path.Combine(LEAD_VARS.ImagesDir, @"LEAD_Annotations.pdf");
PDFFile pdfFile = new PDFFile(pdfSrcFileName);
List<PDFAnnotation> Annotations = new List<PDFAnnotation>();
PDFSquigglyAnnotation squiggly = new PDFSquigglyAnnotation();
// Add squiggly points
squiggly.Points.Add(new PDFPoint(60, 200));
squiggly.Points.Add(new PDFPoint(180, 200));
squiggly.Points.Add(new PDFPoint(180, 250));
squiggly.Points.Add(new PDFPoint(60, 250));
squiggly.Color = RasterColor.FromKnownColor(RasterKnownColor.Orange);
Annotations.Add(squiggly);
pdfFile.WriteAnnotations(Annotations, pdfDestFileName);
}
static class LEAD_VARS
{
public const string ImagesDir = @"C:\LEADTOOLS23\Resources\Images";
}
import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import org.junit.*;
import org.junit.runner.JUnitCore;
import org.junit.runner.Result;
import org.junit.runner.notification.Failure;
import static org.junit.Assert.assertTrue;
import leadtools.*;
import leadtools.pdf.*;
public void pdfSquigglyAnnotationExample() {
final String LEAD_VARS_IMAGES_DIR = "C:\\LEADTOOLS23\\Resources\\Images";
String pdfSrcFileName = combine(LEAD_VARS_IMAGES_DIR, "Leadtools.pdf");
String pdfDestFileName = combine(LEAD_VARS_IMAGES_DIR, "LEAD_Annotations.pdf");
PDFFile pdfFile = new PDFFile(pdfSrcFileName);
ArrayList<PDFAnnotation> annotations = new ArrayList<PDFAnnotation>();
PDFSquigglyAnnotation squiggly = new PDFSquigglyAnnotation();
// Add squiggly points
squiggly.getPoints().add(new PDFPoint(60, 200));
squiggly.getPoints().add(new PDFPoint(180, 200));
squiggly.getPoints().add(new PDFPoint(180, 250));
squiggly.getPoints().add(new PDFPoint(60, 250));
squiggly.setColor(RasterColor.fromKnownColor(RasterKnownColor.ORANGE));
annotations.add(squiggly);
pdfFile.writeAnnotations(annotations, pdfDestFileName);
assertTrue(new File(pdfDestFileName).exists());
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document