Incorrect display of images in PDF on iPad

I have a problem with displaying images in a PDF on the iPad. The PDF is created from a MS-Word file on a PC.
On a PC, the images in the PDF display OK.
On an iMac, the images in the PDF display OK.
Only on the iPad, the images in the PDF display weird, see these pictures:
First the correct image as it is diplayed on PC and iMac:
And this is how it looks on my iPad:
The text in the PDF is OK, it just that (some) images display faulty.

it is possible that you transferred data to your ipod through my computer or something, that wuold not show up in the library or be accessable on your ipod but it would still take up space, for example i saved my whole cmoputer and all the files on my ipod drive for system recovery and it showed my ipod at full capacity with only 600 songs

Similar Messages

  • How to display the Image in PDF report by using iText Report

    Hi
    Im trying to display the image which is very big one.
    This is my code
    Document document=new Document();
    PdfWriter.getInstance(document,new FileOutputStream("imagePDF.pdf"));
    document.open();
    Image image = Image.getInstance ("1.bmp");
    document.add(new Paragraph("Images in PDF"));
    document.add(image);
    document.close();
    But the image "1.bmp" is displayed partially. Its not spanning to the next page.
    Can anyone help me to solve this one?
    Thanks in Advance
    dhilip

    Do you actually want the image to span multiple pages? I am not sure that will be possible without splitting the image; the itext mailing list would be the place to ask.
    You could make the the page size big enough for the image using Document.setPageSize()

  • Getting Acrobat to display raster images in pdf's "As Is"

    I hate the way acrobat resamples raster images on a monitor when it's not displaying it at its exact size. It looks like crap, not surprisingly, since it doesn't do resampling using opengl like photoshop does.
    Let's say I create an image for viewing purposes only (I just want a client to open a pdf and be able to view my work as is), I save it as a 900x700 pixel image at 72dpi, but when I open the pdf it will always upscale it even when I edit the document properties and select "actual size" on initial display. I don't want any resizing, as the only way to display the image in pristine condition is if it's showing at its native resolution (ie 900x700 pixels).
    Is there any way to control how a pdf will display an image on a client's machine? Or should I rather just build an offline web page and skip the pdf entirely?

    The format in which a bitmap image is stored has no bearing whatsoever on the size it appears on screen.
    Phillip Jones wrote:
    That may not be so helpful either. Because depending upon Monitor size anything on a web page is Contracted or expanded as well. Example what on say a 27" screen is going to look much different than on a 17"  If its saved as a Jpeg image you will always have this.
    If save as a PNG it will Remain the same shape and detail just get larger or smaller

  • Displaying JPG images in PDF report

    Hi
    We developed a report, wich generates modul documentation from designer repository. In the repository the JPG images are attached to modules. The images have different sizes. The report reads the modules description and displays the images attached to modules.
    The report resizes the images. Seems like the image wide is resized to fit perfectly in the containing frame.
    This behavior is god when we have a bigger image, than the containing frame. But if we have a smaller image than the frame, the reports enlarges the image.
    How can we prevent this behavior?
    Thanks

    I think for that particular image object in layout model, if you can set the vertical and horizontal elasticity to fix, the image will not resize.
    Thanks
    Rohit

  • Printed documentation does not display some images in PDF

    Some of the images in my printed documentation do not display
    in my PDF. The majority of the images display fine, but a few are
    missing. There is a gap where the image is supposed to appear, but
    no image displays.
    Am using RoboHelp 6.0 for HTML

    Do they appear in Word? What version of Word? Is it always
    the same images? How much RAM do you have?

  • Problems in displaying an Image in PDF Form

    hi,
    I have to display a photo in the PDF form dynamically, hence i have a used an element of type <b>Image Field</b>, where the URL has to be passed to fetch the photo from the location. though all the bindings has been done, the photo is not displayed. please help me find the solution.
    Thanks and Regards
    Poojith M V

    Hi Poojith ,
    follow these steps;
    -Choose imagefield element on to adobe form
    -Right click select choose image ,Browse for the image from the local drive.
    -Select Ember image Data
    -Select Add to library ,save it
    Now drag the added image from library on to adobe form and use.
    Cheers
    Swathi
    Do offer pts;-)

  • Unable to display employee image in pdf forms from webdynpro?

    hi friends,
    i am using webdynpro application and ADOBE forms. i designed adobe form with 3 fields. IM_VORNA, IM_NACHN, IM_PHOTO.
    I created one interface of adobe form also with the 3 fields of which specified above.
    And i am using webdynpro application to get the details of emplyee by passing pernr.
    i created a view. in this, and i attached every thing interface context. And in methos tab, wddoinit method i wrote code like this...
    DATA pernrid TYPE PERNR-PERNR.  "tdobname.
      DATA temp TYPE c.
      DATA: p_connect_info TYPE TOAV0,
            wa_p_connect_info TYPE TOAV0,
            p_document_type TYPE TOAV0-RESERVE,
            exists TYPE c.
      DATA: url TYPE char255,
            turl TYPE string,
            turl1 TYPE xstring.
      DATA lo_nd_z_if_test_cv TYPE REF TO if_wd_context_node.
      DATA lo_el_z_if_test_cv TYPE REF TO if_wd_context_element.
      DATA ls_z_if_test_cv TYPE wd_this->element_z_if_test_cv.
    * navigate from <CONTEXT> to <Z_IF_TEST_CV> via lead selection
      lo_nd_z_if_test_cv = wd_context->get_child_node( name = wd_this->wdctx_z_if_test_cv ).
    * get element via lead selection
      lo_el_z_if_test_cv = lo_nd_z_if_test_cv->get_element(  ).
    * get all declared attributes
      lo_el_z_if_test_cv->get_static_attributes(
        IMPORTING
          static_attributes = ls_z_if_test_cv ).
    * *** Vorna and Nachn.
    ls_z_if_test_cv-im_vorna = 'shankar'.
    ls_z_if_test_cv-im_nachn = 'chamala'.
    ***pernr
      pernrid = '00000003'.
    CALL FUNCTION 'HR_IMAGE_EXISTS'
      EXPORTING
        P_PERNR                     = PERNRID
    *   P_TCLAS                     = 'A'
    *   P_BEGDA                     = '18000101'
    *   P_ENDDA                     = '99991231'
    IMPORTING
       P_EXISTS                    = exists
       P_CONNECT_INFO              = P_CONNECT_INFO
    EXCEPTIONS
       ERROR_CONNECTIONTABLE       = 1
       OTHERS                      = 2
    IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    P_DOCUMENT_TYPE = P_CONNECT_INFO-RESERVE.
    CALL FUNCTION 'SCMS_DOC_URL_READ'
      EXPORTING
    *   MANDT                      = SY-MANDT
        STOR_CAT                   = SPACE
        CREP_ID                    = P_CONNECT_INFO-ARCHIV_ID
        DOC_ID                     = P_CONNECT_INFO-ARC_DOC_ID
    *   PHIO_ID                    =
       COMP_ID                    = 'DATA'
    *   SIGNATURE                  = 'X'
    *   SECURITY                   = ' '
    *   USE_LOCATION               = 'A'
    *   LOCATION                   = ' '
    *   HTTP_URL_ONLY              = ' '
       DP_URL_ONLY                = 'X'
    *   LIFETIME                   = ' '
    *   NO_CACHE                   = ' '
    *   EXPIRATION                 =
    *   PDF_MODE                   = ' '
    *   URL_EXTENTION              = ' '
    *   FORCE_GET                  = ' '
    IMPORTING
       URL                        = URL
    EXCEPTIONS
       ERROR_CONFIG               = 1
       ERROR_PARAMETER            = 2
       ERROR_SIGNATURE            = 3
       HTTP_NOT_SUPPORTED         = 4
       DOCGET_NOT_SUPPORTED       = 5
       NOT_ACCESSABLE             = 6
       DATA_PROVIDER_ERROR        = 7
       TREE_NOT_SUPPORTED         = 8
       NOT_SUPPORTED              = 9
       OTHERS                     = 10
    IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    turl = url.
    CALL FUNCTION 'HR_KR_STRING_TO_XSTRING'
      EXPORTING
    *   CODEPAGE_TO            = '8500'
        UNICODE_STRING         = turl
    *   OUT_LEN                =
    IMPORTING
       XSTRING_STREAM         = turl1
    EXCEPTIONS
       INVALID_CODEPAGE       = 1
       INVALID_STRING         = 2
       OTHERS                 = 3
    IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    ls_z_if_test_cv-im_photo = turl1.
    *** Get the Photographs 
    *CALL METHOD cl_ssf_xsf_utilities=>get_bds_graphic_as_bmp
    *  EXPORTING
    *    p_object       = 'GRAPHICS'
    *    p_name         = pernrid
    *    p_id           = 'BMAP'
    *    p_btype        = 'BCOL'
    *  receiving
    *    p_bmp          = ls_z_if_test_cv-im_photo
    *  EXCEPTIONS
    *    not_found      = 1
    *    internal_error = 2
    *    others         = 3
    *IF sy-subrc EQ 0.
    **  MOVE 'y' TO temp.
    ** MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    **            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    *ENDIF.
    *** Send the values back to the node
      lo_el_z_if_test_cv->set_static_attributes(
        EXPORTING
          static_attributes = ls_z_if_test_cv ).
    But here the problem is when i executed this application i am able to see the VORNA and NACHN fields in ADOBE Form. But the employee photo is not appearing in adobe form.
    Here employee photo i amretreving from archive link.
    Even i set the Imagefield property URL in Adobe forms.  i.e $record.IM_PHOTO.
    Any solutions regarding this...
    Regards,
    Shankar.

    Hi Shankar,
    according to the sap documentation (inserting a graphic), I could imagine the following problems
    1.) image file type is not supported (-> "see the online help in Adobe LiveCycle Designer under Defining Object Properties ® Image Fields ® About Image Fields" )
    when you use "Graphic Reference"
    2.) url could not be accessed.(-> "This means that you may have to configure appropriate access rights for Adobe Document Services (ADS)" ).
    Maybe this will help you finding the problem.
    Regards,
    Andreas

  • Images in PDF reports

    I have a report that indicates the health of a project by showing an image, like a stop light. The query looks like this:
    select     "PM_PROJECTS"."ID" as "ID",
    '<img src="#APP_IMAGES#'||lower(HEALTH)||'.gif">' health_image,
         "PM_PROJECTS"."OWNING_TEAM" as "OWNING_TEAM",
         "PM_PROJECTS"."PROJECT_NAME" as "PROJECT_NAME",
    "PM_PROJECTS"."PHASE" as "PHASE",
         "PM_PROJECTS"."HEALTH" as "HEALTH"
    from     "PM_PROJECTS" "PM_PROJECTS"
    where "PM_PROJECTS"."ID" <> 144
    The client likes paper reports, so I have a link to "print" the report to PDF. However, the image does not appear on the PDF version of the report, just an empty column. Is there a way to display the image in PDF output?
    Thanks in advance!

    Hi
    I'm actually wondering about the same thing, however, I'd like to implement a BLOB-image in a PDF Report.
    I found this link http://blogs.oracle.com/xmlpublisher/2006/05/05#a34 which makes it seem that BI Publisher supports base64encoded pictures. (There's a sample there aswell)
    Now my question is; how can we get the blobdata presented as base64 in the XML from ApEx? Anyone with some experience on this?
    Regards,
    Vidar

  • IPad and images in PDF's

    What's with the iPad and images in PDF's? I've tried a fair number (>6 & <12) and many of the photos, images, maps and graphs don't display except as white (blank) space. I've tried two PDF readers and Safari. I tried to find the specs., but those say the image formats should display. I'm open to suggestions.

    Sure, it's at:
    http://www.wsrphoto.com/web-files/CarbonRiverESA.pdf
    or at the bottom of the Web page at
    http://parkplanning.nps.gov/document.cfm?parkID=323&projectID=19729&documentID=3 6317
    When you extract the images, maps and graphs in Acrobat, many export as 8-10 horizontal or vertical (long axis) images. Acrobat on the Mac has no problems rendering it right, but on the iPad it's blank areas. I've tested other PDF with the same problem.
    On the working side with the iPad I've loaded entire geology guide at
    http://www.wsrphoto.com/mtdnrbook.html
    see link to the "Whole Book" in list of chapters. Every image, map and graph display fine (and make a cool carry along book for road trips).

  • Safari on iPad does not display GIF image anymore after upgrade to iOS 4.3

    1) Could anybody (especially those in Apple iOS or Safari teams) advise me why the Safari on my iPad cannot display some images (probably in GIF formats) on some webpages anymore, after I upgrade my iPad to iOS 4.3? These images on the webpages can be properly displayed on when my IPad runs with iOS 4.2.1. There should be no problem with these embedded image files because they can still be properly display in Safari running on my Macbook air.
    2) Is there any solution to this problem?
    3) Is it possible to downgrade my iPad back to iOS 4.2.1?

    I am having the same issue with two different ipads (one Wifi and one Wifi-3g) running on our home network (Verizon FIOS). The website in question is www.tvwc.com and the main logo in the upper left corner, a .gif, does not display, only a "?". Other images on the site, in .jpg format, display correctly.
    I was running 4.2.1 and am now just upgrading to 4.3.

  • Displaying image in pdf format - what is this image format?

    Hi All,
    I have a requirement where I need to embed an image in a pdf report that gets generated in BIP. The image is passed as a byte array from an external application , that BIP should recieve as a parameter and display it. The byte array looks very similar to the image that rtf generates when an image is pasted in it and the default xsl-fo template and style-sheet is created usign the BIP Word Plugin.
    The issue that I am facing is that, the byte-code is not getting displayed as an image in the pdf.
    When I pasted the image for the corresponding byte code in an rtf and generated the default xslfo file that BIP plugin generates, I am getting a different set of charecters than what is being send to BIP as parameter.
    I have read about CLOB and BLOB being queried from database using sql and displayed as image.
    I would like to know what exactly is the BIP Plugin converting the image to , when I paste it in an rtf and convert it to xsl-fo style sheet.
    If I have not made my query very clear and you are still confused about what I am talking about , please try this out in an rtf template.
    1) Open blank rtf template
    2) Paste any tiff or jpg image in your rtf template and save it.
    3) Goto Addin --> Tools --> Export --> Click on FO Formated XML or XSL FO Style sheet in the Menu
    4) An xml document will be opened in your default browser.
    5) Scroll down to the section with the tag " <fo:instream-foreign-object"
    6) Will see a big charecter set, which I believe is some form of representation of the image pasted in the rtf.
                   <fo:block>
                             <fo:instream-foreign-object
                             content-type="image/png"
                             width="163.5375pt"
                             height="53.07pt"
                             xdofo:alt="An Image"
                             xdofo:image-uid="fbasadsadaferehgffhghd1dvcxab9">               
                             <xsl:value-of select="$Logo3"/>
                             </fo:instream-foreign-object>
                   </fo:block>
    WHERE $Logo3 is declared as parameter and
    = /9j/4AAQSkZJRgABAgEAYABgAAD/7Q0YUGhvdG9zaG9wIDMuMAA4QklNA+0KUmVz b2x1dGlvbgAAAAAQAGAAAAABAAEAYAAAAAEAAThCSU0EDRhGWCBHbG9iYWwgTGln aHRpbmcgQW5nbGUAAAAABAAAAHg4QklNBBkSRlggR2xvYmFsIEFsdGl0dWRlAAAA ................................................goes on!!! [ 200000+ charecters]
    I would like to know what this image type is? Is this a byte array?
    If any one has had this and successfully taclkled this sort of requirement please help!!!
    Any pointers, explanations in this regard would be really helpful
    Thanks in advance
    Sujith

    What exact version of CF7 are you on?

  • Images will not display on Export to PDF

    I have a BOXi Web Intelligence Document that displays two images that are 7kb each.
    The Text for one of the objects is set to:
    http://cpolrhp.belvoir.army.mil/eur/images/CHRA_Logo.gif
    That object is set to read the text as:
    Image URL
    The images display on the report in web intelligence but they do not export to PDF when I select save to my computer as PDF.
    Any help on this would be a great help!!

    Hi Christopher,
    The behavior experienced by you is quite strange.
    When we save the document with image as Excel, the image goes missing and this is a known limitation but we can save it successfully to PDF.
    Suggest you to check for the Adobe version.
    You can also follow these steps:
    follow these steps to correctly redefine the object so that it appears on each page:
    1. Open the report.
    2. In the report, right-click on the image and go to Format Cell > "Alignment" tab.
    3. Check the option "Repeat On Every Page" and then click "Ok".
    4. Click on the dotted line representing the position of the header is and drag it down slightly.
    5. Go to Insert > Cell, insert a cell in the header of the report, and enter text in the cell.
    6. Right-click on the cell and go to Format Cell > "Appearance" tab and check the option "Hide Cell".
    7. Drag the header back into its original position.
    Regards,
    Ekta Srivastava
    8. Save the report and export it to the repository. The image will now be displayed on every page when the report is opened in PDF viewing mode.

  • Mail with image and PDF not displaying correctly on Outlook

    Environment and problem
    OS X Mountain Lion, Mail 6.1 (everything up to date)
    Emails with mixed image and PDF attachments send from my MacBoox Pro are not being displayed correctly when received on Outlook. It is not an Outlook problem.
    Multiple inline images - ok
    I compose an email, rich text format, insert severnal inline images, send to colleage on Windows 7 using Outlook, all received ok. He sees the message with inline images.
    Multiple inline images and PDF - not ok
    I compose a similar email with multiple inline images, but attach a PDF. This time all of the attachments (images and PDF) appear at the end of the message when viewed in Outlook.
    Gmail browser comparison
    I repeat the above from a Gmail account via Safari and I can make an email with inline images and PDF attachments and it works.
    Any thoughts, tips, bug reports, etc appreciated.
    Jon

    No - can't be an Apple fan and then critisise MS for being proprietry
    My problem was solved by installing Attachment Tamer.
    It could also have been solved by emailing from Gmail directly.
    The guys I work with use Outlook and were suprised to see this behaviour.
    It's only basic OS X email that has a problem.
    I wholeheartedly agree that the standard for emails are not conducive for rich layout control.
    But - when my email just has images I had no problems. Take for example the email notifications we're getting from this thread - there are images and layout etc and work fine.
    The key feature from Attachment Tamer hints at the problem (and its solution):
    send images embedded in HTML layout and safely mix embedded images with other attachments;

  • Immediately after updating Acrobat Pro XI to the latest version, the software no longer displays imags in pdf docs.

    Immediately after updating Acrobat Pro XI to the latest version, the software no longer displays images in pdf docs.  All the boxes where images are supposed to be are solid grey.  Old documents that worked are no longer displayed correctly and new documents I make do not display images.  All grey boxes.  Worked fine before the update.  Suggestions?

    Hi precious_star,
    Could you please let me know what version of OS are you using.
    Open Acrobat and go to "Edit > Preferences > Page Display" and check whether 'Show large images' option is checked.
    Is this issue specific for one PDF?
    If possible, please share the file with me via email so that I can also check at my end.
    I have sent you a message with my contact id details.
    Hope to get your response.
    Regards,
    Anubha

  • Any ideas on keeping images on master pages consistently high quality display when exporting to pdf?

    Any ideas on keeping images on master pages consistently high quality display when exporting to pdf?

    Set up the Preflight panel so it checks image resolution. Ask your printer what the appropriate resolution is for your printing process, and set that in Preflight.

Maybe you are looking for