Hi, I have a series of PDFs (Computer Gaming World issues) and I want to remove the first page from the pdf file of each issue. There are 100 issues, so a GUI is just not gonna cut it. I used pdftk to remove the first page from one issue:
pdftk 1981_1112_issue1.pdf cat 1 output 1.pdf
My problem is that I do not want to have to modify ...
i want to open a pdf file in my web application , let users click in some area
and get the x y coordinate
affiche a textbox and submit it to php script
if you can tell me how to display pdf in a iframe , and get xy from it ?
...
Hi,
Is there a way to retrieve text coordinates from PDF file on iPhone?
Thanks,
Nava.
More details: I'm trying to get words from pdf file and highlight them. While it's a pretty simple task in Mac OS X, which has a PDFKit, it's not that trivial on iPhone, which has Quartz set of functions to present and get information from pdf fil...
Hi,
There seem to be a lot of tools/components to convert HTML to PDF. I am wondering if there is a .Net component or library that can go the other way around. Given a PDF, convert it into HTML or XML or any other sort of structured format that can maintain layout information such as headings/titles/paragraphs etc.
iTextSharp, AbcPDF, ...
how can i create something like bookmark but in the text? like url, click on this bookmark in any place in text and it redirect you to other page
...
hi,
We are building a web application - library for selling drm protected books in epub and pdf formats. THere should be a feature to read books online without possibility to print them. Does anyone know a component / application (possibly flash) that could be used for online reading, than can interact with drm protected content and als...
I'm currently planning an application which involves manipulating PDFs. My goal is to have a program that i can pass in a PDF as an input which then saves separated grayscale images of the colour channels that the PDF consists of as an output. This is basically a simple RIP.
I'm currently using a solution using GhostScript but i want to...
I have used CGContextDrawPDFPage two times in my project. One is for displaying the PDF and the other is for making the thumb image of the PDF.
I am using the PDF to image code from
http://github.com/0xced/pdfrasterize/blob/master/CGPDFAdditions.c
I am calling the PDF to image method like this in my code
NSURL *url = [NSURL fileURLW...
Hi people, I've got a list of byte[] which i'd like to concatenate into one byte[] which will be the final PDf.
On the "page = copy.GetImportedPage(new PdfReader(p), i); " i'm getting an "object reference not set to an instance error.
I've got no clue of what's going on, i've already checked every object and there's no null.
Any id...
hi,
i'm using asp + asppdf (a component for creating pdf files).
asppdf has a method called SaveHTTP which causes the browser to open the "save-as" dialog for saving the pdf. so the component is sending the pdf as binary data to the browser.
my question: i'd like to load the pdf via xmlhttp + then open that dialog.
loading works (i'm ...
I have a bunch of files in my database that I want to combine to a single PDF. I am trying to do this with Imagick. I cannot seem to find good documentation and could use some help. I want to read the binary data from my database for each file and then stream the combined file to the users.
Here is what I have:
//create the Imagick ...
I am managing a bunch of PDF files in an android application maintaining a list of records in a SQLite database as well as storing the pdf files on the external storage.
Now I would like to present a thumbnail of the first page of the pdf in my list view as part of each cell representing a pdf.
I am aware of libraries like iText, fop....
Do I have to pay license costs for reading / manipulating PDF's on a server to adobe?
...
I heard something recently about it being included in Froyo and I was wondering if there was any truth to it. If there is, it would help me with an app idea greatly.
...
Hi, PDF experts help needed,
I am posting a form from PDF to a PHP script with Adobe Acrobat.
I would like to set my PDF to display appropiate messages based upon some returned values.
So I am looking for returned values... if there is any returned values after posting the form, how can I access them?
Maybe, there is an option to set t...
I have two servers with virtually identical setups (the second that is working has been around longer than the other). For my newer server when I just put an address to a PDF in the browser it launches a download dialog. If I put the same address (just changing the server name) in the browser to my older server it displays in the brows...
Hi there,
Iam currently working on an symfony app that needs to be able to output some documents as pdf, which is no problem at all using TCPDF.
What I try to do now is to generate a zip file containing one ore more of these pdf´s generated on the fly. What I basically do is (using php´s) zip library:
1.) Create a new zip archive.
2.)...
In basic PDF invoice, on only get discount total, no name in front.
I got as far as to the coupon code showing, using:
if($order->getCouponCode()!=""){
$this->y -=12;
$page->drawText('Coupon Used: '.$order->getCouponCode(), 450, $this->y, 'UTF-8');
}
but I can't find how to show coupon name.
Also,...
Hi, this is the problem:
i've got this piece of code...
It keeps throwing a NullReferenceException at the
stamp.AlterContents(); line.
i've got no clue on what's going on. Any help appreciated!
public static byte[] concatAndAddContent(List<byte[]> pdf)
{
byte [] todos;
using(MemoryStream ms = new Mem...
My scenario:
A PDF template with formfields: template.pdf
An XFDF file that contains the data to be filled in: fieldData.xfdf
Now I need to have these to files combined & flattened.
pdftk does the job easily within php:
exec("pdftk template.pdf fill_form fieldData.xfdf output flatFile.pdf flatten");
Unfortunately this does not wor...