|
Hi, I'd like to know how to convert a file into PDF when I'm programming in VB. Do you have the script or if there is a pre-defined function, what is it's name?
Thanks
Started by Tom on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Check this out : Best Of Two Worlds - Acrobat PDF Scripting Using VisualBasic (VBA) & JavaScript.
|
|
I need to know if there is a way to either a) Prevent a PDF from being saved to a client's computer (disable the save button) or b) Script the PDF to open, print, then close with no user interaction.
I know this is a bit of a long shot, but I have to ...
Started by Joe Mills on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Once the client obtains the pdf they can do whatever they want to visit your site? There are open source pdf readers and someone could modify it to do whatever solution:
create a pdf that expires display....
This can never be possible.
|
|
How I can get the number of pages in a PDF document ? The document can have images too, and text in different font size. It should work with different PDF document versions.
The answer can be in any scripting language, I will port them later to Ruby.
Started by astropanic on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The DOM for that function call://www.adobe.com/devnet/acrobat/pdfs....
Then, use the plugin to attach/execute some 'Javascript for pdf' to the loaded document which will return the number of pages.
Plugin for the browser load the pdf document.
|
Ask your Facebook Friends
|
If I allow users to upload PDF documents (and only PDFs) is there any way a malicious user could include some executable script within or attached to the doc? What about standard word documents? What are some best practices if this is a requirement? (...
Started by mike on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If you wanted to protect your users from PDF....
Most to All can be mitigated by using an alternate pdf viewer like Foxit but you can't control that.
Acrobat is a hive of 0-day pdf exploits (as explained in the comments on Dav's answer).
|
|
I am generating dynamic PDF reports in PHP and having some issues with links to the web.
My links are to a PHP script that forces the download of a file attachment. This script works perfectly in all browser when accessed via the browser. It also works...
Started by ws0x9 on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Filename.'"');
Here's what I use and that is proven to work:
header('Content-Type: application/pdf.
|
|
I have a large collection of documents scanned into PDF format, and I wish to write a shell script that will convert each document to DjVu format. Some documents were scanned at 200dpi, some at 300dpi, and some at 600dpi. Since DjVu is a pixel-based format...
Started by Norman Ramsey on
, 7 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
No downvotes because you were trying....
Answer is wrong :
: nr@yorkie 1932 ; gm identify -format "x=%x y=%y w=%w h=%h" drh*rec*pdf x=0 y=0 w=%w h=%h" drh*rec*pdf x=72 Undefined y=72 Undefined w=612 h=792x=72 Undefined y=72 Undefined w=612 h.
|
|
I've been tasked with automating the collection of some reports from our remote locations. The machines are sometimes used locally by the staff at the location, and their usage is random. The software that generates the reports is somewhat limited and...
Started by mrduclaw on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I can't see a way to stop the windows built-in postscript .
Ghostscript to convert the PS to PDF yourself.
|
|
Like many of you, I have to deal with a large amount of files: source code, binary downloads, spreadsheets, pdf's, word docs, images, note files, quick scripts, and more.
These files can fall into many categories:
Temporary files that should eventually...
Started by zpinter on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Of semi-purposeful sub-directories, such as:
work - laden with sub-directories related to work pdf - full of PDF files in sub-directories papers - full of non-PDF file doc - more documentation (need.
|
|
Is there any Perl script to get the pages from a PDF file and convert the same to another PDF file?
Started by FRESHTER on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
Say you just want source.pdf cat 123-128 output out.pdf dont_ask
Source being obviously the source pdf, 123-128 the intervall of pages to extract and out....
You asked for Perl, so here's a good solution via CAM::PDF .
To install packages.
|
|
Is it possible to convert a PDF document to HTML or text and then edit some text of the html/text file and recreate the PDF, all in a PHP script?
Started by santosh on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
The application has be....
I find it better/cheaper to do the following:
Write the component that will do image intensive processing op a platform like .Net or Java .
Have a look at http://www.pdflib.com/download/
I have never seen or attempted todo this .
|