active questions tagged pdf-generation - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T16:40:30Z http://stackoverflow.com/feeds/tag/pdf-generation http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1859683/asp-net-mvc-render-view-to-generate-pdf-use-itextsharp-or-better-solution 2 ASP.NET MVC: render view to generate PDF: use iTextSharp or better solution? queen3 2009-12-07T12:25:34Z 2009-12-07T14:05:27Z <p>I display receipt in both HTML and printer-friendly version. HTML version does jQuery tabs, etc, while printer-friendly has zero scripts and external dependencies, no master layout, no additional buttons, inline CSS, and can be saved as HTML without problems.</p> <p>Since I use Spark View Engine, I though maybe it's a good idea to generate PDF using iTextSharp engine. But after few paragraphs I decided it's too cumbersome, because a) I would have to rewrite entire receipt (source Spark view is about 5 pages long) b) I had problems with iTextSharp from beginning - for example, numbered lists kept bulleted, with no indentation, and indentationLeft="20" didn't work - maybe because of lack of documentation, but see (a).</p> <p>So, my requirements for PDF are very simple: I want to keep the same HTML but insert page breaks between individual receipts (yes I have several ones in a single document).</p> <p>Is there a simple way to generate PDF from view/HTML without rewriting the view using a strange <s>half-documented</s> engine?</p> <p>UPDATE: tried community HTMLDoc version; didn't use my inline CSS styles, incorrectly displayed Unicode symbols for currencies. <a href="http://code.google.com/p/wkhtmltopdf/" rel="nofollow">wkhtmltopdf</a> did pick the CSS but failed for currency symbol; <s>I suppose there's problem with encoding</s> solved by setting charset to utf-8. wkhtmltopdf seems to be nice but I'm yet to figure out how to set page breaks...</p> http://stackoverflow.com/questions/1322303/html-to-pdf-some-characters-are-missing-itextsharp 2 Html to pdf some characters are missing (itextsharp) slayer35 2009-08-24T13:08:15Z 2009-12-07T13:39:24Z <p>Hi,I want to export gridview to pdf by using itextsharp library.But problem is some turkish characters such as İ,ı,Ş,ş etc... are missing in the pdf document.Code used to export pdf is ;</p> <pre><code> protected void LinkButtonPdf_Click(object sender, EventArgs e) { Response.ContentType = "application/pdf"; Response.ContentEncoding = System.Text.Encoding.UTF8; Response.AddHeader("content-disposition", "attachment;filename=FileName.pdf"); Response.Cache.SetCacheability(HttpCacheability.NoCache); System.IO.StringWriter stringWrite = new StringWriter(); System.Web.UI.HtmlTextWriter htmlWrite = new HtmlTextWriter(stringWrite); GridView1.RenderControl(htmlWrite); StringReader reader = new StringReader(textConvert(stringWrite.ToString())); Document doc = new Document(PageSize.A4); HTMLWorker parser = new HTMLWorker(doc); PdfWriter.GetInstance(doc, Response.OutputStream); doc.Open(); parser.Parse(reader); doc.Close(); } public static string textConvert(string S) { if (S == null) { return null; } try { System.Text.Encoding encFrom = System.Text.Encoding.UTF8; System.Text.Encoding encTo = System.Text.Encoding.UTF8; string str = S; Byte[] b = encFrom.GetBytes(str); return encTo.GetString(b); } catch { return null; } } </code></pre> <p>Note:But when I want to insert characters into the pdf document ,missing characters are shown in the pdf document ,I insert characters by this code,</p> <pre><code> BaseFont bffont = BaseFont.CreateFont("C:\\WINDOWS\\Fonts\\arial.ttf", BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED); Font fontozel = new Font(bffont, 12, Font.NORMAL, new Color(0, 0, 0)); doc.Add(new Paragraph("İİııŞŞşşĞĞğğ", fontozel)); </code></pre> <p>Any help is appreciated,thanks</p> http://stackoverflow.com/questions/1858314/why-are-my-3rd-party-html-to-pdf-tools-not-recognized-in-drupal-6-using-print-mod 0 Why are my 3rd-party HTML to PDF tools not recognized in Drupal 6 using Print module? Brian T Hannan 2009-12-07T07:00:21Z 2009-12-07T07:00:21Z <p>I have installed Drupal 6 and have the "Printer, e-mail and PDF versions" aka "Print" module installed.</p> <p>I then realized in order to generate PDF's from my html nodes that I need a third-party tool, which is fine but the Print module is not recognizing the third-party tools I have installed in the /modules/print/lib/ directory. I get the following error in the "Home › Administer › Site configuration › Printer, e-mail and PDF versions" page:</p> <p>"No PDF generation tool found! Please dowload a supported PHP PDF generation tool. Check this module's INSTALL.txt for more details."</p> <p>I have set 755 permissions on the folders and files for the third-party tools, as most of my other settings are set to that as well.</p> <p>I have installed two of the three recommended third-party PHP PDF generating tools: </p> <p>1) <a href="http://dompdf.googlecode.com/files/dompdf-0.5.1.zip" rel="nofollow">http://dompdf.googlecode.com/files/dompdf-0.5.1.zip</a> 2) <a href="http://wkhtmltopdf.googlecode.com/files/wkhtmltopdf-0.8.3.tar.bz2" rel="nofollow">http://wkhtmltopdf.googlecode.com/files/wkhtmltopdf-0.8.3.tar.bz2</a></p> <p>Why am I seeing the "No PDF generation tool found! Please dowload a supported PHP PDF generation tool. Check this module's INSTALL.txt for more details." error message? And why is the Print module not recognizing my third-party tools?</p> http://stackoverflow.com/questions/1851813/how-do-i-create-accessible-pdfs-from-html 0 How do I create "accessible" PDFs from HTML? MikeyB_Leeds 2009-12-05T10:27:47Z 2009-12-07T03:12:16Z <p>Hi</p> <p>Does anyone have any suggestions on how to generate accessible PDFs (including images) from HTML?</p> <p>The PDFs need to look like the original HTML, including positions of images etc. Any special HTML structure required to help make the final PDF accessible?</p> <ul> <li>I've seen questions about creating PDFS none of them specifically address the important issue of accessibility.</li> </ul> <p>My poison of choice is Perl but references to any program, language or library will help.</p> <p>I have a more in-depth question at TypeDoc if anyone has more general information to offer. <a href="http://doctype.com/TiB" rel="nofollow">http://doctype.com/TiB</a></p> <p>Also, I, and others, would find it useful if users with accessibility problems could comment if they find the "usability experience" of using PDFs better or worse than reading from Plain Old Semantic HTML (POSH).</p> <p>Thanks Mike</p> http://stackoverflow.com/questions/1842266/reportlab-layouterror-too-large-on-page 0 ReportLab LayoutError: too large on page Gordon Worley 2009-12-03T19:20:50Z 2009-12-06T22:03:08Z <p>I'm doing my first program using ReportLab where I don't know in advance where the page breaks will fall and I'm having trouble. To keep things simple I'm using the <code>SimpleDocTemplate</code>. My flowables look something like this:</p> <pre><code>flowables = [Paragraph("Some title", style=headerParagraphStyle), Spacer(0, 10), Paragraph("first paragraph", style=bodyParagraphStyle), Paragraph("second paragraph", style=bodyParagraphStyle), ... Paragraph("nth paragraph", style=bodyParagraphStyle), PageBreak(), Paragraph("Some title", style=headerParagraphStyle), Spacer(0, 10), Paragraph("first paragraph", style=bodyParagraphStyle), Paragraph("second paragraph", style=bodyParagraphStyle), ... Paragraph("mth paragraph", style=bodyParagraphStyle), PageBreak(), ...] </code></pre> <p>When I build my PDF everything goes fine so long as my <code>n</code> or <code>m</code> or however many body paragraphs fit on one page, but if they run over, I get an error like the following:</p> <pre><code>reportlab.platypus.doctemplate.LayoutError: Flowable &lt;Paragraph at 0xb79800 frame=normal&gt;20th paragraph: too large on page 3 </code></pre> <p>Can't seem to find a good reason for why this keeps happening to me. Any suggestions? It does this even if I remove the PageBreaks(). All of the paragraphs are relatively short, mostly less than one sentence/line across.</p> <p><strong>ETA:</strong> I'm posting all of the code (with minor identifiers stripped) that is generating the error for me. I've converted it to read a CSV file, so I've posted its contents, too. The exact error that this code generates for me when I run it is:</p> <pre> Traceback (most recent call last): File "./spice_dev.py", line 355, in departmentReportDoc.build(eachDepartment.report, onFirstPage=onReportPage, onLaterPages=onReportPage) File "/usr/local/lib/python2.6/site-packages/reportlab/platypus/doctemplate.py", line 1010, in build BaseDocTemplate.build(self,flowables, canvasmaker=canvasmaker) File "/usr/local/lib/python2.6/site-packages/reportlab/platypus/doctemplate.py", line 777, in build self.handle_flowable(flowables) File "/usr/local/lib/python2.6/site-packages/reportlab/platypus/doctemplate.py", line 694, in handle_flowable raise LayoutError(ident) reportlab.platypus.doctemplate.LayoutError: Flowable Additional comments and suggestions for improvement: too large on page 3 </pre> <p>Some debugging work shows that the error is a result of this paragraph (although it can be other flowables, depending on content length) trying to split, being postponed, and then still not able to be split after the call to <code>handle_frameEnd()</code>. Suggestions?</p> <p>spice.py:</p> <pre><code>#!/usr/local/bin/python # vim: set fileencoding=latin-1 #import csv import os import os.path import time import numpy import scipy.stats._support #for debugging import sys import traceback # imports for reportlab from reportlab.platypus import * from reportlab.lib.styles import ParagraphStyle from reportlab.lib.pagesizes import LETTER, landscape, portrait from reportlab.lib.units import inch from reportlab.lib import colors from reportlab.pdfgen import canvas from reportlab.lib.enums import * ########################## ####### Constants ######## ########################## kNumberOfQuestions = 4 ########################## ####### Reportlab ######## ########################## def _doNothing(canv, doc): pass headerParagraphStyle = ParagraphStyle("Header", fontName="Helvetica-Bold", fontSize=16, spaceAfter = .05*inch, alignment=TA_CENTER) header2ParagraphStyle = ParagraphStyle("Header2", fontName="Helvetica-Bold", fontSize=14, spaceAfter = .1*inch, spaceBefore=.5*inch, alignment=TA_CENTER) subheaderInfoParagraphStyle = ParagraphStyle("Subheader Info", fontName="Helvetica-Bold", fontSize=10, alignment=TA_CENTER) questionParagraphStyle = ParagraphStyle("Question header", fontName="Helvetica-Bold", fontSize = 10, alignment=TA_LEFT) commentParagraphStyle = ParagraphStyle("Comment", fontName="Helvetica", fontSize = 10, alignment=TA_LEFT) instructorParagraphStyle = ParagraphStyle("Instructor Header", fontName="Helvetica", fontSize=10, alignment=TA_LEFT) basicTableStyle = TableStyle( [('FONT', (0, 0), (-1, 0), 'Helvetica-Bold', 9), ('ALIGN', (0, 0), (-1, 0), 'CENTER'), ('LINEBELOW', (0, 0), (-1, 0), 1, colors.black), ('INNERGRID', (0, 0), (-1, 0), 1, colors.black), ('FONT', (0, 1), (-1, -1), 'Helvetica', 9), ('ALIGN', (0, 1), (-1, 1), 'LEFT'), ('ALIGN', (1, 1), (-1, -1), 'CENTER'), ('LINEAFTER', (0, 1), (0, -1), 1, colors.black), ('LINEBEFORE', (1, 1), (-1, -1), 1, colors.black), ('ROWBACKGROUNDS', (0, 1), (-1, -1), (colors.white, (.9, .9, .9))), ('TOPPADDING', (1, 1), (-1, -1), 8) ]) statTableStyle = TableStyle( [('FONT', (0, 0), (0, -1), 'Helvetica-Bold', 9), ('ALIGN', (0, 0), (0, -1), 'RIGHT'), ('INNERGRID', (0, 0), (-1, -1), 1, colors.black), ('FONT', (1, 0), (1, -1), 'Helvetica', 9), ('ALIGN', (1, 0), (1, -1), 'LEFT') ]) headerTableStyle = TableStyle( [('FONT', (0, 0), (-1, 0), 'Helvetica', 8), ('FONT', (0, 1), (-1, 1), 'Helvetica-Bold', 8), ('ALIGN', (0, 0), (-1, -1), 'CENTER'), ('LINEBELOW', (0, 0), (-1, 0), 1, colors.black), ('LINEAFTER', (0, 0), (-1, -1), 20, colors.white), ('LEFTPADDING', (0,0), (-1, -1), 15), ('RIGHTPADDING', (0, 0), (-1, -1), 15) ]) ########################## ######## Classes ######### ########################## class Course: def __init__(self): self.prefix = "" self.number = "" self.section = "" self.instructor = "" self.email = "" self.name = "None Found" self.enrollment = 0 self.semester = "" self.report = [] # subreport for the course self.dataFile = [] def __repr__(self): return self.prefix + " " + self.number + " " + self.section + " " + self.instructor class Instructor: def __init__(self): self.name = "" self.email = "" self.courses = dict([]) self.report = [] self.dataFile = [] def __repr__(self): return self.name + " " + self.email class Department: def __init__(self): self.name = "" self.instructors = dict([]) #contains Instructor objects self.report = [] #subreport for the department self.dataFile = [] def __repr__(self): return self.name class College: def __init__(self): self.name = "" self.departments = dict([]) #contains Department objects self.report = [] #subreport for the college self.dataFile = [] def __repr__(self): return self.name + ":" + `self.departments` class University: def __init__(self): self.name = "" self.colleges = dict([]) #contains College objects def __repr__(self): return self.name + ":" + `self.colleges` ######################### ### Utility Functions ### ######################### def onReportPage(canv, doc): #display general info at the top of every page canv.setFont('Courier', 10) canv.drawString(inch, 10.5*inch, "Wassamata U") canv.drawString(inch, 10.35*inch, "Student Comments") canv.drawString(5.75*inch, 10.5*inch, "Year/Term: " + uSemesterYear + "/" + uSemesterTerm) canv.drawString(5.75*inch, 10.35*inch, " Semester: " + `semesterNumber`) def xmlify(text): return text.replace('&amp;','&amp;amp;').replace('&lt;','&amp;lt;').replace('&gt;','&amp;gt;') def semesterDescription(semesterNumber): # reference semester is Spring 1964, i.e. semester 0 semesterNumber = semesterNumber / 10 year = `1964 + (semesterNumber / 3)` term = "Spring" if semesterNumber % 3 == 1: term = "Summer" elif semesterNumber % 3 == 2: term = "Fall" return year, term ######################### ######### Main ########## ######################### # set up some options # should have a ui later # ugly, but quick # used to get them on the top of every page global uSemesterYear global uSemesterTerm print "\n" university = University() university.name = "Wassamata U" commentsFile = open("spireport2.csv", "rb").read() commentRecords = commentsFile.split("ô\r\n") commentsArray = [] for commentRecord in commentRecords: commentsArray.append(commentRecord.split("æ")) commentsArray.pop() print "Reading in the SPI file" #read in data from file for row in commentsArray: #print row # college currentCollege = university.colleges.get(row[0]) if currentCollege == None: currentCollege = College() currentCollege.name = row[0].replace("/", " ") university.colleges[row[0]] = currentCollege #department currentDepartment = currentCollege.departments.get(row[1]) if currentDepartment == None: currentDepartment = Department() currentDepartment.name = row[1].replace("/", " ") currentCollege.departments[row[1]] = currentDepartment #instructor currentInstructor = currentDepartment.instructors.get(row[2] + row[3]) if currentInstructor == None: currentInstructor = Instructor() currentInstructor.name = row[3].replace("/", " ") currentInstructor.email = row[2].replace("/", " ") currentDepartment.instructors[row[2] + row[3]] = currentInstructor #course currentCourse = currentInstructor.courses.get(row[5] + row[6] + row[7]) if currentCourse == None: currentCourse = Course() currentCourse.prefix = row[5][:3] currentCourse.number = row[5][3:] currentCourse.section = row[6] currentCourse.instructor = row[3] currentCourse.email = row[2] currentCourse.name = row[4] currentCourse.semester = row[7] currentCourse.enrollment = int(row[8]) currentInstructor.courses[row[5] + row[6] + row[7]] = currentCourse data = row[9:9+kNumberOfQuestions] currentCollege.dataFile.append(data) #split the data file by college for later currentInstructor.dataFile.append(data) currentDepartment.dataFile.append(data) currentCourse.dataFile.append(data) semesterNumber = int(university.colleges.values()[0].departments.values()[0].instructors.values()[0].courses.values()[0].semester) uSemesterYear, uSemesterTerm = semesterDescription(semesterNumber) reportDocContent = [] print "Processing the SPI comments" for eachCollege in university.colleges.values(): print "\tProcessing " + eachCollege.name collegeReportStartingIndex = len(reportDocContent) reportDocContent.append(Spacer(0, 100)) reportDocContent.append(Paragraph("Student comments for " + eachCollege.name, headerParagraphStyle)) reportDocContent.append(PageBreak()) for eachDepartment in eachCollege.departments.values(): print "\t\tProcessing " + eachDepartment.name departmentReportStartingIndex = len(reportDocContent) reportDocContent.append(Spacer(0, 100)) reportDocContent.append(Paragraph("Student comments for " + eachDepartment.name, headerParagraphStyle)) reportDocContent.append(PageBreak()) for eachInstructor in eachDepartment.instructors.values(): print "\t\t\tProcessing " + eachInstructor.name instructorReportStartingIndex = len(reportDocContent) reportDocContent.append(Spacer(0, 100)) reportDocContent.append(Paragraph("Student comments for " + eachInstructor.name + ", " + eachInstructor.email, headerParagraphStyle)) reportDocContent.append(PageBreak()) for eachCourse in eachInstructor.courses.values(): courseReportStartingIndex = len(reportDocContent) reportDocContent.append(Paragraph("&lt;para leftIndent=54&gt;&lt;b&gt;Instructor Name:&lt;/b&gt; " + eachCourse.instructor + "&lt;/para&gt;", instructorParagraphStyle)) reportDocContent.append(Spacer(0, 10)) headerTableContent1 = [[eachDepartment.name + "/" + eachCollege.name, eachCourse.prefix + eachCourse.number + eachCourse.section, eachCourse.name], ["Department/School", "Course-Section Number", "Course Name"]] headerTableContent2 = [[eachCourse.enrollment if eachCourse.enrollment &gt; 0 else "Unknown", len(eachCourse.dataFile), ("%.2f" % (float(len(eachCourse.dataFile))/eachCourse.enrollment*100) if eachCourse.enrollment != 0 else "0.00")], ["Number of Students Enrolled", "Number Responding", "% of Response"]] reportDocContent.append(Table(headerTableContent1, style=headerTableStyle)) reportDocContent.append(Spacer(0, 10)) reportDocContent.append(Table(headerTableContent2, style=headerTableStyle)) i = 0 for i in range(0, kNumberOfQuestions): question = "" if i == 0: question = "The thing(s) I like the MOST about this course:" elif i == 1: question = "The thing(s) I like the LEAST about this course:" elif i == 2: question = "What is your reaction to the method of evaluating your mastery of the course (i.e., testing, grading, out of class assignments (term papers), instructor feedback, etc.):" elif i == 3: question = "Additional comments and suggestions for improvement:" reportDocContent.append(Spacer(0, 10)) reportDocContent.append(Paragraph(question, style=questionParagraphStyle)) reportDocContent.append(Spacer(0, 5)) commentParagraph = "" for comments in eachCourse.dataFile: if comments[i] != "": commentParagraph += unicode(comments[i], 'latin-1') + "&lt;br/&gt;" reportDocContent.append(Paragraph(commentParagraph, style=commentParagraphStyle)) eachCourse.report = reportDocContent[courseReportStartingIndex:] reportDocContent.append(PageBreak()) eachInstructor.report = reportDocContent[instructorReportStartingIndex:] eachDepartment.report = reportDocContent[departmentReportStartingIndex:] eachCollege.report = reportDocContent[collegeReportStartingIndex:] # build directory structure to put reports in for eachCollege in university.colleges.values(): if (not os.path.exists(eachCollege.name)): os.mkdir(eachCollege.name) for eachDepartment in eachCollege.departments.values(): if (not os.path.exists(os.path.join(eachCollege.name, eachDepartment.name))): os.mkdir(os.path.join(eachCollege.name, eachDepartment.name)) for eachInstructor in eachDepartment.instructors.values(): if (not os.path.exists(os.path.join(eachCollege.name, eachDepartment.name, eachInstructor.name + " - " + eachInstructor.email))): os.mkdir(os.path.join(eachCollege.name, eachDepartment.name, eachInstructor.name + " - " + eachInstructor.email)) print "Building Comments Report PDFs" for eachCollege in university.colleges.values(): print "\tBuilding Comments Report for " + eachCollege.name collegeReportDoc = SimpleDocTemplate(os.path.join(eachCollege.name, eachCollege.name + " SPI Comments Report.pdf"), pagesize=portrait(LETTER), allowSplitting=1) collegeReportDoc.leftMargin = .25*inch collegeReportDoc.rightMargin = .25*inch collegeReportDoc.bottomMargin = .25*inch collegeReportDoc.build(eachCollege.report, onFirstPage=onReportPage, onLaterPages=onReportPage) for eachDepartment in eachCollege.departments.values(): print "\t\tBuilding Comments Report for " + eachDepartment.name departmentReportDoc = SimpleDocTemplate(os.path.join(eachCollege.name, eachDepartment.name, eachDepartment.name + " SPI Comments Report.pdf"), pagesize=portrait(LETTER), allowSplitting=1) departmentReportDoc.leftMargin = .25*inch departmentReportDoc.rightMargin = .25*inch departmentReportDoc.bottomMargin = .25*inch # import pdb; pdb.set_trace() departmentReportDoc.build(eachDepartment.report, onFirstPage=onReportPage, onLaterPages=onReportPage) print "\t\t\tBuilding Comments Reports for individual instructors" for eachInstructor in eachDepartment.instructors.values(): instructorReportDoc = SimpleDocTemplate(os.path.join(eachCollege.name, eachDepartment.name, eachInstructor.name + " - " + eachInstructor.email, eachInstructor.name + " SPI Comments Report.pdf"), pagesize=portrait(LETTER), allowSplitting=1) instructorReportDoc.leftMargin = .25*inch instructorReportDoc.rightMargin = .25*inch instructorReportDoc.bottomMargin = .25*inch instructorReportDoc.build(eachInstructor.report, onFirstPage=onReportPage, onLaterPages=onReportPage) #we do this one last because it's the biggest; otherwise it'd be at the beginning of the pdf report generation process print "\tBuilding SPI Report for University" reportDoc = SimpleDocTemplate("SPI Comments Report.pdf", pagesize=portrait(LETTER), allowSplitting=1) reportDoc.leftMargin = .25*inch reportDoc.rightMargin = .25*inch reportDoc.bottomMargin = .25*inch reportDoc.build(reportDocContent, onFirstPage=onReportPage, onLaterPages=onReportPage) </code></pre> <p>spireport2.csv:</p> <pre> College of Health & Public AffæHealth Info Mgmtæexample@example.comæAn InstructoræMEDICAL TERMINOLOGYæHSC3537æ0M01æ1370æ 205æsample commentsææi like itæô College of Health & Public AffæHealth Info Mgmtæexample@example.comæAn InstructoræMEDICAL TERMINOLOGYæHSC3537æ0M01æ1370æ 205æsample commentsææi like itæô College of Health & Public AffæHealth Info Mgmtæexample@example.comæAn InstructoræMEDICAL TERMINOLOGYæHSC3537æ0M01æ1370æ 205æsample commentsææi like itæô College of Health & Public AffæHealth Info Mgmtæexample@example.comæAn InstructoræMEDICAL TERMINOLOGYæHSC3537æ0M01æ1370æ 205æsample commentsææi like itæô College of Health & Public AffæHealth Info Mgmtæexample@example.comæAn InstructoræMEDICAL TERMINOLOGYæHSC3537æ0M01æ1370æ 205æsample commentsææi like itæô College of Health & Public AffæHealth Info Mgmtæexample@example.comæAn InstructoræMEDICAL TERMINOLOGYæHSC3537æ0M01æ1370æ 205æsample commentsææi like itæô College of Health & Public AffæHealth Info Mgmtæexample@example.comæAn InstructoræMEDICAL TERMINOLOGYæHSC3537æ0M01æ1370æ 205æsample commentsææi like itæô College of Health & Public AffæHealth Info Mgmtæexample@example.comæAn InstructoræMEDICAL TERMINOLOGYæHSC3537æ0M01æ1370æ 205æsample commentsææi like itæô College of Health & Public AffæHealth Info Mgmtæexample@example.comæAn InstructoræMEDICAL TERMINOLOGYæHSC3537æ0M01æ1370æ 205æsample commentsææi like itæô College of Health & Public AffæHealth Info Mgmtæexample@example.comæAn InstructoræMEDICAL TERMINOLOGYæHSC3537æ0M01æ1370æ 205æsample commentsææi like itæô College of Health & Public AffæHealth Info Mgmtæexample@example.comæAn InstructoræMEDICAL TERMINOLOGYæHSC3537æ0M01æ1370æ 205æsample commentsææi like itæô College of Health & Public AffæHealth Info Mgmtæexample@example.comæAn InstructoræMEDICAL TERMINOLOGYæHSC3537æ0M01æ1370æ 205æsample commentsææi like itæô College of Health & Public AffæHealth Info Mgmtæexample@example.comæAn InstructoræMEDICAL TERMINOLOGYæHSC3537æ0M01æ1370æ 205æsample commentsææi like itæô College of Health & Public AffæHealth Info Mgmtæexample@example.comæAn InstructoræMEDICAL TERMINOLOGYæHSC3537æ0M01æ1370æ 205æsample commentsææi like itæô College of Health & Public AffæHealth Info Mgmtæexample@example.comæAn InstructoræMEDICAL TERMINOLOGYæHSC3537æ0M01æ1370æ 205æsample commentsææi like itæô College of Health & Public AffæHealth Info Mgmtæexample@example.comæAn InstructoræMEDICAL TERMINOLOGYæHSC3537æ0M01æ1370æ 205æsample commentsææi like itæô College of Health & Public AffæHealth Info Mgmtæexample@example.comæAn InstructoræMEDICAL TERMINOLOGYæHSC3537æ0M01æ1370æ 205æsample commentsææi like itæô College of Health & Public AffæHealth Info Mgmtæexample@example.comæAn InstructoræMEDICAL TERMINOLOGYæHSC3537æ0M01æ1370æ 205æsample commentsææi like itæô College of Health & Public AffæHealth Info Mgmtæexample@example.comæAn InstructoræMEDICAL TERMINOLOGYæHSC3537æ0M01æ1370æ 205æsample commentsææi like itæô College of Health & Public AffæHealth Info Mgmtæexample@example.comæAn InstructoræMEDICAL TERMINOLOGYæHSC3537æ0M01æ1370æ 205æsample commentsææi like itæô College of Health & Public AffæHealth Info Mgmtæexample@example.comæAn InstructoræMEDICAL TERMINOLOGYæHSC3537æ0M01æ1370æ 205æone with a line break; let's see what happensæææweird charactèrs áÈ-{ô College of Health & Public AffæCriminal Justice/Legal Studiesæsample@mail.comæAn InstructoræFOUNDATIONS OF LAW ENFORCEMENTæCJE5021æ0001æ1370æ 7ææææô College of Health & Public AffæHealth Info Mgmtæexample@example.comæAn InstructoræMEDICAL TERMINOLOGYæHSC3537æ0M01æ1370æ 205ææææô College of Health & Public AffæHealth Info Mgmtæexample@example.comæAn InstructoræMEDICAL TERMINOLOGYæHSC3537æ0M01æ1370æ 205ææææô College of Health & Public AffæHealth Info Mgmtæexample@example.comæAn InstructoræMEDICAL TERMINOLOGYæHSC3537æ0M01æ1370æ 205ææææô College of Arts & HumanitiesæEnglishæspam@me.comæAn InstructoræHARLEM, HAITI, AND HAVANAæAML3615æ0001æ1370æ 35ææææô College of Arts & HumanitiesæEnglishæspam@me.comæAn InstructoræCONT AMERICAN WOMEN S FICTIONæAML3283æ0001æ1370æ 35ææææô College of Arts & HumanitiesæEnglishæspam@me.comæAn InstructoræPOST-WORLD WAR II FICTIONæLIT4303æ0M01æ1370æ 32ææææô College of Arts & HumanitiesæEnglishæbill@gates.comæAn InstructoræMAJOR AMERICAN AUTHORSæAML4300æ0001æ1370æ 33ææææô College of Arts & HumanitiesæEnglishæspam@me.comæAn InstructoræPRACTICAL CRITICISMæENG3010æ0001æ1370æ 36ææææô </pre> http://stackoverflow.com/questions/1854767/tools-to-generate-reportanalytics-feeds-from-google 0 Tools to generate reportanalytics feeds from google dhaval 2009-12-06T08:29:38Z 2009-12-06T08:29:38Z <p>Can you recommend any programmable tools/extensions that can be used to generate reports out of google analytics feed on th fly? Essentially some kind of pdf generator from feed, not sure though. Or does the Google analytics itself gives reports output as feed etc.,</p> http://stackoverflow.com/questions/1743651/any-way-to-create-a-pdf-so-the-text-cant-be-copied-extracted-back-out 0 Any way to create a PDF so the text can't be copied/extracted back out? Clay Nichols 2009-11-16T17:30:52Z 2009-12-06T03:06:00Z <p>I'm trying to help create a neighborhood directory and I want to discourage someone from harvesting contact info (especially email addresses) from that.</p> <p>Is there any easy way to prevent someone from copying and pasting that text from the PDF?</p> <p><strong>Update</strong> Goal here is to make the PDF no easier to harvest email addresses from than the current paper directory, and to make the PDF directory as useful as the paper directory. The online pdf directory will have advantages such as always being up to date and saving some printing costs (or passing those costs on to folks who want to print the document).</p> http://stackoverflow.com/questions/1095846/can-itextsharp-open-an-rtf-document-manipulate-it-and-export-the-document-to-pd 0 Can iTextSharp open an RTF document, manipulate it, and export the document to PDF? Matthew Lock 2009-07-08T02:20:12Z 2009-12-05T21:03:24Z <p>Using iTextSharp (and c#/ASP.NET) is it possible to open an RTF document, manipulate it by replacing some text, insert an image (WMF or PNG), and the export that manipulated document to a PDF document that retains the formatting of the original RTF document?</p> <p>Essentially I'm hoping to create a simple mail merge solution with the template being in RTF and the output needing to be in PDF. This needs to run on an ASP.NET server.</p> http://stackoverflow.com/questions/1851950/modifying-text-in-editable-pdf-files 0 modifying text in Editable Pdf files nrk 2009-12-05T11:29:19Z 2009-12-05T12:30:53Z <p>Hi, <br/> I am working in a project which needs, enter the data specified fields in the <strong>editabble pdf</strong> files using C# program.<br/><br/>I am not very much familiary with <strong>editable pdf files</strong> and modifing fields data using C# programatically. <br/> Any C# open source API available in .net for filling Editable pdf file.</p> <p>thanks <br/> nRk</p> http://stackoverflow.com/questions/1706638/how-can-i-select-papertray 1 How can I select papertray UlfR 2009-11-10T09:28:00Z 2009-12-04T15:18:19Z <p>How do I programatically select the papertray to use when I send a document to the printer? There is different papers in the trays (A5, A4, A4 with one tear off part or two tear off parts, Papers with logo and without logo).</p> <p>Today we use the <code>setpapertray</code> command directly in the postscript-file, but this is not very convenient especially since we plan to move to producing pdf-files instead.</p> <p>Any suggestions?</p> <p><strong>EDIT</strong>: Today we send the ps-documents directly to the printer with commands like</p> <pre><code>cat file.ps &gt; /dev/usb/lp0 </code></pre> <p>or in programs just by opening the device and writing to it.</p> <p>So since we use postscript templates its easy to select the tray to use directly by putting a section like this in the template:</p> <pre><code>statusdict begin /manualfeed false def $paper_tray setpapertray end </code></pre> <p>Now we want to get rid of the ps-templates since they are hard to work with, and its not always safe to assume the printer is directly connected but could be at a external printerserver.</p> <p>Questions:</p> <ul> <li>Is it possible to embed the tray selection in a pdf-file in the same way?</li> <li>Is there another more convenient way to select tray for each document when printing multiple documents?</li> </ul> http://stackoverflow.com/questions/1622411/is-there-a-reliable-way-to-determine-if-a-pdf-was-generated-from-a-powerpoint-fil 2 Is there a reliable way to determine if a PDF was generated from a Powerpoint file? AndrewR 2009-10-25T23:07:46Z 2009-12-04T14:32:39Z <p>Like the title says. Reason I ask is that we're converting PDFs to formatted ASCII text (using pdftotext) and only want to display the ones that look reasonably sane.</p> <p>PPT files tend to have text over images, diagonal text and others things that don't translate to ASCII very well, so we'd like to filter them out if we can.</p> http://stackoverflow.com/questions/1845289/logo-in-left-corner-of-pdf-dblatex 0 Logo in left corner of PDF, dblatex mbuf 2009-12-04T06:53:54Z 2009-12-04T06:53:54Z <p>I am writing docbook XML and would like a header, footer in every page of the produced PDF document. </p> <p>I have a simple foo.xml, and I have used \cfoot[]{} in /usr/share/texmf/tex/latex/dblatex/dbk_headfoot.sty to use a footer text that works. I would like to put a logo on the left corner of every page on the pdf that dblatex generates.</p> <p>I found these posts relevant to my query:</p> <p><a href="http://sourceforge.net/mailarchive/message.php?msg_id=1188308643.11692.7.camel%40neb" rel="nofollow">http://sourceforge.net/mailarchive/message.php?msg_id=1188308643.11692.7.camel%40neb</a></p> <p><a href="http://sourceforge.net/mailarchive/message.php?msg_id=508e92ca0709262324p60276d95oa7ccb847629129cf%40mail.gmail.com" rel="nofollow">http://sourceforge.net/mailarchive/message.php?msg_id=508e92ca0709262324p60276d95oa7ccb847629129cf%40mail.gmail.com</a></p> <p>Is there a solution that I can use? Using dblatex 0.2.10 on Fedora 12. Or is there any other possible method?</p> http://stackoverflow.com/questions/77102/adobe-reader-error-codes 0 Adobe Reader Error Codes Ryan O 2008-09-16T21:07:06Z 2009-12-04T05:45:23Z <p>I am programmatically creating PDFs, and a recent change to my generator is creating documents that crash both Mac Preview and Adobe Reader on my Mac. Before Adobe Reader crashes, it reports:</p> <blockquote> <p>There was an error processing a page. There was a problem reading this document (18).</p> </blockquote> <p>I suspect that that "18" might give me some information on what is wrong with the PDF I've created. Is there a document explaining the meaning of these status codes?</p> http://stackoverflow.com/questions/243853/converting-doc-files-to-pdf 3 Converting .doc files to .pdf ngn 2008-10-28T16:03:58Z 2009-12-03T14:08:07Z <p>Anybody aware of a piece of software which could do MS Office .doc to .pdf conversion for me?</p> <p>I already tried OpenOffice but it appeared to be rather slow and resource-hungry for large documents.</p> http://stackoverflow.com/questions/1789785/put-xml-nodes-full-path-in-attribute-file-and-read-the-nodes-value-from-main-xs 0 Put xml node's full path in attribute file and read the node's value from main xsl file in xsl fo dotnetspidor 2009-11-24T12:31:11Z 2009-12-03T06:00:16Z <p>I have been using fop 0.95 to generate pdf files from xml data. I have three files involved in the process: test.xml, test.xsl and attributes.xsl. Naturally I have xml data in xml file. Here test.xml is the main xsl file which imports attribute sets from attributes.xsl file. For example, I have following entries in the attributes.xsl file:</p> <pre><code>&lt;xsl:attribute-set name="headerTable" foa:class="table"&gt; &lt;xsl:attribute name="table-layout"&gt;fixed&lt;/xsl:attribute&gt; &lt;xsl:attribute name="width"&gt;6.05in&lt;/xsl:attribute&gt; &lt;xsl:attribute name="text-align"&gt;left&lt;/xsl:attribute&gt; &lt;xsl:attribute name="white-space-collapse"&gt;false&lt;/xsl:attribute&gt; &lt;/xsl:attribute-set&gt; </code></pre> <p>Now my requirement is to place the attribute name in attribute file and store the associated values in the xml file. This way:</p> <pre><code>&lt;MyRoot&gt; &lt;tableHeader&gt; &lt;tableLayout&gt;fixed&lt;/tableLayout&gt; &lt;width&gt;6.05in&lt;/width&gt; &lt;textAlign&gt;left&lt;/textAlign&gt; &lt;whiteSpaceCollapse&gt;false&lt;/whiteSpaceCollapse&gt; &lt;/tableHeader&gt; &lt;/MyRoot&gt; </code></pre> <p>After this I will have the attribute file as follows:</p> <pre><code>&lt;xsl:attribute-set name="headerTable" foa:class="table"&gt; &lt;xsl:attribute name="table-layout"&gt;MyRoot/tableHeader/tableLayout&lt;/xsl:attribute&gt; &lt;xsl:attribute name="width"&gt;MyRoot/tableHeader/width&lt;/xsl:attribute&gt; &lt;xsl:attribute name="text-align"&gt;MyRoot/tableHeader/textAlign&lt;/xsl:attribute&gt; &lt;xsl:attribute name="white-space-collapse"&gt;MyRoot/tableHeader/whiteSpaceCollapse&lt;/xsl:attribute&gt; &lt;/xsl:attribute-set&gt; </code></pre> <p>As usual I use the attribute from the main xsl file as follows:</p> <pre><code>&lt;fo:table xsl:use-attribute-sets="headerTable"&gt; &lt;fo:table-column column-width="3in"&gt;&lt;/fo:table-column&gt; &lt;fo:table-column column-width="3.5in"&gt;&lt;/fo:table-column&gt; &lt;fo:table-body&gt; &lt;!--table rows and cells goes here--&gt; &lt;/fo:table-body&gt; &lt;/fo:table&gt; </code></pre> <p>While executing, I get the following error:</p> <pre><code>"Ignoring property: table-layout="MyRoot/tableHeader/tableLayout" &lt;Illegal character; property:'table-layout'&gt;" </code></pre> <p>Has anyone any idea on how to accomplish this? Thanks.</p> http://stackoverflow.com/questions/1542655/xslfo-processors-for-the-net-platform 0 XSL:FO processors for the .net platform miker169 2009-10-09T08:53:43Z 2009-12-02T12:01:41Z <p>Currently I am looking for a good solid xsl:fo processor to use within a .net application. I have seen a few but alot of them use the java virtual machine, which is something I do want to have running on the web server. I must have a .net implementation, one I have found so far which is open source is fo.net on codeplex, although it doesn't seem to implement all of the xsl:fo standard as alot of the other producst using java virutal machine do. Could anyone reccomend any products. Open source would be great, but I can also look at commercial solutions.</p> http://stackoverflow.com/questions/1825786/asynchronous-generation-of-pdf-error-handling 0 Asynchronous generation of PDF - error handling Paddy 2009-12-01T12:09:58Z 2009-12-01T12:30:43Z <p>We have some code that uses a third party component to generate a PDF from a URL that we pass it (the URL being a page within our application). In the code, we instantiate the PDF generator and it creates the PDF in an asynchronous fashion.</p> <p>The problem I have is that if the URL that we pass it has a problem, there is no indication of this from the PDF generator, we just get a PDF created that contains a 404 error page, or our custom error page.</p> <p>I need some way, within my controller, to first call this URL (which is another view) and check that it does not error out, prior to calling the PDF generation. Can anybody point me in the direction of how I might go about doing this?</p> http://stackoverflow.com/questions/1822120/crystal-reports-file-break 0 Crystal Reports "File Break" Chris B. Behrens 2009-11-30T20:11:55Z 2009-11-30T22:02:24Z <p>I'm generating a Crystal Reports report which will ultimately need to be split into thousands of pdf files. What would be ideal would be if Crystal Reports had something like a "file break", like a page break, that you could insert into the file at the appropriate places.</p> <p>I will need reasonably fine control over the file names, as well....something like "fileName_{CustomerId}_{CustomerIsLocal}.pdf".</p> <p>I'm presuming a third-party piece of software will probably be needed. Thoughts?</p> <p>TIA.</p> http://stackoverflow.com/questions/1787535/open-pdf-programmatically-in-one-page-view 0 Open PDF Programmatically in One Page View Rich Blumer 2009-11-24T03:08:33Z 2009-11-29T05:36:17Z <p>I have a 2005 Reporting Services report that I display as a PDF through the report viewer control. I would like to know how I can have the PDF be viewed in the "one page at a time mode". Right now it's going to the scrollable page mode. </p> http://stackoverflow.com/questions/1812484/html-to-pdf-vs-programmatically-creating-pdf-via-php 1 HTML to PDF vs. Programmatically creating PDF via PHP John 2009-11-28T13:00:59Z 2009-11-28T14:06:23Z <p>I have a PHP application that needs to generate some PDF invoices and PDF timesheets with nice headers/footers. Some Stackoverflow users recommend using TCPDF to create the PDF documents. In my research, I discovered two approaches to generating PDFs:</p> <p>1) Programmatically formatting the PDF like so:</p> <pre><code> $tcpdf-&gt;SetFillColor(255, 0, 0); $tcpdf-&gt;SetTextColor(255); $tcpdf-&gt;SetDrawColor(128, 0, 0); $tcpdf-&gt;SetLineWidth(0.3); $tcpdf-&gt;SetFont('', 'B'); </code></pre> <p>2) Converting HTML to PDF</p> <p>How do I decide which I approach I should use? </p> http://stackoverflow.com/questions/1762736/itextsharp-pdfptable-overlapping-with-other-content 0 iTextSharp : pdfPTable overlapping with other content Shyju 2009-11-19T11:43:20Z 2009-11-25T14:19:38Z <p>I am using iTextsharp to generate a PDF document from C# application. I am having a PdfPTable to display some tabular data. My problem in the table is overlapping with the other paragraph .Is there anyway i can place the table on a particular position ? then below is my code</p> <pre><code> PdfPTable objTable = new PdfPTable(6); objTable.DefaultCell.Padding=1; objTable.DefaultCell.BorderColor = new Color(123, 123, 163); objTable.DefaultCell.Padding = 1; float[] headerwidths = { 12,18,25,20,6,17 }; // percentage objTable.SetWidths(headerwidths); objTable.WidthPercentage = 80; // percentage System.Drawing.Color objColor=System.Drawing.ColorTranslator.FromHtml("#EEEEEE"); PdfPCell objCell0 = new PdfPCell(new Phrase("SlNo")); PdfPCell objCell1 = new PdfPCell(new Phrase("Date")); PdfPCell objCell2 = new PdfPCell(new Phrase("Expense name")); PdfPCell objCell3 = new PdfPCell(new Phrase("Budgeted value")); PdfPCell objCell4 = new PdfPCell(new Phrase("Units")); PdfPCell objCell5 = new PdfPCell(new Phrase("Total submitted")); //Add child rows with data List&lt;SubmitExpenseItem&gt; objItemList=objExpense.ExpenseChildItems; foreach (SubmitExpenseItem expChildItem in objItemList) { slno++; objTable.AddCell(new PdfPCell(new Phrase(slno.ToString()))); objTable.AddCell(new PdfPCell(new Phrase(expChildItem.SubmitDate.ToShortDateString()))); objTable.AddCell(new PdfPCell(new Phrase(expChildItem.ExpenseName))); objTable.AddCell(new PdfPCell(new Phrase(expChildItem.BudgetValue.ToString()))); objTable.AddCell(new PdfPCell(new Phrase(expChildItem.Units.ToString()))); objTable.AddCell(new PdfPCell(new Phrase(expChildItem.ActualValue.ToString()))); } objChildInfoPara.Add(objTable); objDoc.Add(objMasterDetailsPara);//First para objDoc.Add(objChildInfoPara); </code></pre> <p>Now my second para (objChildInfoPara) is overlapping with the first one</p> <p>Can anyone tell me how to get rid of this problem ? </p> http://stackoverflow.com/questions/783248/how-to-copy-an-acroform-using-itext 1 How to copy an AcroForm using iText? Daniel Moura 2009-04-23T19:45:56Z 2009-11-25T00:08:35Z <p>I have a pdf with an acroform. I'm using iText to open this pdf and fill the form fields with some data. Sometimes I need to generate more pages than the original pdf. To do that I create one page and replace with an existing page using this code:</p> <pre><code> OutputStream output = new FileOutputStream("C:\\newFile.pdf"); PdfStamper stamper = PdfHelper.openPdfStamper("C:\\template.pdf", output); stamper.insertPage(NEW_PAGE_NUMBER, new Rectangle(0,0)); stamper.replacePage(stamper.getReader(), EXISTING_PAGE_NUMBER, NEW_PAGE_NUMBER); </code></pre> <p>Doing this, the fields in the existing page aren't copied to the new page.</p> <p>Is this a good way to add a new page? (the new page must be equal to an existing one)</p> <p>How to copy the form fields into the new page? How to change the new form fields name so there won't be duplicated fields?</p> <p><strong>EDIT:</strong> The page I want to copy has a table. But this table has only ten rows. If the user input more than ten items I want to fill the whole table and create a new page to fill with the other items. </p> <p>Now I'm making multiple copies of that page to avoid this overflow. But I don't think this is an elegant solution and it doesn't work for very large inputs.</p> http://stackoverflow.com/questions/1791486/open-flash-charts-save-as-png-jpg-any-image-format 0 Open Flash Charts Save as PNG, JPG, any image format Ryan 2009-11-24T17:06:49Z 2009-11-24T21:30:15Z <p>Is there a way to do this in Ruby on Rails? Looking through the library i saw a upload_image.rb but it just says #todo...I know this is possible in the other languages (at least i saw in php)</p> <p>I've searched for awhile, has anybody found a way to do this in RoR? Or is there any documentation? What I want to do is save the image on my server-side so the user can get a PDF document of the reports.</p> http://stackoverflow.com/questions/1792056/recommended-net-pdf-renderer-for-multiple-pages-with-form-fields 0 Recommended .NET PDF Renderer for multiple pages with form fields Trent 2009-11-24T18:41:33Z 2009-11-24T21:03:06Z <p>We currently use TallComponents PDFKit.Net for rendering tedious state documents that have a number of form fields. Often we'll need to have a page that repeats many times within a single document. Most reports are 10 pages, with 3 unique template pages (pre formatted in Adobe), for example. We've worked with TallComponents to optimize for mutlipage rendering to take advantage of document flattening and the similarity of page definitions for repeatable pages. The particular optimization is difficult to work with (read: hacky) and is encapsulated within a MulitPageRendering class. But, now we have a new requirement that all fields must be editable (ie not flattened) and TallComponents is a beast for this stuff. Memory runs rampant, the document size explodes, and the process takes much longer. Were talking orders of magnitude on all 3 listed. We've looked at other pdf tools for our expensive merging process (PDFTron, ExpertPDF, AbcPdf), but I was wondering if people perform similar merging operations with a tool they've been satisfied with. I'm currently playing around with iTextSharp, but there are a ton out there.</p> http://stackoverflow.com/questions/1781208/is-there-any-api-in-c-or-net-to-edit-pdf-documents 1 Is there any API in C# or .net to edit pdf documents? nrk 2009-11-23T05:11:22Z 2009-11-23T05:34:53Z <p>Hi, <br/><br/> Is there any API in C# or .net to edit pdf documents? <br/><br/>Like I need to retrieve particular text and replace it with my own text.</p> <p>Thanks<br/> nRk</p> http://stackoverflow.com/questions/1750716/does-a-library-exist-to-remove-passwords-from-pdfs-programmatically 3 Does a library exist to remove passwords from PDFs programmatically? cialowicz 2009-11-17T18:09:05Z 2009-11-17T19:47:56Z <p>Does a library exist that will remove "owner" passwords from PDF documents so that the text can then be programmatically extracted from them? Something like <a href="http://www.pdf-technologies.com/pdf-library-password-recovery.aspx" rel="nofollow">PDF Technologies' Password Recovery tool</a>, but callable from the command line or from Python. A GUI interface is not really useful to me, since the number of documents is so large.</p> <p>Please, no comments on the legality of the process. The PDFs in question are owned, and the text needs to be extracted in order to form keyword clouds for the document set.</p> http://stackoverflow.com/questions/1723945/pdf-generation-with-high-resultion-svg-images-suggestions-needed 1 PDF Generation with High Resultion SVG Images (suggestions needed!) Dave 2009-11-12T17:25:36Z 2009-11-16T13:36:51Z <p>Hi Folks</p> <p>Can anyone suggest/recommend a product that can be used to dynamically produce PDFs that can contain high-res images?</p> <p>We're currently using a product called Highwire from a company called Corda to produce PDFs of our HTML pages.</p> <p>Highwire is crap at producing PDFs though becuase it does not conform to HTML standards (i.e. it requires table layouts rather than CSS/Div layouts). We have to use it though because it is capable of incorporating high-definition SVG images into its PDF output.</p> <p>Thanks</p> <p>Dave</p> http://stackoverflow.com/questions/248768/how-do-i-walk-through-tree-of-pdf-objects-in-pdfsharp 2 How do I walk through tree of Pdf Objects in PDFSharp? jm 2008-10-29T23:14:28Z 2009-11-13T22:20:48Z <p>I am trying to to walk though the tree of PdfItem objects in an existing PDF document using PDFSharp in c#. </p> <p>I want to create a hierarchy of all the objects as I go along -- similar to what the "PDF Explorer" example does -- but I want it to be a tree instead of a flat list of all the objects.</p> <p>The root node is document.Internals.Catalog. And I want to to walk down through all the document.Internals.Catalog.Elements until I have visited every element.</p> <p>One of the problems I run into is that there are circular references in the tree and I can't figure out how to detect them.</p> <p>Any code samples out there?</p> http://stackoverflow.com/questions/1728624/pdflib-table-of-contents-with-dynamic-page-numbers 0 (pdflib) Table of contents with dynamic page numbers KB22 2009-11-13T11:19:10Z 2009-11-13T12:38:21Z <p>Hi,</p> <p>I'm on pdflib 7 under php5 and I'm drawing a statistical report with several sub topics over several pages.</p> <p>Now, I want to include a table of contents on the first page where every sub topic is listed with it's actual page number. Needles to say that I don't know those page numbers at the time I draw the table of contents.</p> <p>Is there a way to 'jump' back to the first page after drawing the rest of the document and creating the TOC knowing the actual page numbers for the sub topics?</p> <p>tia for any hints or ideas</p> <p>K</p> http://stackoverflow.com/questions/1722412/xml-to-pdf-with-jdf-format 0 xml to PDF with JDF format Jack D 2009-11-12T14:06:03Z 2009-11-12T14:06:03Z <p>Hi all, I need to convert SVG (XML) format to printable format like PDF with JDF or eps, tcl, ppm, vdx. Pls guide me.</p>