pdf

create pdf files in sql server

All of our correspondence is done via database mail in sql server. The data for document generation and the rules to trigger the generation are all on sql server. We now have to create a pdf file. I was planning on using pdfsharp/migradoc to do it, but then we'd have to create document and time its readiness with sql server data state...

Open a pdf file programmatically at a named destination

Hello, I would like to open a PDF file at named destination using WinForms (C#). Here is my code: System.Diagnostics.Process myProcess = new System.Diagnostics.Process(); myProcess.StartInfo.FileName = "Acrobat.exe"; myProcess.StartInfo.Arguments = "/A \"nameddest=Test2=OpenActions\" C:\\example.pdf"; myProcess.Start(); It always ope...

Split the PDF file into image files using c# 2008?

In my PDF I have a page containing 10 images. I want to split the PDF file as 10 individual image files and save them in a separate folder. Please give me an idea or a sample solution. Im using c# 2008. ...

ABCpdf copying document properties

I'm trying to copy a PDF using ABCpdf's AddImageDoc. Doesn't look like any document properties (like "/Rotate") get copied along. It looks like I have to copy these properties manually from old document to new using SetInfo method. Like so: foreach page...{ newPdfDoc.Page = newPdfDoc.AddPage(); newPdfDoc.AddImageDoc(existingPdfD...

Picking pages from PDF document

How can you pick pages from a PDF file? Pseudo-code synopsis pick-pages 1,2-69,70-73,100 example.pdf > put_to_new_file.pdf ...

Create print-ready PDF/X (with bleedbox, trimbox, mediabox, etc) programatically?

Hi, I was wondering if it is possible to programaticaly create a PDF file with an acceptable quality for the production press, ideally using only open-source libraries. Right now the process is like this: -create texts and images -merge them into a postscript file -use Acrobat Distiller to convert it to PDF (Acrobat distiller helps you...

External PDF highlighting with Safari browser not working!

Hi, We have been facing a weird problem with PDF documents displayed in Safari. This problem is reproducible in many of our machines. The problem is like this.. Adobe Reader has support for hit highlighting in PDF documents when it is being viewed in any browser. For example, http://www.mysite.com/myfile.pdf#xml=http%3A//www.somesite.co...

A good PDF view component for .net

Hello: My application incorporates the manual as a PDF file and I want that the user can read the manual without exit and with a minimun overload. Do you know any free (as in beer) component for .net that can just read pdf files? (I don't need editing). Thank you. P.D.: Yes, I did Googled, but I can't find a free one. P.D.2.: If I ...

Secure generated PDFs

I have to generate roughly 18,000 PDFs that contain sensitive information. The PDFs will be served up through a web application to the end users. Obviously, some users need to see more reports than others. The two ways I'm thinking of serving up the PDFs are physically saving each PDF to a directory under the web application or storin...

scan & save as PDF in c#

IM using the TWAIN Scanner & gdiplus.dll. i scanned the file , and can save as image format like *.jpg, *.bmp but it is not allow to save as in PDF format. Showing an error unknown format picture. this is the code, public static bool SaveDIBAs(string picname, IntPtr bminfo, IntPtr pixdat) { SaveFileDialog sd = new SaveF...

PDF Rendering Issue in SSRS 2008

Hello , I have updated my rdl from SSRS 2005 to SSRS 2008. While rendering into PDF fprmate the header is missing for some of the pages.. Same RDLworking fine with SSRS 2005..... PageBreak is set as START Keep Together property set to false Thanks Harshil ...

iTextSharp image alignment in text?

Using iTextSharp im trying to align an image so that it gets embedded in a paragraph. I can do it like this: iTextSharp.text.Image image; image.Alignment = Image.ALIGN_RIGHT | Image.TEXTWRAP; document.Add(image); document.Add(new Paragraph("Large string of text goes here")); But the image comes out on the top right with the text surro...

What is a fast and unsupervised way of checking quality of pdf-extracted text?

I am working on a somewhat large corpus with articles numbering the tens of thousands. I am currently using PDFBox to extract with various success, and I am looking for a way to programatically check each file to see if the extraction was moderately successful or not. I'm currently thinking of running a spellchecker on each of them, but ...

Load PDF Document in WebBrowser using DocumentStream

Load PDF Document in WebBrowser using DocumentStream ...

Jasper report: disable save button when generating a pdf.

Hello, I would like to know if is posible to disable the "save as" button when I generate a pdf from a jasper report in a jsf page. Thanks in advance. ...

How can I extract the title from an encrypted PDF in PHP?

How can I extract the title from an encrypted (write protected, not password protected) PDF file using PHP on Linux? Usage of external libraries or binaries are OK. Zen_PDF did not work (Exception: Encrypted document modification is not supported) nor did libextract (title="filename of pdf.pdf") ...

itextsharp : Adding multiple pages

I'm using the DirectContent method of absolutely positioning elements on my PDF. I need to iterate over a list of records and build one page per record in my PDF. How do I tell itextsharp to insert a new page and "draw" to that page? // 72point per inch // we want 7x10 iTextSharp.text.Rectangle pageSize = new iT...

Rendering arbitrary XHTML with JasperReports

We have embedded JasperReports into our application to generate reports, but I've been rather dissatisfied with the way that the JEditorPaneHtmlMarkupProcessor handles writing arbitrary XHTML. For example, I needed to output a bulleted list at one point, which it does, but because it converts it to actual bullet characters and newlines, ...

Print PDF document with python's win32print module?

I'm trying to print a PDF document with the win32print module. Apparently this module can only accept PCL or raw text. Is that correct? If so, is there a module available to convert a PDF document into PCL? I contemplated using ShellExecute; however, this is not an option since it only allows printing to the default printer. I need to...

view, modify, and email .pdf's on iphone sdk 3.0

I need these features for a future application. ...