Hello!
I'm trying to write a simple PDF viewer using CGPDFDocument, based on QuartzDemo.
There is common rendering:
-(void)drawInContext:(CGContextRef)context
{
// PDF page drawing expects a Lower-Left coordinate system,
// so we flip the coordinate system before we start drawing.
CGContextTranslateCTM(context, 0.0, self...
I'm trying to write a program to benchmark the iText PDF library and I'd like to separate out disk access if at all possible. My plan is to write everything into a Document in memory, then take that document and generate a PDF from it. Trouble is, the only way I can see to write the thing to disk is to use PdfWriter, which needs to be st...
Hi everyone,
I have a PDF form and I would like to send the IP address of the person that hits the submit button with the other values of the form. I am using Adobe Acrobat. Could anyone help me with this? Thanks a lot!!!
...
Is it possible to create a page with formatted text that is stored in core data. The text would need to be displayed with paragraphs and a few images. I have already written the code to create a PDF with one line of text, but I am unsure of the pattern needed to layout the PDF in a nice document way. One of reasons is I had to write the ...
Hello everyone, I want show per page pdf in portait mode and display two pages when rotate to landscape mode on ipad . I had search on internet and can't find any solution. I thought two possible way.
1.Using webview but I don't know how to display two page in one webview in a webview.
2.Using CGPDF API read from two page and merge...
Hi All,
I am using asp.net 2.0 with c#.
I have to convert my label text into pdf. For this I have used this tutorial
http://www.codeproject.com/KB/aspnet/Creating_PDF_documents_in.aspx
now I am facing two problems:
Every time it is creating 1.pdf, what if there are so many user wants to see the the pdf format of any page
As my label...
Hello fellow coders & codetts
I was wondering, if I needed to create a rich text formatted document using html and css, which will be used inside a UIWebView, could I then insert cocoa calls inside HTML tags? I do this in ruby, and many other langs do this as well, but I do not know if possible on the iphone.
My main goal is to displa...
I'm using xhtmlrenderer (Also known as Flying Saucer) with iText to convert HTML to PDF. How would I create bookmarks with this? Does someone with have a small example?
Thanks in advance.
...
I am creating a report with Japanese characters and the characters show in iReport correctly but when using the PDF exporter the Japanese characters are invisible.
I simply want to use the MS Mincho font in the PDF report or the standard PDF Japanese font but have no idea how to configure. I know there is a similar question on Stack ove...
Hey guys,
I am creating an ebook for a friend. He has the content in word (docx) so I have a few questions. I created a thread earlier on how to approach this and the best response was to create PDF's out of it. The main point of this was so we can have insertable textboxes, links, and table of contents.
Now I was wondering if I can h...
Hello,
I'm looking for a way to reduce PDF size that I generate with Quartz. I'm drawing images with CGContextDrawImage in a CGPDFContext. What I'm afraid of is that the images are saved as Bitmap and not JPEG. Is there a way to check for that and a way to control that when writing the PDF?
I also tried reducing downscaling the image b...
I purchased an iPad hoping to read books on it that've been aging on my desk for months, but it turned out that there're NO programming books available on iBookstore.
Are there any (Python, PHP, jQuery) books available in ePub format? Conversion from pdf to epub is not an option because the formatting is lost in the process.
Thanks
...
Hello,
I am working on a project which can edit any document file whether it is doc, rtf, txt, pdf file.
After editing user can save or you can say update that file.
Please advise .. how can anyone edit pdf or doc and re save it ?
Thanks
...
I have some free C# code to parse PDF files, which I downloaded.
I have written code using these classes to extract information about the form fields, and generate a new PDF with the form fields populated.
Now I've discovered that it doesn't work with new PDF's, because new PDF's have streams where the old formats had plain text. I do...
Hello I have to implement kind of the below design :
In the above image I have kind of thumbnail of a pdfbook pages and there are two next and previous buttons to implement the functionality of paging .
i am thinking of two options to do this
1) Do the designing with IB find the page thumbs and set them accordingly .
2) The second ...
Hello,
I am using modX cms, and would like to have administrators be able to create some form fields in a larger form (basically a label, and form elements of various kind) which is then made accessible to users as a PDF document which is to be downloaded, filled out, saved and sent to appropriate recipients via email as pdf.
The main ...
Hi,
I've got a strange problem with zend pdf, I just can't get the pdf to show
in my action i've got this code:
$this->_helper->layout->disableLayout();
$this->_helper->viewRenderer->setNoRender();
$pdf = new Zend_Pdf('path/to/file.pdf');
$this->getResponse()->setHeader('Content-type', 'application/x-pdf', true);
$this->getResponse(...
Hi there,
I have an application that signs PDF files. It works fine and I use iTextSharp for it.
But I don't know how to do it when the PDF file is a PDF portfolio.
My application just signs the first document of the PDF portfolio, and a want to sign every document in this PDF portfolio.
How can I work with PDF portfolios in iTextShar...
Hi all, I'm trying to load a PDF in my App:
Using this works fine
pdfURL=[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource: @"myFile" ofType:@"pdf"]];
controller.pdfUrl = pdfURL;
[self.navigationController pushViewController:controller animated:YES];
[controller release];
Howev...
Hi Guys,
How can export DIV area content from an HTML Page to PDF?.
Is it possible using without third-party tool, using JavaScript?.
Please suggest
...