PdfContentEditor.DeleteImage

DeleteImage(int, int[])

تحذف الصور المحددة في الصفحة المحددة.

public void DeleteImage(int pageNumber, int[] index)
ParameterTypeDescription
pageNumberInt32رقم الصفحة التي يجب حذف الصور منها.
indexInt32[]مصفوفة تمثل فهارس الصور.

Examples

PdfContentEditor editor = new PdfContentEditor();
editor.BindPdf("example.pdf");
editor.DeleteImage(1, new int[] {1, 2});
editor.Save("example_out.pdf");

See Also


DeleteImage()

تحذف جميع الصور من مستند PDF.

public void DeleteImage()

Examples

PdfContentEditor editor = new PdfContentEditor();
editor.BindPdf("example.pdf");
editor.DeleteImage();
editor.Save("example_out.pdf");

See Also