DrawCurve

PdfContentEditor.DrawCurve method

إنشاء تعليق توضيحي منحنى .

public void DrawCurve(LineInfo lineInfo, int page, Rectangle annotRect, string annotContents)
معامليكتبوصف
lineInfoLineInfoمثيل فئة LineInfo.
pageInt32رقم الصفحة الأصلية حيث سيتم إنشاء التعليق التوضيحي.
annotRectRectangleمستطيل التعليق التوضيحي الذي يحدد موقع التعليق التوضيحي على الصفحة.
annotContentsStringمحتويات الشرح.

أمثلة

PdfContentEditor editor = new PdfContentEditor();
newApiEditor.BindPdf("example.pdf");
LineInfo lineInfo = new LineInfo();
lineInfo.VerticeCoordinate = new float[] { 0, 0, 100, 100 };  // x1، y1، x2، y2، .. xn، yn
lineInfo.Visibility = true;
editor.DrawCurve(lineInfo, 1, new System.Drawing.Rectangle(0, 0, 0, 0), "Welcome to Aspose");
editor.Save("example_out.pdf");

أنظر أيضا