How to know what compression format is used for images in pdf file? (jpeg2000 issue with iPad)

I have a pdf file whose images are compressed in jpeg2000 format which the iPad doesn't support. I used Acrobat to save the pdf file using the zip compression for the images and another time using the jpg compression. I set this in the PDF Optimizer screen. The images in the pdf do not show up in the iPad.
I am not sure if I am doing something wrong. How do I know what compression was used for the images in a pdf file?

My work around for now is "Make Compatible with…’ from Acrobat 4.0 " which does not support JPEG2000 compression.
http://forums.adobe.com/message/3847176#3847176

Similar Messages

  • I need to know what Adobe version to use for my iPad to fill in and pay forms online

    I need to know what Adobe version to use for my iPad to fill in and pay bills online

    In the App Store search for Adobe Reader.

  • Question: I want to know if it may be used for an iPhone 5 a car charger with an output of 5V/1A

    Question: I want to know if it may be used for an iPhone 5 a car charger with an output of 5V/1A

    Yes

  • How to make Adobe as your default viewer for all your PDF file instead of the Preview given? Thanks

    How to make Adobe as your default viewer for all your PDF file instead of the Preview given? Thanks

    you need to "Get Info" on the file first. Select it, right click and select 'Get Info' in the menu.
    In the window that pops up, near the bottom, the "Open With" drop down menu needs changed. If the drop down menu does not present the one you want, select "Other" and find it.

  • How to know which compression scheme is used in a TIFF file

    I have an application which processes multipart tiff files. How can I extract the header of TIFF file to know which compression scheme is used in it.

    Post Author: V361
    CA Forum: Integrated Solutions
    What are you using CR XI ? or ???

  • How to tell what recovery point was used for restore

    Is there a way to determine what recovery point was used for a restore after the restore was started.

    The question comes from the experience of having a package installed but not being able to build it from the same PKGBUILD (due to nontrivial issues). The package must have been built successfully by *a* build system, so ideally one would want to replicate that build. The relevant differences I could think of are the compiler flags and to a lesser extent the hardware build platform.
    You should describe these supposedly non-trivial issues. I've never experienced what you describe in my years using Arch, nor have I ever heard it suggested that the famously vanilla Arch packages are built using some sort of unconventional compiler flags. I have heard multiple developers say using highly modified CPU optimizations and modified linking and such are mostly pointless, however. So I'd bet a week's pay that the build system uses vanilla GCC with the default settings. Why would the thing that actually builds Arch Linux be the one part of the Arch ecosystem that doesn't abide by the Arch standards? Why would only some packages have library linking problems and such when all packages are built on the same machine against the same library versions---and thus the conditions resulting in a failed build would be identical to those in a successful build? I could be wrong, but I think you're on the wrong track. The quickest way to find out is to describe what the real problem is, not what you imagine the solution to be.

  • How to know which BAPi is being used for creation of PO in classic scenario

    Hello Experts,
    We are in SRM 7.0 classic scenario.
    How can we know which BAPI is being used in the calssic scenario i.e. How can we know if we are usind BAPI_PO_CREATE or BAPI_PO_CREATE1 for creation of PO?
    Any pointers will be highly appreciated.
    Thank you in advance,
    Thanks & Regards,
    RKS

    Hi RKS
    yesterday BLOG by our SUMMER WANG helps every SRM consultant to debug the PO error
    /people/summer.wang/blog/2010/05/11/trouble-shooting-of-srm-po-transfer-error
    Good work Summer wang !!
    Muthu

  • What compression type to use for disk image files

    Hello all
    I was wondering if a more experienced user than me could give a recommendation as to which compression format I should use to compress an image I made of my / partition. I used dd to make the image file.
    For me, (de)compression time is more important than compression ratio (size), but I'm of course looking for a good blend of both
    Thanks for any advice

    If you have a multicore processor, use pigz instead of gzip etc. Start with this app and only after you're not happy with it, look for one that's faster / compresses better.
    BTW, do you have a lot of incompressible data in there? Movies, pics, music and already compressed files won't compress any more.
    Last edited by karol (2011-01-29 16:16:03)

  • Anybody knows what is "FAST VIEW" used for?

    Dear all,
    A question about data extract settings, 'build fast views'? Can anybody tell what are 'fast views' and what they are used for?
    Thanks,
    gypsy

    Thanks Frank.
    Some more follow up questions:
    1.) I checked and it seems that the default configuration is that this optimization is disabled. We have lots of code in our application that aren't calling RowSet.reset upon acquiring the view link RowSet and are expecting it to be "fresh." So I think it is false by default. Is this correct?
    2.) Our performance problem isn't really caused by the new instances of RowSet that are being created. As the documentation itself says, the overhead introduced by new instances of RowSet aren't that big. Our problem is caused by the Contention being introduced by the ViewDefImpl.isViewLinkAccessorRetained(). And since all of our ViewObject impl classes are extending from one common framework class(which just extends ViewObjectImpl), we can just override the isViewLinkAccessorRetained at that level to just return the default value(false). This should eliminate the calls that are causing contention problems. Would you agree that this is an acceptable course of action?
    3.) Just out of curiosity, why is ADF implementing the Property checking this way anyway? Shouldn't the value of this property be loaded only during VO instance construction (or some other reasonably infrequent event) instead?

  • What is the Maximum Photos For Lightroom SlideShow pdf file??

    Lightroom2.3 freezes at the end of attempting to make a pdf file at screen resolution and best quality when i use more than 500 photos. Would like to make one file with 13,000 pix, but am willing to compromise :D

    Seems to me that that would be a rather difficult size of slideshow to manage and navigate effectively. But if it is something you really want to have, you could try creating several smaller slideshows, and then if you have Adobe Acrobat you could combine those PDF files to create your one large one.

  • How to delete in iTunes for Mac some PDF files, previously synched with iPhone and then deleted from it?

    A while ago I synced some PDF files from my iTunes to my iPhone.  I've deleted those PDF files from my iPhone recently but now i'm trying to delete them from iTunes but can't.  How can this be done?
    P.S. Tried to select/highlight them (OK) and then to delete with cmd+Backspace - doesn't work 

    I am sure the URLConnection.defaultUseCaches is set before it is connected otherwise I should catch an IllegalStateException on conn.setUseCaches(false).
            try
                URL url = new URL("jar:file:/C:\\a.jar!/a.gif");           
             URLConnection conn = url.openConnection();
               conn.setDefaultUseCaches(false);
             conn.setUseCaches(false);
                Icon icon = new ImageIcon(url);
                System.out.println("icon size ? " + icon.getIconHeight());
                url.openConnection().getInputStream().close();
                System.gc();
             System.runFinalization();
                File file = new File("c:\\a.jar");
                while (file.exists())
                    file.delete();
                    try
                        Thread.sleep(10);
                    catch (InterruptedException ignored)
                System.out.println("file deleted.");
            catch (Throwable t)
                t.printStackTrace();

  • How to know a transaction code is used for how many times?

    Hello,
    I have a requirement that is somewhat unusual for me. We have some Z reports and we want to know the worthiness of these reports if they are being used or not, if they are being used, by whom and how many times are being used.
    Your help is greatly appreciated.
    Hakan

    Hi
    As said you can have an discussion with your BASIS they can help just try in
    tode =STAD    or   program name= RSSTAT26
    SM20 you can get all the details like
    user name
    termial number
    tcode
    programme etc
    regards

  • Memory on my Ipod is being taken without me knowing what it is being used for. Help...

    I had 1.5 gigs left on my iPod when I connected it to my computer. After a short while of syncing it said that I had no memory left. All of my free space was said to be taken up by "Other" memory and I can't find out what is taking that memory. This has happened to me 3 times in a row now. How do I find out what is taking the memory and/or how do I delete it so I have free space?

    This indicates corrupt files.  A restore should resolve.

  • What video format to use for imovie

    How do I convert the video so that I can import it?

    You need to tell us the specs for the video i.e. fps, aspect ratio, container, encoder etc.

  • I would like to know what application I should use for this specific job.  I have 6 photos in Iphoto, and I would like to print them out on one piece of paper with the title and key words showing.  Please help.

    My objective is to print photos on on 8 1/2 x 11 sheets of paper (4 per page).  I want to include the photo title and the photo key words.
    I am not sure how to go about doing this.

    In iPhoto, create an album with the images you want to print.
    Once created, open the album and select all the images (type Command + A)
    Go to the menu View and make sure Titles and Keywords are checked.
    Go to the menu File > Print
    Choose Contact Sheet
    In the lower right corner press the customize button
    In the next window that opens, at the bottom of the window change the column slider to "2"
    You should be good to go. If OK, then press Print at the bottom right corner of the window.
    MtD
    Message was edited by: Meg The Dog to fix typo

Maybe you are looking for