These forums are now Read Only. If you have an Acrobat question, ask questions and get help from one of our experts.

Insert images Adobe Reader

jpcutler85
Registered: Nov 16 2009
Posts: 38

I have a PDF consisting of form fields that a user fills out. This PDF is protected so the user cannot modify the PDF only input data into pre defined fields.
 
I also want the user to be able to insert their own images. Is this possible? If I predefine an area where the image will go the user then has the ability to insert an image via a script or something?
 
Any help is greatly appreciated.
 
Thanks!

My Product Information:
Acrobat Pro 9.3.1, Windows
George_Johnson
Expert
Registered: Jul 6 2008
Posts: 1875
Unfortunately, forms created in Acrobat do not allow such a thing. They used to, but it was taken away. The ability was given to forms created with LiveCycle Designer, though, through the use of an image field. No scripting is required.
Merlin
Acrobat 9ExpertTeam
Registered: Mar 1 2006
Posts: 766
Acrobat can import an image in a field, but Reader can't.

You should take a look at the "Import Named File Attachment" tool, available here :
http://www.pdfscripting.com/public/65.cfm

;-)
moltenslagg
Registered: Feb 24 2011
Posts: 2
It seems this post is the closet to what I am attempting to do.
Have a pre-printed certificate that I have scanned into Acrobat X and created a form with text boxes to add "Name", "Day", "Month", "Year" etc...
Need to import a picture from a flashdrive, resize it and add it to a corner of the certificate and then print the whole thing.
Can this be automated with just the image selection requiring user interaction?
Will it require LiveCycle or just Acrobat?
I'm sorry if this post is in the wrong place, if so just point me in the right direction please.
George_Johnson
Expert
Registered: Jul 6 2008
Posts: 1875
Yes, you can do this in Acrobat. Set up a button the size you want and a layout of "Icon only". You'd normally set the border color and background color to nothing. Set the Mouse Up action to the following:

// Mouse Up JavaScript
event.target.buttonImportIcon();

When this button is clicked, it will prompt you to select a file. You can select from among many formats.
moltenslagg
Registered: Feb 24 2011
Posts: 2
I'll try that. Thanks