Displaying a dynamic image using a PDF file.

I am trying to find a way to display an image dynamically in my report.  The image happens to be .pdf  I have Crystal Reports  XI and I have the graphic location formula completed "
10.93.138.250\Production\ProdOut\00\" & {Order_Record.URN_text} + "_p1.pdf" however it tells me PDF is not supported.  Is there a way around this?

I have to agreed that what you are saying appears to be true from my attempts at getting .pdf files to work dynamically.  Using .bmp and .jpg files seems to work just fine but not .pdf, .xls, or .doc.
In the Users Guide, in chapter 16, in the section titled "Working with static OLE objects" - it only talks about the picture type formats you mentioned and metafiles.  Later in this section is where it explains how to make a static OLE object dynamic.
While it doesn't specifically say it won't work for other types - it sure doesn't seem to.  I see no reason why this should be true however!  Certainly Crystal appears to be set up to allow this and the fact that the objects are not images shouldn't matter.  Why is there a picture tab and a conditional formula button next to the graphic location label on the object if it can't be used?
I'm trying to do something similiar to Carey.  I have maps to customers in a customer list and they are in .pdf files.  The location of the map is stored in the database.  I'm putting together a report of service calls and I want to print the map with each call.  It looks like I'll have to convert several thousand .pdf files to .jpg - that should be fun!
Any chance this limitation will be eliminated sometime soon...
Edited by: Randy Walter on Oct 2, 2008 6:40 PM

