Problem rendering pdf in iOS

When I am trying to open a pdf file inside an iOS application, it is not rendering the entire content but if the same file is opened using Adobe Reader, it opens fine. Please suggest what might be the issue.

So you're using Apple's PDF display in iOS? Suggest you try Apple's developer forum.

Similar Messages

  • Problem with PDF 1.3-Export: Photoshop-Files with transparency over InDesign colored objects

    Hello!
    I'm using InDesign CS6.
    I'v finished now a layout for a folder, and I put a photoshop-image with transparency over a InDesign-rectangle which I have filled with a cmyk-color in yellow.
    When I export a PDF with the Settings "PDF X-3:2002" (with PDF-Standard 1.3) the Photoshop-image shows uggley jagged edges at the border to the InDesign-colored background. However, the Photoshop-images which are over another bitmap-image (as background), this images don't show this annoying edges.
    When I export to PDF-Standard 1.4 the problem doesn't occor, however my printing-service requests PDF 1.3.
    I know, the workaround for this problem is, to replace the yellow background-color with an bitmap-file with the same color, but is there any other option to get a correct result without this more time-consuming image trick?
    I think it has to do with the transparency reduction which is necessary if using PDF 1.3. When I examine the PDF-File in Illustrator, this edges occurs mostly at the borders from the tiles in which the image is cut during the transparency reduction process. Although, if I open the rendered PDF in Photoshop this jagged edeges are visible, so it is definitly a render error.
    I would be glad if someone of you has a solution for this problem, in the attachment is an image which illustrate the problem.
    Best wishes

    Find another printer.
    End of problem. It really saddens me to think that these Luddites are
    still in business making no effort to move into the 21st century.
    Bob

  • How do I open a link in a pdf in iOS App Adobe Reader 11.6.4?

    When I open a pdf in iOS App Adobe Reader 11.6.4 I cannot click on a link, the link is underlined but I have no possibility to choose that link. On a PC this link in the same PDF is functioning correctly.

    Michael,
    Your form is a special type of form called a "static XFA form" (typically authored with Adobe LiveCycle Designer).
    The "links" in the static XFA form are actually buttons (form fields) that act like hyperlinks.
    Unfortunately, Adobe Reader mobile products (including Adobe Reader for iOS, Android, Windows Phone) do not support static (or dynamic) XFA forms.  Sorry for the inconvenience.
    The static XFA buttons for web links did not work with any of the non-Adobe PDF viewers that I tried on my iPad, either.  So the users who receive the static XFA form will experience the same problem on mobile devices.

  • Stop Safari from rendering PDF natively

    According to this Adobe article, Safari 5.1 renders PDF documents natively. I have Safari 5.1 (7534.48.3) on Lion 10.7.1.
    I am tired of Safari opeing PDF's automatically for me. I would like to download PDF's when I left-click on links for PDF's.
    (1) Terminal commands such as defaults write com.apple.Safari WebKitOmitPDFSupport -bool YES no longer work.
    (2) I made sure that AdobePDF does not exist in /Library/Internet Plug-Ins.
    Any idea? 

    I am having a similar (if not the same) problem.  When I go to certain websites, instead of displaying the image in the window, Safari automatically downloads files with such names as get.php.pdf or dlraw.cgi.pdf.  This didn't happen before on the same websites.  I contacted one of the site owners, and they haven't changed anything.  Unfortuantely, on both sites (Lybrary.com and askalexander.org) you need my password to get at the pages I'm having trouble with, so I can't point you to a page directly.
    On other sites, Safari is acting as expected (shows the pdf in the window without any download).
    I'm running OS 10.6.8 and Safari 5.1
    Any help would be appreciated.
    Thanks,
    Frank

  • SaveFrameBookAsPdf using FDK11 gets the contents cropped to the top and right of the rendered PDF.

    Hi,
    I am using a method to Save Frame file as PDF using FDK 11 and this works fine. Currently, I have a requirement to Save the whole Frame book as PDF for which i am trying with the same method but the output is not accurate. The contents in the rendered PDF is cropped to the Top and Right. Tried several options and could not figure out the cause of the issue. any help would be highly appreciated.
    Used Method:
               long SaveAsPdf(char* strSourceFileName, char* strTargetFileName)
                    F_PropValsT params, *returnParams = NULL;
                    F_ObjHandleT docId, pgfId, saveId;
                    IntT i = 0;
                    StringT name = NULL;
                    StringT str_Target_File_Name;
                    long bookId;
                    str_Target_File_Name = F_StrCopyString((StringT)strTargetFileName);  
                    F_FdeInit();
                    /* Open all files */
                    bookId = openBookFiles(strSourceFileName);
                    /* Get docId in order to set Acrobat Bookmark levels */
                    docId = F_ApiGetId(FV_SessionId, FV_SessionId, FP_FirstOpenDoc);
                    /* Sets the save parameters so as to save as PDF and allow user to name file.*/
                    params = F_ApiGetSaveDefaultParams();
                    i = F_ApiGetPropIndex(&params, FS_FileType);
                    params.val[i].propVal.u.ival = FV_SaveFmtPdf;
                    /* Saves the book and all its components to one PDF file */
                    saveId = F_ApiSave(bookId, str_Target_File_Name, &params, &returnParams);
                    /* Close the open files.*/
                    while (docId)
                        F_ApiClose(docId, FF_CLOSE_MODIFIED);
                        docId = F_ApiGetId(FV_SessionId, FV_SessionId, FP_NextOpenDocInSession);
                    F_ApiDeallocatePropVals(&params);
                    F_ApiDeallocatePropVals(returnParams);
                    return (long)saveId;
                long openBookFiles(char* strSourceFileName)
                    IntT i = 0;
                    F_PropValsT script, *returnp = NULL;
                    F_ObjHandleT compId;
                    F_ObjHandleT docId;
                    StringT compName = NULL;
                    StringT str_Source_File_Name;
                    str_Source_File_Name = F_StrCopyString((StringT)strSourceFileName);  
                    /* create open script which minimizes user response*/
                    script = F_ApiGetOpenDefaultParams();
                    i = F_ApiGetPropIndex(&script, FS_MakeVisible);
                    script.val[i].propVal.u.ival = False;
                    i = F_ApiGetPropIndex(&script, FS_RefFileNotFound);
                    script.val[i].propVal.u.ival = FV_AllowAllRefFilesUnFindable;
                    i = F_ApiGetPropIndex(&script, FS_FileIsOldVersion);
                    script.val[i].propVal.u.ival = FV_DoOK;
                    i = F_ApiGetPropIndex(&script, FS_FontChangedMetric);
                    script.val[i].propVal.u.ival = FV_DoOK;
                    i = F_ApiGetPropIndex(&script, FS_FontNotFoundInCatalog);
                    script.val[i].propVal.u.ival = FV_DoOK;
                    i = F_ApiGetPropIndex(&script, FS_FontNotFoundInDoc);
                    script.val[i].propVal.u.ival = FV_DoOK;
                    i = F_ApiGetPropIndex(&script, FS_LanguageNotAvailable);
                    script.val[i].propVal.u.ival = FV_DoOK;
                    i = F_ApiGetPropIndex(&script, FS_LockCantBeReset);
                    script.val[i].propVal.u.ival = FV_DoOK;
                    i = F_ApiGetPropIndex(&script, FS_UpdateTextReferences);
                    script.val[i].propVal.u.ival = FV_DoNo;
                    i = F_ApiGetPropIndex(&script, FS_UpdateXRefs);
                    script.val[i].propVal.u.ival = FV_DoNo;
                    i = F_ApiGetPropIndex(&script, FS_UseAutoSaveFile);
                    script.val[i].propVal.u.ival = FV_DoNo;
                    i = F_ApiGetPropIndex(&script, FS_UseRecoverFile);
                    script.val[i].propVal.u.ival = FV_DoNo;
                    i = F_ApiGetPropIndex(&script, FS_AlertUserAboutFailure);
                    script.val[i].propVal.u.ival = False;
                    i = F_ApiGetPropIndex(&script, FS_BeefyDoc);
                    script.val[i].propVal.u.ival = FV_DoOK;
                    i = F_ApiGetPropIndex(&script, FS_FileIsInUse);
                    script.val[i].propVal.u.ival = FV_OpenViewOnly;
                    i = F_ApiGetPropIndex(&script, FS_FileIsStructured);
                    script.val[i].propVal.u.ival = FV_OpenViewOnly;
                    i = F_ApiGetPropIndex(&script, FS_OpenFileNotWritable);
                    script.val[i].propVal.u.ival = FV_DoOK;
                    long bookId = F_ApiOpen(str_Source_File_Name, &script, &returnp);
                    F_ApiDeallocatePropVals(&script);
                    return long(bookId);

    Here's a clip:
    http://depositfiles.com/files/xqqnadc88
    This clip is made up of two clips on top of one another, Video 1 has a 50% right crop and Video 2 has a 50% left crop.  Video 2 crossfades into a clip of the scene with no actors in it which also has a 50% left crop.  I have had this issue on footage shot with two different cameras, one a Sony HD camcorder and the other a little Fujifilm point and shoot still camera with HD video capabilities.  Perhaps "randomly" is the wrong word to use though because I have tried recreating this and other scenes from scratch a few times and I always have the same problem with the right side of the screen disappearing at the same time no matter what I do.  In the project I am working on, I have several scenes where this effect is needed and some of the footage seems to work fine while other scenes consistently give me this issue.
    I also just remembered that I have CS4 (but CS3 runs a little better on my computer) so I'll try putting the clip together in CS4 and see if it still does the same thing.

  • I am experiencing wireless connection problem on 4s after ios 8.1 upgrade. The wireless icon appears showing that it's connected but webpages do not load. I have checked my internet connection with other devices and seems to be alright. what to do?

    Hi
    I am experiencing wireless connection problem on 4s after ios 8.1 upgrade. The wireless icon appears showing that it's connected but webpages do not load. I have checked my internet connection with other devices and seems to be alright. what to do?
    I have tried reseting the network settings and forgetting my wireless connection and re-connecting to it. I even backed up my phone on itunes and restored it, factory reseted it. Nothing seems to work.
    Also after my upgrade to ios 8.1 my personal hotspot option under cellular data has disappeared.
    Would you please help me out? I would really appreciate it.

    Hi..
    Restart your router then restart the iPhone to test.
    If that doesn't help, try this support article >   iOS: Troubleshooting Wi-Fi networks and connections

  • Problem with Clipboard on iOS

    Hello,
    i have a problem with Clipboard on iOS. My test code:
    var ts:String = "This is a test string for clipboard...";
    Clipboard.generalClipboard.setData(ClipboardFormats.TEXT_FORMAT, ts);
    This code is OK on Android or Windows. Test string is in clipboard and i can paste it on other app. But on iOS not. setData return true, but text is not in clipboard.
    Any ideas?
    Thaks

    Hi,
    Looks like it's a bug with iOS AIR, could you please open a bug at bugbase.adobe.com
    -Thanks
    Pahup

  • Problem with GarageBand for iOS 6/7 Iphone 3gs / 4

    Problem with GarageBand for iOS 6/7 Iphone 3gs / 4
    Hello,
    On February 16, bought the GarageBand for iOS which was free and so I find and install it on my 3GS .
    Take the demo: Curtain Call Demo
    and within the instruments :
    audio Recorder
    Sampler
    Smart Drums
    Smart Strings
    Smart Bass
    Smart Keyboard
    Smart Guitar
    Keyboard
    Drums
    Guitar Amp
    1.4.1 is the latest version for ios 6.
    Configure my AppleID on a Iphone 4 and install the program , the version I have the Iphone 4 is the orange ( different from 3gs ) icon and put it on the AppStore : ios 2.0.1 for ios7.
    With these instruments :
    audio Recorder
    Sampler ( to download the instrument )
    Smart Drums ( to download the instrument )
    Smart Strings (Download the instrument )
    Smart Bass ( to download the instrument )
    Smart Keyboard ( to download the instrument )
    Smart Guitar
    Keyboard
    Drums
    Guitar Amp ( to download the instrument )
    and if I give what I need to restore tells me if I bought it I did not restore anything and tells me to buy :
    Complete collection of GarageBand instruments and sound at a price of : € 4.49
    As they are 2 different versions ? More than anything I say because I have to pay for the instruments in the 2.0.1 version of the Iphone 4 ... ?
    And besides not wearing demo Demo Curtain Call : (
    GarageBand 1.x If you are upgrading it using iTunes on a Mac or PC, you can restore the original collection of instruments and sounds. There is no need to buy this collection. Press "You've already purchased?" When displayed on iPhone, iPad or iPod touch.
    this puts on the AppStore but I have tried to restore as I wrote above, and does not work. There is nothing to restore.
    regards

    I've been having the same problem. However, I believe my problem is due to the 3G issues I've been having. I don't have internet access even when the 3G symbol appears, so probably my iphone keeps trying to connect to the network and has its battery drained! Have you been having the same issue?

  • I have a problem with Safari in IOS 8 on my iPad 3. The bookmarks take up a third of the screen and I can't seem to make the bookmarks disappear until I need them. The useful part of the screen is therefore very small. Any suggestions gratefully appr

    I have a problem with Safari in IOS 8 on my iPad 3. The bookmarks take up a third of the screen and I can't seem to make the bookmarks disappear until I need them. The useful part of the screen is therefore very small. Any suggestions gratefully appreciated.

    OK, it now sort of works. A couple of problems here:
    After updating IOS, Safari iCloud was "automatically" switched off
    Switching it on had no effect
    resetting my iPad automatically switched off safari iCloud again
    after switching it back on, it said "turning off safari data"
    switched it off and on again, now it said : "turning on safari data" and the sync worked
    On IOS 7 no problems
    The bookmarks not being displayed was because after pressing the book icon, it defaulted to showing the history and I had to press "Back" to get to the other options

  • I am having a problem opening pdf document.  I get error message: "Adobe Reader has stopped working"

    I am having a problem opening pdf document.  I get error message: "Adobe Reader has stopped working" then I get Windows is looking on line for a solution, but then my document closes. I tried uninstalling and reinstalling Adobe Reader XI, rebooted my computer but this did not help.  I get the same message. What to do?

    Can you open Reader by itself?  If so, check if disabling Protected Mode improves the situation [Edit | Preferences | Security (Enhanced)].

  • IPhone 5s problems after upgrading to iOS 7.1

    Hi
    I had problems with my iphone on 7.0.6 ( the apps were crashing and mail didnt work) so i thought that if I upgrade it to 7.1 it will help but it didnt.
    I restored my iphone and then it got stuck on the apple logo that loads the iphone after the restore.. its been a while and the iphone turned on but then when i tried to restore my backup the iphone crashed and i had a blue screen and it rebooted like every 10 seconds so i restored again in DFU but nothing seems to help it got stuck on the apple logo and like every hour or something it reebots and blue screen comes again.....
    please help meeeeee

    please i have the same problem when i update ios 7.1.2 my phone can not restart  and still on logo of iphone state do not work ... but i press on home and power till open >>> does this mean the software does not instal well ????
    second my phone when i open any application an press on the screen can not open any thing and i press on home still open and close same application many times how i can solve this problem please ??do you know what is best software i can install it and how ??
    thanks

  • Problems after upgrading to iOS 7.1.2.

    After upgrading iPhones 5c and 4s to iOS 7.1.2., the phones have troubles in establishing a call connection. It takes considerably longer time and the phones are inaccessible for incoming calls. Does anyone encounter similar problems? Troubleshooting? Thank you!

    please i have the same problem when i update ios 7.1.2 my phone can not restart  and still on logo of iphone state do not work ... but i press on home and power till open >>> does this mean the software does not instal well ????
    second my phone when i open any application an press on the screen can not open any thing and i press on home still open and close same application many times how i can solve this problem please ??do you know what is best software i can install it and how ??
    thanks

  • Printing problem when PDF is sent to the printer with certain fonts - missing text

    I'm running into a printing problem when PDFs containing certain characters of the Calibri font are used.  The text in large sections of the PDF is missing on the paper version, but the text is there on the screen.  It's also happened when the PDFs we created were e-mailed out to a client and printed on their printer.  The problem is not present when printing directly from the programs (Microsoft Word, Excel, Visio, etc.).  I've been trying to get tech support from Adobe on this, but every time I call they apologize and say they will call back in 4-6 hours with an answer.  Same result each time, no call back.  If anyone from Adobe is listening, it's case number 184891587.  The font appears as an embedded subset when I look at the document properties.  Sometimes deleting one or two Characters allows for larger text blocks to be printed - i.e. removing a long dash in bold from the heading of a paragraph makes the paragraph reappear when printed to paper from PDF.  In all cases the PDF appears correct on the screen.  Printing as an image allows the text to appear, but the image quality isn't acceptable for small text, even at the 600 dpi setting on the printer.  If the PDF is sent out by e-mail, we do not have control over the end-user's printer setup anyway, so we need this to work in all cases.  
    The setup/process I'm using is as follows:
    Windows 7 Professional SP1 64-Bit
    Microsoft Office 2013 - problem is present when printing documents from Word, Excel or Visio.  Even other variations on documents. 
    I've tried Acrobat versions 11.0.0 to 11.0.5 as well as Acrobat Pro 11.0.0 and 11.0.1.  Same Result
    Printing to Adobe PDF as the printer, from the third party application
    Printing to a Xerox printer from PDF using Acrobat - Text missing
    Client prints to Konica printer - Text missing
    I print to the wide-format Ricoh (which also does 11x17) and the text is present. 
    Is there something I'm missing?  Is the entire font not getting embedded into the PDF file?  I noticed that rolling back to a much older version of the Calibri font (1.02 compared to 5.72) makes the problem mostly go away, but it's not completely gone.  Is it possible the font is too large to be completely embedded?  Where can I go from here? 

    Success!  At least for now.  It looks like my problem was fixed with Adobe's most recent update, 11.0.06.  From the release notes:
    PDF creation
    Added support for Lotus Notes 9.
    Added support for WebCapture in IE 11.
    Added support for conversions from AutoCAD 2013.
    3652540 A blank pdf is created for files having hidden visual style.
    3601108 Flow Chart converts as a multicolored square.
    3654345 Word documents missing parts of images in conversion to PDF.
    3654572 Temporary file size increases when creating pdf by combining multiple files into one PDF.
    3670155 PDF file created with Distiller XI prints incorrectly to some printers. (Emphasis mine)
    3599407 Checkbox check marks do not appear in these files.
    3663233 IE Web Capture in localized OS: Icons and drop-down menu items are missing and conversion dialog is not localized.
    3651931 Chrome Only: Few web pages when converted to pdf from Chrome plugin doesn’t show up the Save As dialog.
    3597910 EPM Mode On: Web capture is not working on Windows 8-32 bit when cache folder is missing.
    3610644 Firefox 23.0: With Firefox version 23.0 (latest), the WebCapture icon shows up very dim as if it is disabled.
    3650244 ODA falis to convert DWG files to PDF for large files.
    I don't know if that's definately what solved the problem, but it sure sounds similar and this is the update that made the printing problem go away.  We can't get the PDFs to fail at this point with our printers, even with Calibri 5.72.  I'll come back to thread if we have printing problems at the end-user locations. 

  • Problem with PDF extract in a report

    Hi guys,
    We are facing a peculiar problem with PDF extract in a report. When we run a report and export PDF , all the records in the result set are populated in the PDF. however, if I navigate away from the report and return back to the same report, and click on export pdf (with the result set already populated) i get a blank PDF document without any records. If i run the report again and then export the PDF it works fine.
    Export excel works fine for all cases.
    I am assuming it has got something to do with the way the system handles the cache for PDF export.
    I also found that this occurs only when we have a value list filter with "none" set as default,and in this case, initially on opening  the report for the first time the query does not get executed automatically.
    Any help on this would be highly appreciated.
    Thanks and Regards,
    immanuel

    Hi Immanuel,
    Have you tried clearing the cache? My guess is, it is probably a defect.
    Regards,
    Vikram

  • Problems opening PDFs from SharePoint 2010 with Acrobat X Pro

    Is anyone else having problems integrating pdf document support into Sharepoint 2010?
    I now have the icon showing for any pdf documents saved in a Document Lirary, However I don't get the options of Checking out - editing an checking in. There is also no revision control. I think that when I open a pdf document, the servers own copy of Adobe Reader opens, and not my local copy of Reader or Acrobat X pro.
    I've done what it says in the Administrators guide for Sharepoint integration and I'm still unable to get this functionality to work. As we use interactivve pdfs for a lot of our internal documentation the pdf integration features are very important.
    Any help from users who have already been through the pain of sharepoint integration would be really appreciated.
    Regards.

    Hi Bill,
    Looking at your initial problem of not being able to open the SharePoint hosted PDF document from the web browser.
    Could you please verify that as per the "Enterprise Administration Guide", the DocIcon.xml file of your server contains the following line:
    <Mapping Key="pdf" Value="AdobePDF.png" OpenControl="AdobeAcrobat.OpenDocuments"/>
    Please verify that the OpenControl attribute is also mentioned correctly. Without this the Acrobat Active X component would not be invoked.
    thanks,
    Shivani

Maybe you are looking for