Export to PDF causes fringing around transparent PNGs only in Acrobat

If I export to PDF from Keynote '09 using the "Best" setting, I'm getting black fringing around solid elements in a transparent PNG that was placed in the original keynote doc. This fringing does not occur when the PDF is viewed in Preview. Any suggestions on how to remove the fringing?
Example is here: http://i.imgur.com/3QXGf.jpg
Thanks in advance for the help.

Perhaps my explanation of why this is a problem wasn't clear. The type of PDF links that Pages creates are, quite reasonably, set to highlight when clicked (there are a variety of options in PDF for the visual action of a clicked link; highlight is best for user feedback. In an ideal world, when the user clicks a link in a PDF, you want the a highlight box to appear over the text of the link - exactly over it, not too large, not too small.
Because Pages creates two links for each internal hyperlink, but the user will click only one of them in the PDF (whether in Preview or Acrobat), the highlight is almost guaranteed to be wrong for every click. If the user clicks the top link, only the top two-thirds of the text will highlight, and if the user clicks the bottom link, there will be a weird highlight either on the bottom third of the text or underneath it. It's inconsistent, but in most cases, it's wrong.
Obviously, this is only cosmetic, but it's the kind of mistake that hurts usability and detracts from the user experience, and as far as I can tell, there's absolutely no reason for it, making it a bug.
cheers... -Adam

