Why PDF with transparency displayed incorrectly?

Hello world

I used this script ( http://www.adobe.com/devnet/digitalpublishingsuite/articles/dps-pdf-to-indesign.html ) to create a magazine based on a PDF file, but I have a big problem.

PDF imported with transparent elements are not properly displayed, but only in a vertical position as you can see in the pictures on the menu and horizontal display correctly.
I don't have control of PDF files because the Publisher send it already ready.

I used the v.22 for this publication because I can't update the application now, but I installed the latest tools DPS.

Thanks in advance for the help.

http://www.cityrailways.it/storage/esempi/Esempio1.jpg

http://www.cityrailways.it/storage/esempi/Esempio2.jpg

I know this is an old thread, but I want to answer because it'll be useful for someone looking for answers as if I was today ;-)

This is an expected behavior for a PDF article. Articles only PDF supports transparency opacity effect and multiply, blend modes are not supported. However, the content even if it is downloaded as a PNG/JPEG article should work correctly.

It is also documented in best practices presented here Digital Publishing Suite help | Best practices to create overlays for

Tags: Digital Publishing Suite

Similar Questions

  • Help! Print to PDF with transparency?

    I have a (8 x 16 spreads) document related to PDF files, updated frequently via Photoshop.

    Make sure that the image mode is 8 channels, PDF files import into Design with transparency on the workspace.

    However, when you try to print to a PDF file, transparency is flattened and replaced with a white background > :(

    The idea is to use the paper color as the background instead of printing a block of white ink.

    Forgive me if I'm missing something obvious - I tried different formats (png, tiff), flattering transparency 'preset' setting to 'high quality' and juggle with PDF printer driver settings.  Displaying print PDF in Acrobat displays a white background on a transparent paper.

    Its interesting to note the In-design background prints transparent (between related images), but not the transparent parts of the image/PDF files themselves.

    Help, please!

    Dropbox link to examples of files with parameters:

    https://www.dropbox.com/sh/mh7pwit3amrwtw1/AABZbuCr6E7Y-0_2GWJAjQ-ta?dl=0

    Thanks for any help or ideas that you can give!

    When you create a PDF file you must never use the print to PDF or use any kind of Postscript.

    Any PDF from InDesign file is to be exported, a PDF from Photoshop or Illustrator must be saved in PDF format. If you exchange PDF files between these applications to export or save as PDF/X-4.

    Print or postscript will never support transparency, so do not use distilled, print to PDF, PDF1.3, EPS.

    Do not PNG or TIFF with vectors.

    BUT change the color of the paper will have no effect. If you need to print a background color different other than white, you should add a layer below all layers, name it background and draw a rectangle of guide line for the purge frame bleeding frame guide line in the desired color.

  • can images with transparency display edge art object - what I'm doing wrong, how it be fixed

    Hello

    With the help of MUSE CC 2014

    I need to place images photoshop text (with transparency) on a full screen slide show but I'm artifacts edge around the inscription which looks like, well frankly, horrible. I do not remember previous versions of MUSE is quite as bad as this, I'm doing something wrong? Is there a trick to overcome these ugly artifacts?


    PSD images are either imported SS


    Thank you very much in advance for any help.



    Hi Vikas

    I was falling a pds on the scene file. No other layers as transparent image and bg. I was reducing the image down in the Muse that I discovered exaggerates the visibility of image edge objects. After a little reading, it appears that there is a known issue with Adobe Muse, something to do with the algorithms that muse use images nationwide. I also think that the color of the layer has contributed a bit to the effect also.

    Problem solved when I gave up the way of the PSD and rather any SS as a PNG image.

  • Why pdf is not displayed / the logo image in the pdf Viewer so that we use mozila 34.0.5 version?

    Hi support them.

    When we opened this http://www.internationalrail.com/pdfservice/lbqujn.pdf URL in mozila 34.0.5, then we are not able to see the logo/image in this pdf at the top link on the left, but when this file download in our local system, then, we receive pdf logo.

    So please let me know what the problem is.

    Thank you
    Sanjay

    For more details please see the attached screens

  • TreeView with icons displayed incorrectly after expansion (8 JavaFX)

    I have a TreeView with classes CellFactory and TreeCell custom, which has been implemented in JavaFX 2.2 and works perfectly. However, after I upgraded to 8 JavaFX. This tree is completely messed up. If I develop a nodes, there will be duplicate tree nodes in the tree. Here is a simplified version of the source code. If not use a method setGraphic() in class TreeCell, it works fine.

    package test;
    
    
    import javafx.application.Application;
    import javafx.scene.Scene;
    import javafx.scene.control.TreeCell;
    import javafx.scene.control.TreeItem;
    import javafx.scene.control.TreeView;
    import javafx.scene.image.Image;
    import javafx.scene.image.ImageView;
    import javafx.scene.layout.BorderPane;
    import javafx.stage.Stage;
    import javafx.util.Callback;
    
    
    public class TreeViewTest extends Application {
        private static final Image image = new Image(TreeViewTest.class.getResourceAsStream("icon_datasource.png"));
        
        public TreeViewTest() {
        }
    
    
        @Override
        public void start(Stage primaryStage) {
            BorderPane rootPane = new BorderPane();
    
    
            TreeItem<String> root = new TreeItem<String>("Root");
            
            for (int i = 0; i < 5; i++) {
                TreeItem<String> ds = new TreeItem<String>("Datasource " + i);
                
                for (int t = 0; t < 5; t++) {
            TreeItem<String> tb = new TreeItem<String>("Table " + t);
            ds.getChildren().add(tb);
                }
                
                root.getChildren().add(ds);
            }
            
            TreeView<String> tree = new TreeView<String>();
            tree.setCellFactory(new Callback<TreeView<String>, TreeCell<String>>() {
         
         public TreeCell<String> call(TreeView<String> param) {
      return new TreeCell<String>() {
         @Override
         protected void updateItem(String item, boolean empty) {
             super.updateItem(item, empty);
             
             if (!empty) {
                 ImageView imageView = new ImageView(image);
                 setText(item);
                 setGraphic(imageView);
             }
         }
      };
         }
      });
            tree.setRoot(root);
            tree.setShowRoot(false);
            
            rootPane.setLeft(tree);
            
            Scene scene = new Scene(rootPane, 1024, 800);
    
    
            primaryStage.setTitle("Test");
            primaryStage.setScene(scene);
            primaryStage.show();
        }
        
        public static void main(String[] args) {
            launch(args);
        }
    }
    

    In general, cells are reused as items in TreeView (and some make, and ListViews) as soon as they become visible and invisible. It is perfectly possible for a cell to have an element that is not empty and then it change to empty, as the cell is reused for an empty cell.

    If you have a bug in your code: you need

    tree.setCellFactory(new Callback, TreeCell>() {
    
                public TreeCell call(TreeView param) {
                    return new TreeCell() {
                        @Override
                        protected void updateItem(String item, boolean empty) {
                            super.updateItem(item, empty);
    
                            if (!empty) {
                                ImageView imageView = new ImageView(image);
                                setText(item);
                                setGraphic(imageView);
                            } else {
                                setText(null);
                                setGraphic(null);
                            }
                        }
                    };
                }
            });
    

    You lucky in JavaFX2.2 that the re-use of cell does not seem to affect your bug. improving the effectiveness of the re-use of the cell in JavaFX 8 has exposed the problem.

    Furthermore, it is generally a bit pointless to re - create the nodes each time than updateItem (...) is called (frequently), rather than create them once when the cell is created (much less often). So consider

    tree.setCellFactory(new Callback, TreeCell>() {
    
                public TreeCell call(TreeView param) {
                    return new TreeCell() {
                        private ImageView imageView = new ImageView(image);
                        @Override
                        protected void updateItem(String item, boolean empty) {
                            super.updateItem(item, empty);
    
                            if (!empty) {
                                setText(item);
                                setGraphic(imageView);
                            } else {
                                setText(null);
                                setGraphic(null);
                            }
                        }
                    };
                }
            });
    

    Instead

  • Fonts displayed incorrectly in Cyrillic

    Hello

    I have trouble with fonts display incorrectly in the browser preview. The problem is with only Cyrillic fonts.

    That's what I see in Design view.

    Screen Shot 2015-11-05 at 18.28.53.png

    And that's what it turns in a browser:

    Screen Shot 2015-11-05 at 18.29.09.png

    As you can see, the Cyrillic version is not displayed correctly.

    The problem is the same for all web fonts.

    What can be done to fix this? In addition, it is important for me not to use the format of the image, which is not a good workaround solution.

    Thank you

    Dmitry

    I found a solution by chance. Characters in the Web Page properties must be set to all. Problem solved.

  • Not able to print the PDF with firefox 29,0 Preview pdf plugin. Why?

    Not able to print the PDF with firefox 29,0 Preview pdf plugin. Why?

    The 29.0.1 firefox solved my problem!

    Please check: Firefox-> Preferences-> tab-> applications (option) Portable document Format (PDF)-> Preview in firefox

    Good luck!

  • Why can't I read my PDFs with CD player after the upgrade of Apple OS 10.11?

    Two days ago I could read my PDFs with Acrobat Reader DC while running OS 10.9 on my Mac Mini. Today, I upgraded to OS 10.11 (El Capitan), but now I can't read my PDF files. The player will launch, but never to show the document. No error message. No matter if I try to open the PDF file by clicking or using file > open.

    So far, I have:

    (1) removed and reinstalled Acrobat Reader DC.

    2) updated the player via the menu help. 2015.009.20077 running. By the Adobe website, I am told that it is the most recent version.

    3) based on a forum comment, I disabled both plugins Adobe in my folder of Plugins from the Internet. No effect. The replaced. No effect.

    4) based on a forum comment, I registered on the Adobe Web site... and so that's why I can of this type. Confirm my email address. Connected. No effect.

    5) based on a troubleshooting page, I did so that the operating system will be associated with the single CD with pdf files. Not found a problem there.

    How can I fix this so I can read PDF files that I have read two days ago?

    Hi Robert,.

    Try to install the reader here XI: Adobe - Adobe Acrobat Reader DC Distribution and check if you are able to open a PDF file or not.

    Thank you

    Abhishek

  • Problem with export to pdf design with transparency and piercing group

    Hello

    My question is simple and complicated. It seems that according to the version of the viewer of pdf with people they see my presentation differently.

    I have a few transparent layers to lapping each other and used the sharp group for not having a mixture.

    When you export the pdf file, I see that my destiny:

    Capture.PNG

    When others open to publish the results vary but even adobe can't do things:

    https://INDD.Adobe.com/view/1675353c-35cf-450A-a4b0-74ad3b5122bd?ref=IDE

    Please help and sorry for my terrible grammar.

    Found a way around the problem. It is not the most amazing, but it's fast and easy. The pdf is also much lighter

    1. Copy industry
    2. Delete all except bottom and blocks
    3. Save as jpeg
    4. Open original
    5. Make the opacity of 0 blocks
    6. Remove the background and replace them with jpeg
    7. Be happy
  • I'm filling out a form that is available on a site. When I click on the option to fill out and submit the form 'online' a pdf document is displayed in chrome with the following text "to display all of the content of this document, you need a later version

    I'm filling out a form that is available on a site. When I click on the option to fill out and submit the form 'online' a pdf document is displayed in chrome with the following text

    «To display all of the content of this document, you need a later version the viewer PDF.» You can upgrade to the latest version of Adobe Reader from www.adobe.com/products/acrobat/readstep2.html for further support, go to www.adobe.com/support/products/acrreader.html"

    Needless to day, I installed the latest version. I even reinstalled using the link in the message, but nothing helped. Whenever I click on the link to go forward, I get the same message. Question: (i) is it my PC/software (Vista), (ii) is the site where I'm trying to submit the form, or (iii) is it the software acrobat reader. Note that I used successfully the last version to fill out and sign forms.

    It is none of them. It's Chrome, which is ignoring Adobe Reader and showing the message.

    Solution: just save the document (with the message) to your desktop. Then open it in Adobe Reader. The 'real' should then display.

  • I have a document composed of separate PDF files that reside in a folder and are related to each other through hyperlinks. Each pdf file is set to open with bookmarks displayed, however if I have a link to a PDF file to another and use the button "Previou

    I have a document composed of separate PDF files that reside in a folder and are related to each other through hyperlinks. Each pdf file is configurΘ for dΘmarrer with bookmarks displayed, however if I have a link to one PDF file to another and use the "back" button to return to my starting point bookmarks are replaced by "vignette". Is there anyway to prevent this?

    Hi Mike,.

    While the implementation of the links, if you choose to open the file in a new window then you will not experience this issue, then you can simply switch to the file view and previous bookmark will remain as it is.

    Is that what helps with your query?

    Kind regards
    Rahul

  • Windows 8 Adobe Reader does not open fully compiled with multiple PDFs in one alone - why pdf?

    Windows 8 Adobe Reader does not open fully compiled with multiple PDFs in one alone - why pdf?

    You can not post attachments in the forum; only insert images in the post.

    Regarding the Flash Player message; If this document contains all the rich media, you will need to install the Flash Player plugin (and not the control ActiveX that is already installed in Windows 8 IE10).

    Download http://download.macromedia.com/pub/flashplayer/current/support/install_flash_player.exe plugin setup

  • Problem with the display of Adobe PDF documents

    Problem with the display of Adobe PDF documents

    I have a Windows 7 Home Premium computer

    I read all the suggestions and I tried to download several versions of Adobe Reader for Windows 7 and Vista http://get.adobe.com/reader/otherversions/.

    Before you download each version, I would delete the current version with uninstalling programs for the control panel.

    After each new installation I shut down the computer and restart the computer.

    I tried to download the versions with and without going through my antivirus (CA Total defense) running.

    After downloading, I thought that the version downloaded successfully.

    I have read the help of Acrobat http://helpx.adobe.com/acrobat/kb/troubleshoot-reader-installation-windows.html and followed the instructions.

    None of the above helped.

    The problem is that any version of Adobe Reader, download, I can't open a PDF file and read it. Or the drive itself will remain open.

    1. If I try to open the drive from the desktop link or real program menu, the Player opens for 5 seconds and then closes spontaneously. If I try to click on the Player menu (File, Edit, View, window, help, tools), then an alarm will sound and the menu does not open. Soon after, the reader is closed.

    2. If I try to open the drive by double clicking on a PDF file then the Player opens but the document is not displayed (only the grey player screen PDF is specified), then the drive closes after 5 seconds on its own.

    The desktop shortcut shows like 'red icon Adobe Reader'. But the real program menu icon shows as empty a folder icon.  All documents in PDF format displayed as Adobe PDF icon.

    I tested several PDF files and none will open on this computer, but they will open on other computers.

    I created a word document and saved as a PDF file. It looked as if it had record properly (a the appropriate icon) but when I try to open it according to point 2 above the document is not displayed and then then the drive closes after 5 seconds on its own.

    Anyone have any ideas on what is happening and how can I fix?

    Could you please respond in this forum and send me an email at [deleted]

    I'm so confused and frustrated.

    I would try Windows Explorer, navigate to C:\Program Files (x 86) \Adobe\Reader 11.0\Reader, and then double-click Eula.exe and accept the license agreement

  • Why not URL links displayed as pdf written of freehand MX?

    I selected the text I tried to apply the URL. Pulled the bottom of the Navigation menu, typed in the URL, press tab, and the selected type appears in the text box of substring. I chose then get URL in Action; _self under settings; on (press) to the title of the event and then closed the box. Has written a ps file and then as a pdf and the URL link does not appear in the pdf file.

    I've got OS 10.6.2 Freehand mx, Distiller and acrobat CS4.

    All suggestions, oh wise Freehand gurus out there?

    My god. first of all, do you really after that January 21? and nobody react?

    It's terrible. I left kind of fall on this forum or I would have rung me. in fact, don't know why I'm still here now, but I have as well, try to answer your question.

    by the way for future issues you would have more luck on http://www.freefreehand.org

    in any case, I just exported a PDF with two different links contained in it (FreeHand, on os 10.6.2 etc.). the only thing I know, that I confirmed work very well, is to hit the "Settings" button... ", you will see in the first window on file > export... If the PDF is selected as output type, the installer will have several checkboxes, one that says "export with URLs. Make sure it is and click on the OK button (should be blue).

    None of the other stuff that you said made no sense to me. but then, it was a long day of work.

    good luck, or maybe you already figured it out now.

    EDIT

    OHO, I'm changing my answer. I realize now what you're talking about, and it seems to be completely broken. Have not used this feature in some time, but I know that it worked on 10.5.8 running FH 11.02. Now, some fields or menus are dimmed, and it breaks the other links that I had work (for which I had just added the http:// part).

    Freehand is breaking. Slowly but surely. No two ways about it.

    But I wonder, if you have CS4 why not just open the PDF file in AI or Acrobat Pro and fix it's from there? I know, but you have to do what you have to do.

  • Does anyone can help with the display settings on Satellite 4070?

    My brother gave me his old laptop, a Satellite 4070, I wrongly thought was of Wi - Fi enabled and it is connected to my library with poor results.
    The display settings are gone and continue to go haywire and display a message saying:
    There is a problem with your display settings, the adapter type is incorrect, or the current configuration does not work with your hardware.

    I tried to change the display settings but they go back - anyone got any ideas on that?
    I know there is a product recovery CD, but naturally enough I don't have that either.
    Thank you

    Hello

    I m not exactly on this fault, but it seems there must be something wrong with the graphics driver and display settings.
    That's why I recommend you first remove the old driver and after restarting again try to install the graphics driver from the Toshiba driver page.

    I think you are using the Win98. Am I wrong?
    Then visit Toshiba, download the Trident display driver and install it!

    Good luck and have a nice day ;)

Maybe you are looking for

  • my screen is blank when I open Firefox

    have re - install 3 times

  • Event error ID 1202 ADWS.

    One of the servers receive error ADWS, event ID 1202. This computer hosts now the instance of specified directory, but Web Services Active Directory could not interview. Services Web Active Directory will try again this operation regularly. Instance

  • Recover Windows 8.0 on hp pc

    I would like to reinstall my windows 8 pro system, but I have lost my recovery CD. So, how to do a reinstall or recovery of windows 8 and delete all my files, I supported those upward and its ok to remove them. I'm selling this computer because I don

  • How to block the cell damage such as mobile?

    I need emergency aid... I want to block all storage devices in Windows 7. I've already blocked usb storage devices by changing the value of registry USBTOR. But the connections of portable devices as shown in my computer as mobile phones are connecti

  • I can't create a new folder in windows 7 exployer, why?

    In windows 7 exployer, I click on "new folder" high and nothing happens.  I click on the drive I store my info and want to create a new folder, so I click on thenew folder button at the top and nothing happens.