Change images/content within PDF using controls?

Hi,
Sorry about the title of the question -- not sure how to phrase it. Basically I need to know:
Is it possible, within a PDF, to give the viewer an option to switch content using a dropdown list, or radio buttons or some other form of control.
So, lets say I have an image on the pdf, and a drop-down next to it. If the user pick 'A' from the drop-down, they get one image, if 'B' another. Similar thing for a piece of text.
Is this something that can be done (HOW it could be done that would be awesome to know also : ) ?
A similar side-question:
Is it possible to allow a user to "upload" an image into a pdf? Something like having a placeholder for an image on the PDF, and an UPLOAD button, that lets the user browse for an image, which will then go into the placeholder (and made to fit). Is this possible?
Thanks in advance for any info,
Andrey

Hey Data_bitz
Let me see if I understand correctly:
Content is in Workflow A.
Exception occurs the content goes to another workflow (or step) assigned to the "exception" alias.
Now you want the members of the exception alias to figure out where the content should really go and reroute it to that workflow.
Is that right?
There are a number of ways to do this but here is one using sub workflows and jumps.
If so you should do the following
Workflow A = step 1.. step N, exception step, final step, exit
In the exception step entry event check for the custom metadata field value. If present, stay in the step, if absent or set to some automatic default, skip the exception step and continue to final step.
In the exception step update event check for a custom metadata field value that indicates what exception resolution workflow the content should go into.
Have a jump defined for each exception resolution workflow and a return step that comes back to the final step of Workflow A (that last return step is optional).
The idea is that your exception managers (members of your exception alias take a look at the content, figure out what workflow is needed, select the workflow from a metadata option list that only appears when the doc is in workflow (you do this with profiles), and effectively "assign" it to the users in that particular exception resolution workflow.
You really do not want to be changing security groups in the middle of a workflow as it breaks the security paradigm of the document.
hope this helps!
Warmly,
Billy Cripe
Fishbowl Solutions

Similar Messages

  • Insert image into a .pdf using InDesign

    Can I insert image into a .pdf using InDesign....

    You can place a PDF as an image in InDesign, then add more content and export a new PDF.
    There are also commercial plugins available that will allow you to open a PDF as editable objects in InDesign.

  • To convert multiple image files to pdf using pdfsharp in C#

    Hey guys I have this C# code to convert any image file to .pdf using pdfsharp.dll. But I want to select multiple images for conversion please help. here's my code (plz note enable pdfsharp.dll in the reference)
    usingSystem;
    usingSystem.Collections.Generic;
    usingSystem.Linq;
    usingSystem.Text;
    usingSystem.Threading.Tasks;
    usingPdfSharp.Pdf;
    usingPdfSharp.Drawing;
    usingSystem.IO;
    namespaceConsoleApplication1
    classProgram
    staticvoidMain(string[]
    args)
    PdfDocumentdoc =
    newPdfDocument();
    doc.Pages.Add(newPdfPage());
    XGraphicsxgr =
    XGraphics.FromPdfPage(doc.Pages[0]);
    XImageimg =
    XImage.FromFile(source
    path...);
    xgr.DrawImage(img,0,0);
    doc.Save(destination path...);
    doc.Close();

    try this one
    public string CreatePDF(System.Collections.Generic.List<byte[]> images)
    dynamic PDFGeneratePath = Server.MapPath("../images/pdfimages/");
    dynamic FileName = "attachmentpdf-" + DateTime.Now.Ticks + ".pdf";
    if (images.Count >= 1) {
    Document document = new Document(PageSize.LETTER);
    try {
    // Create pdfimages directory in images folder.
    if ((!Directory.Exists(PDFGeneratePath))) {
    Directory.CreateDirectory(PDFGeneratePath);
    // we create a writer that listens to the document
    // and directs a PDF-stream to a file
    PdfWriter.GetInstance(document, new FileStream(PDFGeneratePath + FileName, FileMode.Create));
    // opens up the document
    document.Open();
    // Add metadata to the document. This information is visible when viewing the
    // Set images in table
    PdfPTable imageTable = new PdfPTable(2);
    imageTable.DefaultCell.Border = Rectangle.NO_BORDER;
    imageTable.DefaultCell.HorizontalAlignment = Element.ALIGN_CENTER;
    for (int ImageIndex = 0; ImageIndex <= images.Count - 1; ImageIndex++) {
    if ((images(ImageIndex) != null) && (images(ImageIndex).Length > 0)) {
    iTextSharp.text.Image pic = iTextSharp.text.Image.GetInstance(SRS.Utility.Utils.ByteArrayToImage(images(ImageIndex)), System.Drawing.Imaging.ImageFormat.Jpeg);
    // Setting image resolution
    if (pic.Height > pic.Width) {
    float percentage = 0f;
    percentage = 400 / pic.Height;
    pic.ScalePercent(percentage * 100);
    } else {
    float percentage = 0f;
    percentage = 240 / pic.Width;
    pic.ScalePercent(percentage * 100);
    pic.Border = iTextSharp.text.Rectangle.BOX;
    pic.BorderColor = iTextSharp.text.BaseColor.BLACK;
    pic.BorderWidth = 3f;
    imageTable.AddCell(pic);
    if (((ImageIndex + 1) % 6 == 0)) {
    document.Add(imageTable);
    document.NewPage();
    imageTable = new PdfPTable(2);
    imageTable.DefaultCell.Border = Rectangle.NO_BORDER;
    imageTable.DefaultCell.HorizontalAlignment = Element.ALIGN_CENTER;
    if ((ImageIndex == (images.Count - 1))) {
    imageTable.AddCell(string.Empty);
    document.Add(imageTable);
    document.NewPage();
    } catch (Exception ex) {
    throw ex;
    } finally {
    // Close the document object
    // Clean up
    document.Close();
    document = null;
    return PDFGeneratePath + FileName;

  • Converting xml file with arabic content to pdf using FOP

    Hello all
    I am trying to convert a dynamically generated xml file in which most of the data comes from the oracle database with arabic content, to pdf using FOP. I have used "Windows-1256" encoding for the xml. If i open the xml generated with the internet explorer the arabic content displays properly but the pdf is not generated and the acrobat reader shows the file as corrupted or not supported. Please help me. Its very urgent.
    Thanks & Regards
    Gurpreet Singh

    There is no direct support for importing RTF from an XML extract. Perhaps feature 1514 "Mapping formatted XML data into multiline field" will be of some use. This was released in 11.0, I believe.
    Essentially you can establish paragraph and certain text formatting like bold and underline when you include the proper token information in the data. I believe this is similar to simple HTML tokens.
    Example: &lt;FIELD>&lt;P>First paragraph of data.&lt;/P>&lt;P>New paragraph with &lt;B>&lt;U>bold and underline text&lt;/U>&lt;/B>. Rest of paragraph normal.&lt;/P>&lt;/FIELD>
    The result is something like this:
    <P>First paragraph of data.</P><P>New paragraph with <B><U>bold and underline text</U></B>. Rest of paragraph normal.</P>

  • How to get image properties in PDF using javascript or plug ins

    Hi
    How to get the image(all the images) properties in PDF using javascript or suggest plug ins
    Thanks in Advance

    HI,
    In the PDF Edit API's ( as has already been suggested) there is the PDEImage and using this you should be able to find out everything you need to know about any image in a PDF file.
    I would recommend starting with PDEImageGetAttrs
    Hope this helps
    Malcolm

  • How to get image properties in PDF using javascript

    Hi
    How to get the image(all the images) properties in PDF using javascript?
    Thanks in Advance

    Hi
    Thanks for your quick response. Any recommended plug ins
    Thanks in advance

  • 2 questions - change image size within print cell, and saving print template w/ specific images

    Hi,
    Searched the forums for the answer to these but couldn't find much.
    1. Is there a way to change the image size within a cell (under print module). For example, zoom in 140% on a a specific image but still have it within the original cell size?
    2. Say I create and fill in an elaborate print template with my images - is there a way to save the FILLED IN version of the template to edit at a later time? For example if I wanted to load it back up w/ all the original images layed out in the print template, but maybe change a few and resave as jpeg?
    Thank you!

    Hi
    I'm not sure but maybe you can use a rectangle to hold the .ai image, resize the rectangle and fit proportionally the image inside it
    hope this help
    Eli

  • Could not get exact contents from pdf using adobe acrobat professional

    Hi,
    I am using acrobat professional to extract contents from a pdf into HTML. During extraction of pdf into HTML some contents are getting rendered as images. But with pdf to xml extraction i can get the exact contents. But i need HTML file from pdf. Any suggestions. Thanks in advance.

    You might want to see if you can select the background with the object touchup tool. If so, can you then just delete the selected object. May take a while to go through the document, but if it solves the problem you are ahead. You may be able to select it with JavaScript and repeat the process. My point of using the object touchup tool is that it may not be a background set by Acrobat, but something that is simply labeled as an image from the Acrobat viewpoint.

  • How do I change backgrounds in my PDF using Acrobat X?

    I have been wholly unsuccesful in changing my PDF background of certain documents.  It works for some, but not other documents.  Is there an easy explanation for this?  Here is the link to the PDF document I'm having trouble with:  http://www.geoffhayden.com/assets/eus.pdf
    I am unable to change its background to any other color.  Thoughts?
    I am using Adobe Acrobat X (10.1.2) on a Mac. 
    Geoff

    Daniel makes a valid point but that's not really what you asked for so here is one way to achieve the result you want.
    What was "probably" done was to use Acrobat's Edit Object Tool.  This feature relies on you to have a couple of different types of graphic editing tools like Photoshop and Illustrator.  In this case Adobe Illustrator will open if you have it installed and selected as the editing application in the Edit Object Tool's preference.
    The steps would be:
    1.  Go to the page where you want to change the background.
    2.  Select the Edit Object Tool
    3.  Control+click the page and select "Edit Page..." from the context menu.
    4.  In Adobe Illustrator, select "Layers" from the "Expanded Panels" on the right hand side.
    5.  In the Layers panel, expand Layer 1
    6.  In the Layer 1 expand the top <Group>
    7.  Go to the bottom two items in that <Group> and select both items (Shift+click) named <Path>
    8.  Select the "Trashcan" icon at the bottom of the "Layers" panel.
    9.  The result should look something like this:
    10.  In Adobe Illustrator go to File>Save
    11.  Close the file
    12. It should show up like you expect now on that page.
    13. Repeat as necessary.
    14.  Done

  • Determining proper hyperlink syntax for TOC destination within PDF using example?

    I've dabbled but only able to construct a hyperlink jumping to a specific page rather than jumping to a specific table of Contents (TOC) entry, e.g.  "901. Scope of the Training and Education Program" in http://www.nerc.com/files/NERC_ROP_Effective_20130305.pdf 
    Q1:  In general how should one determine and form up a TOC based hyperlink to a destination within a PDF such as this.. likely applying "hxxp://www.domain.com/file.pdf#nameddest=TOC" syntax?  
    Q2: What would be the specific hypertext brower launch link for this example? 
    tia

    To make use of the "nameddest" parameter you'll have to actually have those in the PDF. The PDF at the link does not have any.
    As the authoring file for the PDF was a Word file you could see if Word can be configured to provide named destinations.
    If not then you would have to put them in manually using Acrobat (Pro supports this - maybe Standard also).
    If you don't already have it the "Parameters for Opening PDF Files" is the document that discusses parameters for opening a PDF via a URL.
    http://wwwimages.adobe.com/www.adobe.com/content/dam/Adobe/en/devnet/acrobat/pdfs/pdf_open _parameters_v9.pdf
    Be well...

  • How to create a text field box that saves and reveals content within PDF?

    I cannot seem to find a way (at least within Indesign) to allow users to enter content, and then to later have that content revealed within the PDF at a later point.
    Example:
    User enters name: "Jon"
    PDF: "Welcome Jon!"

    You can't do it with InDesign but you might be able to do it with some
    scripting in Acrobat Pro. You might want to visit the Acrobat forum and
    ask there.

  • Step incrementing of .ini file and check and changing the content within step

    Hello I want to increment the [step002] automatically in the .ini file. If the steps are copied and pasted more times in already existing file, where by doing so the step numbers are doubled. For example if there exists  [Step002] followed by content of it and then [Step001] and followed by contet of it and  [Step002] followed by content of it. And if a person copies [Step002] with its content 80 times or n number of times then the last one should be automatically incremented  to new number as [Step003] and [Step004] [Step005]. And then I want to arrange the content under each step. In my file I have a " Group_Start = Step001" and  " Group_Name = OQ_004 set high port" as contents in each step. I want to arrange the group name. 
    What I want is, if in the newly copied [Step002] which would have already been incremented to [Step004], it would contain Group_Name = OQ_004 set high port which I have highlighted in italics, if this already exists some where in the file, then its corresponding Group_Start = Step001 which I have highlighted in italics should be given to the newly copied and incremented [Step004]. And in case the Group_Name = OQ_004 set high port which I have highlighted in italics does not match any where then its corresponding Group_Start will be as Group_Start = Step004. That means since the group name is new and it does not exist already in the file, the Group_Start should take its step number [Step004] which her I have highlighted in italics, as its Group_Start = Step004. Here with I attach my file and I also attach my steps which I had tried. It would be nice if solution is given or further step ideas from my steps to complete the task is given.
    Thank you.
    John
    Attachments:
    Config.ini ‏2 KB
    Tried.vi ‏26 KB

    Hello, Thank you for your reply. May be I break it into steps. Now where I am struck is that if there are say random numbers some repeated ones
    example 001, 002, 002, 002, 004, 007, 006 etc.. I would like get sorted in ascending order and also the reapeated numbers should be in the running order. That means 001, 002, 003, 004, 005, 006 etc.. There should not be repeated numbers.if reapeatd then the repeated one should have to be incremented from the previous one. If this has been solved then I can explain the other part and shall aslo goahead. I had already tried one method but the loop seems to be not exactly matching. There are some numbers which come extra. You can use the same config file which I had sent earlier. Just copy and paste the steps below or inbetween and use it for testing. Thank you
    Attachments:
    change all stepst number.vi ‏14 KB

  • Writing Html Content into PDF using JSP

    Dear All,
    I am using JSP to generate Employee payslip dynamically. Presently i am diplaying payslip as on-screen display.
    Here i want to give option "Save as PDF". I am able to create PDF file using IText Libraries. i want to integrate HTML code into the PDF file.
    Writing HTML Content (using HTML Tags) into PDF.

    Well it is a difficult ask and i believe we are trying to re-invent the wheel
    Just to make my life simple i could have choosen either sample API given below to serve my cause
    1).[http://xmlgraphics.apache.org/fop/] (Apache FOP one can simply write an XSL template of their and then substitute the values from respective DTO's by using XSL - XML transformations and can generate content in different formats which includes PDF aswell)
    2).[http://jasperforge.org/plugins/project/project_home.php?group_id=102] (Just design a simple report template using iReport and create a jrxml files and write a small code snipett such that you can pass few details at the runtime and can export the report in different formats which includes PDF aswell)
    3).[http://www.object-refinery.com/jfreereport/] (Is much similar to what jasper offers in order to compile these you can either use pentaho product IDE or BEA/Oracle Actuate report tools)
    You can simply try searching for different examples for getting more help on using the respective API's
    Hope that helps :)
    REGARDS,
    RaHuL

  • Protect images / content in PDF...

    Hi,
    How can I set up securities to protect copying of images / general content of a PDF? I went through the settings in Acrobat, but could not find what the name of this feature is.
    Thanks!

    OK, when you mention password security, I am wondering at what point would the file prompt for a password? Only if trying to open in an application other than Acrobat?
    When?
    Thanks. As the other person mentioned, it's probably not worth doing this seeing as it can be cracked with a little effort.

  • Canvas resize stretches pixels of image content slightly when used :(

    Hi,
    I've a document that measures 3000 x 3000 pixels and I want to put an extra 600 pixels in height on it. I tried using canvas resize tool and it puts the extra pixels in height where I want them but it actually stretches the content very slightly. I noticed this because my artwork contains an image of planet earth from space and the globe gets stretched higher (only very slightly) in the direction of the new pixels. I've viewed it in various zooms including 50% and 100% and no success there either. Could it be a bug? best
    Paul

    Hi guys,
    Here are the screenshots...not sure I'm allowed to upload full size copies...I'll try
    I've also just been working on another piece of work and photoshop said there was a problem saving the file...I had to close it and lose all my work...could it be a bug with the download?
    I don't think I previously cropped the image with delete cropped pixels unchecked and when I did use the crop tool I only ever expanded the top section too. The only layer that extends beyond the canvas is the lightning layer at the top.
    Cheers
    Paul

Maybe you are looking for

  • ISync no longer works with MacBook

    I imported all data from my old Powerbook G4 into my new Intel MacBook 2.16 bu iSync no longer works with my phones. It starts the process then stops abut halfway through with an error message. I have tried all the solutions proposed in the discussio

  • How to use .mov files for video in Flash...

    Hello- I am trying to use .mov files for my Flash videos. I know it uses .mp4/flv/f4v, but I really need to use .movs. I know this works... but how? Suggestions?

  • Bridge stuck in Photoshop CS5.1 After doing CS6 Upgrade

    I upgraded from Photoshop CS5.1 to CS6 and Bridge still opens in CS5. How do I correct this. I have a Macbook Pro. Thanks

  • Phone No Longer Syncing..

    My phone is no longer registering as a device when I plug in the phone to my computer. It makes the noise when you plug it in but when I look at ITunes, it doesnt say "my phone" anymore. A few weeks ago I added my son's ipod to my itunes library. Sin

  • Cannot open .jsp files from browser

    Hi! I cannot open .jsp files form the browser.(Some sample jsp files I downloaded open without any problem, only the ones I added, don't- they're in the same directory, with their java files in the web-inf folder.) I have jdk1.2.2,jswdk1.0.1,jsse1.0.