Hi All,
I would like to delete the first 7 pages of a 14 page PDF file. I tried using the PDF Mod program but that didn’t allow deleting. Would someone please tell me if there is a way to do this operation?
Thanks, Tom
Hi All,
I would like to delete the first 7 pages of a 14 page PDF file. I tried using the PDF Mod program but that didn’t allow deleting. Would someone please tell me if there is a way to do this operation?
Thanks, Tom
On 06/30/2013 09:06 PM, tommyttt wrote:
> someone please tell me if there is a way to do this operation
i think you will find some good info in this thread:
http://forums.opensuse.org/english/get-technical-help-here/applications/471303-easiest-pdf-tool.html
–
dd
One of the ways without having to install extra stuff, is to open the PDF with LibreOffice. Then
tommyttt wrote:
*********** To reply by e-mail, make w single in address **************
Try
==>File==>Print
==>Print to file
==>Provide file name (*.pdf)
==>Provide page numbers(3,4,5,6) (or) page number range(3-7)
You can refer to the demo code to delete pdf:
public static string FolderName = “c:/”;
private void button1_Click(object sender, EventArgs e)
{
string fileName = FolderName + “Sample.pdf”;
string fileNameDeleted = FolderName + “delete.pdf”;
REDocument doc = REFile.OpenDocumentFile(fileName, new PDFDecoder());//use PDFDecoder open a pdf file
doc.DeletePage(1);//delete page in REDocument
REFile.SaveDocumentFile(doc, fileNameDeleted, new PDFEncoder());//save new pdf