Similar Messages

  • How to fix black borders around transparent PNG files?

    Hello,
    Recently, iMovie has started putting black borders around transparent PNGs. How can I fix this?
    http://img19.imageshack.us/img19/4668/picture9bt.png

    gndagnor wrote:
    Any way to fix the alpha transparency when importing PNG files to iMovie 09?
    I just know the two options - wrong (8bit) png or that plugin, which in an older version destroyed transparency..
    what also make transparent-to-black is, when you 'manipulate' the imported png, esp. adding a *KenBurns Effect* - that kills transparency instantly.
    for test purposes:
    • create a new project
    • create a new png with some traansparency
    • add new png to new project - same result?
    and just to avoid EVERY problem: your sys preferences/Monitor is set to 'million colors'?

  • Exporting from PDF to Word 2010 is not working in Acrobat 8

    Exporting from PDF to Word 2010 is not working in Acrobat 8.  I'm getting the following errors/messages.  Any suggestions?
    The instruction at “0x29034c05” referenced memory at “0x0000030”. The memory could not be “written”.
    Click OK to terminate the program 
    Click onCANCEL to debug the program
    Runtime Error!
    Program: C:\Program Files\Adobe\Acrobat 8.0\Acrobat\Acrobat.exe
    R6025
    -pure virtual function call

    Not supported by Acrobat 8. Supported by Acrobat X.
    Be well...

  • Strange lines appear around transparent PNG's when document PDF'ed

    Hi
    I have inserted some transparent PNG images into my Pages document, and they look fine on my screen, and they also look fine when I export to PDF and view in Preview.
    However, if I view the PDF in Acrobat (or send it to a Non-Mac user and they view it in Acrobat), there are thin lines around many of the PNG images, which make them look ugly and sloppy, and very un-Mac-Like! Any ideas why these lines are appearing and how to prevent them?

    Hi logree
    Welcome to the forum.
    My guess is that it is showing just the edge of the masked background used to hide the alpha channel background of the .png.
    This happens I think, because the postscript mask may be centred on the outside rows of pixels in Acrobat, with half the pixels still being revealed.
    You can try masking in Pages' instead:
    +Menu > Format > Instant Alpha+
    or try a Photoshop file with transparent background, to see if that eliminates the problem.
    Peter

  • Export to PDF causes blacks to go grey.

    Hello,
    I have been dealing with an issue involving the way InDesign exports to PDF.  In images and boxes drawn in InDesign the black value is being reduced to 95% while the text remains full black.  I thought it was a printer issue but I looked more carefully at the PDF and sure enough it's in the image I outputted to PDF format.  How would it be possible that the blacks in images and drawn boxes could loose the 100% black but not the text?  Do I have a bad install or just a setting misplaced?
    I am running CS5.5 with all the latest updates on a brand new Mac Book Pro.
    Thanks,
    Brett

    It's too bad this is such a convoluted process.
    I don't see any problem with 1-bit black or text black with a CMYK Transparency Blend Space, either in InDesign's Separation Preview or in Acrobat's Output Preview after exporting via the PDF/X-4 preset. In all cases output reads as 0|0|0|100 CMYK, which is what you would want and expect going to  press
    A placed all black 1-bit psd in ID
    Exported to PDF/X-4
    Are you outputting separations or to a composite printer? If composite  is your Print>Output>Color, Composite Gray or Composite CMYK?

  • Export to PDF causes hyperlink failore

    the following issue happens only in Keynote!
    in Pages everything works perfect!
    If I'm linking files on my server with filenames like "abc def" (with a space inbetween),
    after exporting to PDF: the link is converted WRONG!
    in part of showing: 20% for the space, it shows 2520%
    with the result . . . . the file is not founded when Safari, or any other internet explorer opens.
    And this happens only in Keynote!
    The same procedure in Pages works perfect.
    Any ideas?
    muchas gracias
    Rony B.

    I take little encouragement on how to use Apple discussions from someone who has made 3 posts, one of which is extremely difficult to understand the other places blames on the responder for not reading it correctly and the bad software.
    I have twenty years of experience in posting in technical forums, have the third highest rating in this forum for being able to help users solve their  issues, I use  Keynote and Adobe Acrobat Professional on a daily basis to author  interactive technical manuals.
    I am bemused by your use of the  word unprofessional, this is a user to user open forum, I am not paid to make posts in this forum, you could easily get a solution to your issue from a university lecturer or an 11 year old school student. If you are really interested in assistance in the future, help those to help you.
    "A bad worker is ready to blame  their tools,   workmates and customers for their failings.
    A good worker asks many questions and listens and learns from the answers."
    the apprentices motto

  • Crystal Report export to PDF cause high Heap usage ?

    Hi all,
    As part of our reporting integrated with our JSF/JSP application, Crystal report is converted to PDF then sent to browser for user to display. mean while during peak load our Heap usage could reach 3.5GB - 4GB. So I am suspecting the unclosed byteArrayInputStream is the cause.
    (This is a production application so I am collecting information before change the code)
    Is the unclosed() byteArrayInputStream  really cause the problem ?  (the codes is below)
    Thank you,
    Krist
    ByteArrayInputStream byteArrayInputStream = (ByteArrayInputStream)
                                     reportClientDoc.getPrintOutputController().export(exportOptions);       
    reportClientDoc.close();
    writeToBrowser(byteArrayInputStream, response, "application/csv", EXPORT_FILE);
    private void writeToBrowser(ByteArrayInputStream byteArrayInputStream, HttpServletResponse
    response, String mimetype, String exportFile)
       throws Exception {
          byte[] buffer = new byte[byteArrayInputStream.available()];
          int bytesRead = 0;
          response.reset();
          response.setHeader("Content-disposition", "inline;filename=" + exportFile);
          response.setContentType(mimetype);
          //Stream the byte array to the client.
          while((bytesRead = byteArrayInputStream.read(buffer)) != -1)
                { response.getOutputStream().write(buffer , 0, bytesRead);}
          //Flush and close the output stream.
          response.getOutputStream().flush();
          response.getOutputStream().close();

    I do not know if my solution to my Heap problem will help any of you but I thought I would just post it here
    just incase yourselves or others come looking for possible solutions.
    I created a very simlpe report with 2 groups and not much in the way of complex functions. Whilst reporting against about
    100 pages of output everything worked fine, but as soon as we pushed the report up to 500+ pages we got all sorts
    of issues.
    java.lang.OutOfMemoryError: Java heap space
    After much hair pulling and trial and error I discovered that the issue came about where I did not declare formula variables as local. I was concatinating various street address details for of the envelope windows.
    Stringvar Address;      //    I was using this declaration
    Global Stringvar Address;    // Specific Global declaration
    Local Stringvar Address;    // Changed to this declaration
    After changing to Local, my report now runs with no hassels. And the memory usage whilst exporting the report has gone from maxing out at over 1GB to almost nothing (dont even get it registering)
    Am sure someone can come up with a better explanation for this and give reasons but just thougth I would share.
    Cheers
    Darren

  • Exporting to PDF: Text as black and white only possible?

    Hi!
    I do have a large document where 30% of the pages do use colors 70% plain text. I'm asked by the printing company to export the text only pages as plain black and white PDF's. They showed me the function on Windows and Word. Is it possible with pages, too?
    If it helps, I do have the Adobe Creative Suite Design Premium (with Acrobat).
    Thanks,
    Matt

    Yes it is but you have to fix your text so that it is styled to black only.
    Click in the text and go command a (select all):
    Menu > View > Colors
    Click on the sliders icon at the top of the pallette and choose Grey Scale Slider and then the 0% swatch.
    Resave any styles you have used and fix any text or objects that are not part of your main text.
    You can also open your pdf file in the ColorSync Utility found in your Utilities folder inside your Applications folder and apply Filters > Black & White
    Peter

  • Bought the Adobe export package and tried to export a PDF to Excel and I can only get "error occured when trying to access the service"

    Cannot get any exports to work on PDF's after I bought the membership? Any help?

    Hi Dylan,
    Are you trying to access the service from Acrobat Reader?
    Try using the link: https://cloud.acrobat.com/exportpdf sign in with your Adobe ID and try to convert a pdf to doc and check if that works for you.
    Regards,
    Rave

  • My font changes when I export to pdf, not on every page but only a few pages

    I am using the font Helvetica, light in my iBook.  It looks the same on every page in iBooks Author, but when I export it to PDF some of the pages look like they are written with font Helvetica bold.  Can anyone suggest a fix?  Thank you

    A number of threads dealing with issue have been posted over the past two weeks or so, I suggest a search may help you and also check out the More Like This column on the right.

  • Lines appear around transparent objects!

    Hello,
    I think my previous post on this topic was lost somewhere in the adobe forums machine, so please excuse my repost.
    I've noticed that exporting layouts from InDesign CS3 that contain transparent graphics causes the resulting PDF to show DARK LINES AROUND the transparent objects (at the transparent border). I've been using all compatibilities (1.3--1.7), and found that the lines appear on any PDF set to 1.4 or above. (1.3 doesn't have the lines, but it shows stitching lines (white lines) around the entire transparent frame box, so it's unusable.)
    If I zoom in and out with the reader, I see the lines come and go, but don't want users to see a poorly rendered PDF at ANY zoom level.
    How can I create a professional looking PDF without lines at the transparent borders?
    thanks,
    JP

    Thanks for the reply. That thread was helpful in showing some of the effects that I'm seeing (e.g., turning off "image smoothing" in the Acrobat preferences helps). However, I'm still interested in producing a clean looking PDF that doesn't contain dark pixels all around the edges of the transparent images.
    To show what I'm talking about, I've posted a picture of screen captures with explanations at: http://www.viveredesign.com/images/example3.jpg
    This effect only appears when I export a PDF with the Compatibility set to anything above "Acrobat 4 (PDF 1.3)" (so it only looks good with the oldest item in the list).
    If anyone has a suggestion on how to create a PDF without this effect, please let me know. I know I can always just put the blend in to the original image, but that seems so 1990's ;)
    thanks,
    JP

  • Exporting to PDF - CS4 trouble

    In exporting my file, If I choose > Acrobat 4, (Acrobat 5 and above) I get missing elements to my PDF file (attached, v5.) pg 2 shows correctly, pg 1 doesn't (white box around text on left page is missing on the first page). At least v4 consistently works correctly for me (attached.) Of the 180 page book, only four pages print correctly, of the 74 pages that have this image applied.
    The White Box is on the Master Page, so the same information is on both spreads.
    This is the first time I've seen this, and I've been working from these files since InDesign 1 or 2. I'm thinking it's a CS4 bug, as CS3 was just fine. I've tried this with an older file (different fonts) and have the same results.
    I can Print to PDF just fine, and then resize as needed for the web w/ PDF Optimizer (I've 'exported' this way to get around this problem.)
    This file is exported as spreads, but same results if that isn't checked.
    Anyone having similar problems? Any solutions?

    This seems to be a CS4 bug.
    It might be fixed with the lastest update, but you can fix it if you unlock the item from the master page, or flatten transparency when exporting to PDF (X-1a).It seems to only affect objects with applied effects on the master pages.But it doesn't affect every file.

  • Add a Signature Field to Export to PDF

    Post Author: fornachari
    CA Forum: Exporting
    Hi everybody!
    I am using Visual Studio 2005 and the version of Crystal Reports that come  with Visual Studio 2005.
    Does anyone know how to include a signature field when creating PDF in crystal reports with C#? My intension is to generate a report with a signature field available and export to PDF, so the field can be signed with Acrobat Reader. Is there an SDK, plug-in or license that I need?
    Any suggestions will be appreciated!Thank in advance!

    Hi allstarfire,
    Unfortunately, signature field option is not available in Adobe FormsCentral.

  • Crystal Reports 8.5 Export to PDF

    Hi,
    I am using 8.5 SP 3, crystl32.ocx, VC++ 6.0.
    Here is the sample code:
    CCrystalCtrl     m_RPT;
    int iFileType=0;
        m_RPT.SetDestination(2);  //print directly to file
        m_RPT.SetPrintFileName("C:
    SAMPLE.PDF");
        m_RPT.SetPrintFileType(iFileType);
        m_RPT.PrintReport();
    iFileType is only valid from 0 to 17 where 17 is the MS WORD format.
    I can't get it export to PDF file.
    Edited by: Al Koh on Jan 18, 2009 8:39 AM

    Hello Al,
    The OCX (crystl32.ocx) is quite old, and was last updated in version 6.  The OCX does not support exporting to PDF in code.  You can only export from the preview window when viewing the Crystal Report.
    I found a Note that was migrated from an old Crystal Kbase article.  Here's the content of the Note:
    +++++++++++++++++++++
    Symptom
    An application uses the Crystal Reports ActiveX (OCX) control (crystl32.ocx) as the reporting development tool.
    Is it possible (through code) to export to Portable Document Format (PDF) when using the OCX?
    Resolution
    Exporting to PDF (through code) is not supported with the OCX because:
    · The OCX does not contain an export constant for PDF
    · The OCX has not been updated since Crystal Reports 6
    · Functionality to export to PDF was not fully supported until Crystal Reports 8.5
    ====================
    NOTE:
    You can export to PDF using the export button in the OCX preview window. The OCX preview window is able to detect and use the PDF export DLL (CRXF_PDF.dll).
    ====================
    +++++++++++++++++++++
    If you need to export to PDF in code you'll need to migrate to the Report Designer Component (RDC), which was available in CR 8.5.  You should note that the RDC itself has been retired with the release of CR2008 (v12).  If you migrate to the RDC with CR8.5 you won't be able to update your Crystal Reports past CR XI R2 (v11.5) if you migrate to the RDC.
    Sincerely,
    Dan Kelleher

  • Export a PDF to an image with transparency

    Hello,
    I'm trying to export a PDF (which contains a logo with 4 paths) as an image with transparency. In my case I use the PNG because it supports the transparency. As my logo is defined with paths it should be possible to create an image with transparency.
    Maybe this is a limitation and Acrobat cannot create image wich supports transparency.
    Anyone have an idea?
    Thanks in advance,
    Joe

    @Joe:
    That's a really pity.
    Have you found any other software which can do this job.
    I searched yesterday but didn't find anything.
    @Doc Maik
    b)
    I have a (lot) PDF containing a single image which has a transparent background.
    You can check that in Acrobat by menu: Edit - Preferences - Page Display - Show transparency grid
    I need to have a PNG or TIFF (these two formats allow transparency) of that image.
    That's all but as it seems to much for Acrobat to handle.
    "Save as ..." doesn't work in case of transparency!
    Thanks anyway.
    Best regards
    Norbert

Maybe you are looking for

  • Any way to see sharp pixels in a bitmap close-up?

    Is there a way turn off antialias for a particular object (bitmap)? I want to fly the camera close to an image and see sharp edged pixels rather than a blur. Can this be done?

  • Displays and tablets

    firstly - apologies if I offend anyone by not asking a specific Apple monitor question - I chose to ask this question here as I find these forums to be the most helpful i have a smallish (a5) wacom tablet, it worked beautifully with an Electron Blue

  • How can I use select() function in POSIX thread program.

    Hello Now I making a my own progam with POSIX thread in Solaris 8 Environment. But I have some trouble in POSIX thread. I saw that If use POSIX thread then use -D_POSIX_C_SOURCE=???L flag into compile options in Multithreaded Programming Guide. So I

  • PO Profitcentre Issue - SO related procurement.

    Hi ALL, I have created SO with account assignment as Internal Order. That Internal Order is created with Profit Center 1000. The line item material has Profit center : 2000. When I created Purchase requisition with respect to Sales Order, system pick

  • [Solved] Installing packages on MacBook Pro 8.1, No Internet!

    I'm trying to install archlinux to a partition (I'm dual booting) on my MacBook Pro Early 2011 model, my issue is I can not have a wired connection since my ethernet port is broken. So my plan is to download all the base and base-devel packages from