Similar Messages

  • How to display a dynamic image file from url?

    Hey,I want to display a dynamic image file from url in applet.For example,a jpg file which from one video camera server,store one frame pictur for ever.My java file looks like here:
    //PlayJpg.java:
    import java.awt.*;
    import java.applet.*;
    import java.net.*;
    public class PlayJpg extends Applet implements Runnable {
    public static void main(String args[]) {
    Frame F=new Frame("My Applet/Application Window");
    F.setSize(480, 240);
    PlayJpg A = new PlayJpg();
    F.add(A);
    A.start(); // Web browser calls start() automatically
    // A.init(); - we skip calling it this time
    // because it contains only Applet specific tasks.
    F.setVisible(true);
    Thread count = null;
    String urlStr = null;
    int sleepTime = 0;
    Image image = null;
    // called only for an applet - unless called explicitely by an appliaction
    public void init() {
                   sleepTime = Integer.parseInt(getParameter("refreshTime"));
              urlStr = getParameter("jpgFile");
    // called only for an applet - unless called explicitely by an appliaction
    public void start() {
    count=(new Thread(this));
    count.start();
    // called only for applet when the browser leaves the web page
    public void stop() {
    count=null;
    public void paint(Graphics g) {
    try{
    URL location=new URL(urlStr);
    image = getToolkit().getImage(location);
    }catch (MalformedURLException mue) {
                   showStatus (mue.toString());
              }catch(Exception e){
              System.out.println("Sorry. System Caught Exception in paint().");
              System.out.println("e.getMessage():" + e.getMessage());
              System.out.println("e.toString():" + e.toString());
              System.out.println("e.printStackTrace():" );
              e.printStackTrace();
    if (image!=null) g.drawImage(image,1,1,320,240,this);
    // called each time the display needs to be repainted
    public void run() {
    while (count==Thread.currentThread()) {
    try {
    Thread.currentThread().sleep(sleepTime*1000);
    } catch(Exception e) {}
    repaint(); // forces update of the screen
    // end of PlayJpg.java
    My Html file looks like here:
    <html>
    <applet code="PlayJpg.class" width=320 height=240>
    <param name=jpgFile value="http://Localhost/playjpg/snapshot0.jpg">
    <param name=refreshTime value="1">
    </applet>
    </html>
    I only get the first frame picture for ever by my html.But the jpg file is dynamic.
    Why?
    Can you help me?
    Thanks.
    Joe

    Hi,
    Add this line inside your run() method, right before your call to repaint():
    if (image != null) {image.flush();}Hope this helps,
    Kurt.

  • Figuring out how to extract images from a PDF file

    Hi,
    I'm trying to write a small app that extracts all images from a PDF file. I already wrote a nice parser and it works good but the only problem is that I can't quite figure out from the reference how to decode all images in a PDF file to normal files such as tiffs, jpegs, bmps etc. For now I'm focusing on XObject images and not dealing with inline images.
    From what I understand so far just by trying and looking at open sources I figured that if I see a XObject Image with a DCTDecode filter, taking the stream data without doing anything to it and saving it as a jpeg file works. But doing the same to FlateDecoded streams or CCITTFax didn't work.
    What is the right way to properly extract the images?

    In general you have to
    * decode the stream
    * extract the pixel data
    * use ColorSpace, BitsPerComponent, Decode and Width to unpack pixel
    values
    * reconstruct an image file format according to its specification
    There are no other shortcuts. The DCTDecode shortcut (which doesn't
    work for CMYK JPEG files) is just a piece of fantastic good luck.
    Aandi Inston

  • How to print the mirror image of a pdf file?

    Hi,
    Does anyone know if it is possible to print the mirror image of a pdf file? I could have sworn I have done this before in an older version of Acrobat.
    I am currently working with Adobe Acrobat 8.0 Professional.
    Thank you,
    Tina

    I just tested this and it worked fine for me.
    When you select to print the cropped page, in the print dialog will be a thumbnail of what is about to be printed. Does this display just the cropped portion or the whole page?

  • Not able to display a dynamic image

    I'm not able to display a dynamic image on Adobe print form.
    Here is what I did.
    Please let me know what I need to do to get this working...
    1. Created a Graphics node in the Context of the Adobe form.
    2. In the URL tab of the graphics node defined the following two lines:
         <URL pointing to the MIME repository folder>
         IM_FILENAME_1
         Where IM_FILENAME_1 is being passed to the Adobeform function module.
    3. In the Layout mode, dragged and dropped the Graphics node from the
        contenxt tab to the form layout. On doing so it appears as a image field in the form layout.
    4. Activated the form.
    BUT, when I run the form , the image is not showing up.
    The idea is to pass the image file name to the form so that it will show up a dynamic image at run time.
    PLEASE HELP.

    Hi Atul,
    Try this, that should work.
    In the interface , define a parameter type string where you will store the URL of the image .
    In the initialization part of the interface , check if the URL is defined, in case it's empty define a default URL . You should put the compelte URL of the image like "http://www.company.org:8080/logo.logo.jpg" .
    Then link this parameter to the Grpahic Node in the URL parameters .
    Let me know if that works

  • How to invoke alt-text for images in a PDF file by Automation

    Hi,
    Can any one help me?
    How to invoke Alt-text for Images in a PDF file using script?
    Thanks for looking into this.
    Regards,
    Sudhakar

    What do you mean "invoke" alt-text?  If Alt-text is there, then it will be presented to a screen reader.

  • Accessing Txt in Image on Text pdf file

    Use Omnipage OCR s/w to produce pdf Image on Text (i-o-t) pdf files. Sometimes I miss a correction I wd like to have made. If I correct this via Omnipage I then must re-insert the corrected pdf page into a by-now completed pdf document file which is all a bit time-consuming.
    Is there any way I can use Acrobat directly to read the text component of the image on Text pdf file and correct the underlying text there?
    Am using Acrobat 5; is this feature available in a later version of Acrobat?

    If you can use the touchup text tool, then it is possible. You can not re OCR the page what has text on it.

  • How can I use my PDF files stock on iCloud Drive true my Iphone or Ipad?

    How can I use my PDF files stock on iCloud Drive true my Iphone or Ipad?

    Thank you,
    I know also Documents to go, But I thought that with the Ios 8 upgrade, they would let us have an Apple Apps to make it more simple...!
    But thank you again.
    Alain

  • Voiceover may used on pdf files(supported), to tell a pdf ebook by voice?

    ARE COMPATIBLE THE File FORMATS djvu and chm?
    Viewing pdf files in ipad, can be of any file size, even 400MB file pdf?
    what is the limit in pdf?
    voiceover may used on pdf files(supported), to tell a pdf ebook by voice?

    Voice over can be used, but voice over is not a very selective setting. When enabled, voice over changes how you navigate the iPad completely. It does work though.

  • Associate a image with a pdf file

    i wish to associate an image to a pdf file for my web site

    Hi hammythered,
    You can add an image to an existing PDF file by following the steps mentioned below.
    Open the file in Acrobat
    Go to content editing>add image and select the image file you would like to add.
    Thanks,
    Vikrantt Singh

  • How to get the image into the PDF File, Cut the image into the PDF What acrobat product help to do that?

    I need to cut some image into the PDF file, what Adobe product can help me with it?

    Hi Hugo,
    Please elaborate your issue. What exactly do you want to achieve?
    Regards,
    Rahul

  • How to use sdk to get the image in the pdf file created by illustrator?

    I have some pdf files create by illustrator and saved as pdf documents,
    now I want to use the sdk to get the image in pdf files.
    how to?
    Thanks.

    Thank you first!
    Yes,you are right,since I am new to illustrator,and I want to try to write a plugin,
    I have read the sdk doc and API and opened the sample in vs2010,but no idea about how to operate the pdf doc in illustrator with api.
    Hope more advise or any examples,thank a lot.

  • Add image in uploaded pdf file and then save it specific location using C#

    I need to upload a pdf file and then add image in that file and then save it in specific location. This process should be in C# . Is it feasible or not in Acrobat XI Pro ?

    Hi Irosenth,
                        In 'License & Compliance Services' document provided by Adobe, they specified as
    For server use, installing desktop licenses in a server based environment is generally allowed,
    so long as the total number of users, (not concurrent users) who can access the software
    deployed on that server, do not exceed the Permitted Number of licenses. Usage is defined as
    individuals or entities who “use, download, copy OR otherwise benefit” from the
    functionality of the Software installed on the server.

  • Displaying logo dynamically when printing to pdf

    Hi,
    I am trying to setup the pdf print feature to display a logo dynamically for clients using our site.The logos are not stored in the database as BLOBs. They are stored on our server in the images directory and the file name is stored in a database table.
    If anyone has an easy way to do this or any ideas and/or insight on how to get this done...i'd greatly appreciate it!
    Thanks!
    Hindy

    AcroTray is running in background.
    Thanks, will try that. Just have to work out Word settings so the conversion is seamless. Word tends to drop images and such when I do that.
    In the interim, I've downloaded the CutePDF driver and all seems to be working. Ultimately the issue seems to lie with the PDF driver provided by Acrobat, but no matter how many times I reinstall the driver I still get the same problem.

  • Save As Image fails with PDF files

    Using Acrobat X Pro, version 10.1.7. After the most recent update, I can no longer crop a PDF file and save it in any image format. The options are there, but when I select File > Save As > Image > PNG (or JPG or any other image format) and enter the filename/location, no new file is created.
    This is about to become an emergency, since a big annual production project uses images from PDF files as illustrations in other documents.
    Any ideas?
    Elisa

    I have had the same issue but with Acrobat 7 standard.  No error message is displayed however no file appears when trying to save a pdf as JPG  or other imgae formats.  Repairing and re-installing has not helped.  Did you make any progress with this issue?
    Strangely if a different user logs onto the same machine they can do this with no problems.  I have tried to find something in the users profile which could be causing this but with no sucess.

Maybe you are looking for

  • Sharepoint 2013 Document library Issue

    Hi In sharepoint 2013 Doc lib,I uploaded a document and I can see it was successful, but then I can't close the window, or get back to the customer documents unless I "control/alt/delete" and close all IE windows & re-log in. Now, 4 minutes later it

  • Need to Upgrade to RHEL 5.5 on 10.2.0.4.0 DB RAC Servers

    Hello, We need to upgrade the RHEL 4.x OS to RHEL 5.5 on all of our 2-node 10.2.0.4.0 RAC DB servers. I realize that RHEL doesn't support upgrades from MAJOR versions like this in terms that only DB re-linking activities need to be done. As a result,

  • HTMLDB workspace creation

    HI guys, i created a workspace on htmldb and it said at the end of the wizard ...workspace created ...but then it asks for a username and password details to login to the workspace whats that what should i enter as username??? it didnt ask for a user

  • Constant issues, no support received from LG or Verizon

    Hi, I recently submitted a ticket to LG for some issues my phone is having. I was instructed to perform a factory data reset. I did that. However, it did not resolve the issues I'm having. Also, I've been in the Verizon wireless store for help and re

  • Openstack deployment failed

    Hello, I would like to start tests with openstack + dswitch, but can not run deployment successfuly. I have VSphere 6.0.0 with 3 hosts in one cluster and one host in second cluster + 3 shared datastores, I have passed all requirements, but deployment