Problems with jpeg2000 in pdf

Hi,
with release 10.1.4. of Adobe Acrobat, support of scanned and embedded jpeg2000-images by Adobe Acrobat has obviously gotten much worse !? Whereas with version 10.1.3 everything was OK, Acrobat can neither display nor print a lot of jpeg2000 images due to "insufficient data". Also export images to tiff or other formats does not work anymore. As mentioned, the same files / images were opened and displayed and exported correctly in Version 10.1.3. I have checked whether there are syntax or other errors in the named file (the answer is no). This occurs obviously with files created or treated by Acrobat itself as well as many other software creating pdfs with embedded jpeg2000. I hope this bug will be fixed as soon as possible, cause on the base of my understanding, this is a bug in Adobe Acrobat and maybe Adobe Reader too. Jpeg2000 is used in the whole world by many users and created by many software companies on the base of an ISO-certified standard. Note: the files are pdf/a 2b files! At the moment the alternative is to leave pdf and to go back to tif-images or pdfs with embedded ZIP-TIF-Files with exploding storage space needs. Does anybody know already about this issue?
Thanks for your help!

I uploaded a pdf-Portfolio with examples in Acrobat.com. The Portfolio contains
a pdf generated directly by a scanner-software embedding jpeg2000-images with gentle jpeg2000-compression. The scanner is professional (costs more than 100 K$)
a pdf/a 2b version file from the scanned pdf (1.). The pdf/a conversion was - by the way -  not done using Acrobat-Preflight, cause the process pdf/a 2b of Acrobat Preflight changes the greyscale images to RGB (why?).
a pdf/a 2b with lossless jpeg2000 conversion of an uncompressed tif previously exported by Acrobat 10.1.3 (without problems) out of example 1. Also this pdf/a 2b is not created with Adobe Acrobat, cause batch clipping of tif-subfolders to one pdf for each folder is - unfortunately - not part yet of my Acrobat-Skills. I am still forced to use another tool for that one.
Reproduce bug: Open the file with Adobe Acrobat 10.1.4.: Zoom the image to 150%, try to print, try to export the image as tif. Note: all the files or images are decoded correctly by 10.1.3., so that zooming, printing, exporting is working just fine.
URL: https://acrobat.com/#d=1blaLcFPbb1YtodAThb3uw
The document is now shared to public viewing.
Help us: I guess that Billions of documents are stored with jpeg2000-compression, which is as far as I am concerned - a reasonable strategy for a good balance between storage costs and image quality. To read them and work on them, I personally still prefer Adobe products. Good luck!

Similar Messages

  • Problem with saving a pdf file to computer. Continually get an error message " This document could not be saved. There was a problem reading this document (21).

    Need advice on a saving file issue. I'm having problem with saving a .pdf file to computer. Continually get an error message " This document could not be saved. There was a problem reading this document (21). This is new as this error message just recently started to pop-up.

    More information about this issue can be found here:
    https://forums.adobe.com/thread/1672655
    A "quick" fix that worked for me was to uninstall Adobe... then download the base install for Adobe Reader 11.0.
    Then download each of the individual updates and run them sequentially. 
    I've installed back up to the last security update which is version 08 and have been able to do normal Save As operations.
    You will have to disable automatic updates in order to stay at version 08 until Adobe resolves this issue in a later release.
    http://www.adobe.com/support/downloads/product.jsp?product=10&platform=Windows
    Adobe Reader 11.0 - Multilingual (MUI) installer    AdbeRdr11000_mui_Std
    Adobe Reader 11.0.01 update - Multilingual (MUI) installer    AdbeRdrUpd11001_MUI.msp
    Adobe Reader 11.0.02 update - All languages    AdbeRdrSecUpd11002.msp
    Adobe Reader 11.0.03 update - Multilingual (MUI) installer    AdbeRdrUpd11003_MUI.msp
    Adobe Reader 11.0.04 update - Multilingual (MUI) installer    AdbeRdrUpd11004_MUI.msp
    Adobe Reader 11.0.05 security update - All languages    AdbeRdrSecUpd11005.msp
    Adobe Reader 11.0.06 update - Multilingual (MUI) installer    AdbeRdrUpd11006_MUI.msp
    Adobe Reader 11.0.07 update - Multilingual (MUI) installer    AdbeRdrUpd11007_MUI.msp
    Adobe Reader 11.0.08 security update - All languages    AdbeRdrSecUpd11008.msp

  • Problem with printing a PDF

    Hi All,
    I'm developing a web application written in J2EE that uses Java Reporting Component (JRC) to display crystal reports from some filters recovered from a jsp and passed to a report .rpt previously designed and invoked just at runtime.
    I have a problem with printing a PDF:
    I want, after entering the filters in a jsp, to print a report in PDF format (WORD) without opening it
    with Adobe Reader (Microsoft Word). The class of API JRC used for export is ReportExportControl.
    Can anyone help me?
    I wish a great day to You all.

    Hi Ted Ueda,
    sorry for the delay of my answer.
    I understand very well the problems related to security.
    With the following code that I used to produce a report (PDF) at runtime,
    is the PDF created on the server and then sent to the client, or is it directly created on the client as PDF
    from RTF previously realized?
    ReportExportControl exportControl = new ReportExportControl();
    String report = report path;
    ReportClientDocument reportClientDoc = new ReportClientDocument();
    reportClientDoc.open(report, OpenReportOptions._openAsReadOnly);
    Object reportSource = null;
    reportSource = reportClientDoc.getReportSource();
    //The method setConnectionProperties() stores all the connection parameters in the collection
    //ConnectioInfos
    ConnectionInfos connInfos = setConnectionProperties(request, reportClientDoc);
    exportControl.setEnableLogonPrompt(false);
    exportControl.setEnableParameterPrompt(false);
    exportControl.setReportSource(reportSource);
    exportControl.setDatabaseLogonInfos(connInfos);
    //Single method to pass parameters to Crystal Reports. Using classes ParameterFieldController and
    //ParameterFieldDiscreteValue
    setReportParametersValue(reportClientDoc, reportParameters, subReportParameters);
    ExportOptions exportOptions = new ExportOptions();
    //Set the export format (PDF)
    exportOptions.setExportFormatType(ReportExportFormat.PDF);
    PDFExportFormatOptions PDFExpOpts = new PDFExportFormatOptions();
    exportOptions.setFormatOptions(PDFExpOpts);
    exportControl.setExportOptions(exportOptions);
    exportControl.setExportAsAttachment(true);
    try {
          exportControl.getHtmlContent(request, response, getServletConfig().getServletContext());
    } catch (ReportSDKExceptionBase e) {
    throw new ApplicationException("error code", ": error message"); }               
    As, however, I predicted in my previous message about the direct printing on the client,
    I read about ActiveX, but I don't know how to use them.
    I read this information in the 'Crystal Reports for Eclipse Developer Guide' about "printMode" attribute:
    "In ActiveX print mode, an ActiveX control is downloaded to the client machine and the report is send directly to the printer...."
    The ActiveX alternative is a java applet that runs on the client and takes the pdf from the server and prints directly onto the clients through the commands that I used in the DOS command line:
    1)     AcroRd32.exe /p /h FILENAME
    where
    /p = print
    /h = hide window
    to print the report and
    2)     tkill AcroRd32
    to close Adobe Reader, because it doesn't end automatically after printing and the command  /h  is used just to minimize the process.
    I hope you can give me advice because I need to print directly on the client. Thank you

  • Problem with viewing Adobe PDF documents

    Problem with viewing Adobe PDF documents
    I have a Windows 7 Home Premium Computer
    I have read all the suggestions and I have tried downloading multiple versions of Adobe Reader for Windows 7 and Vista from http://get.adobe.com/reader/otherversions/.
    Prior to downloading each version I would delete the current version using  control panel programs uninstall.
    After each new installation I would shut down the computer and then restart the computer.
    I have tried downloading versions with and without having my antivirus (CA Total Defence) running.
    I am told after download that the version downloaded successfully.
    I have read Acrobat Help http://helpx.adobe.com/acrobat/kb/troubleshoot-reader-installation-windows.html and followed the instructions.
    None of the above has helped.
    The problem is no matter what version of Adobe Reader I download, I cannot seem to open a PDF and read it. Nor will the Reader itself stay open.
    1. If I try opening the reader from the desktop link or from the actual program menu, the reader opens for about 5 seconds and then closes of its own accord. If I try to click on any of the reader menus (eg File, Edit, View, Window, Help, Tools) then a warning bell is sounded and the menu does not open. Shortly thereafter the reader closes.
    2. If I try to open the reader by double clicking on a PDF document then the reader opens but the document is not shown (only the grey PDF reader screen is shown) and then the reader closes after about 5 seconds of its own accord.
    The desktop shortcut shows as the 'red Adobe Reader icon'. But the actual program menu icon shows as a blank folder icon.  All PDF documents show as the PDF Adobe icon.
    I have tested various PDFs and none will open on this computer but they will open on other computers.
    I have created a word document and saved it as a PDF. It looked like it had save correctly (has the appropriate icon) but when I try to open it as per step 2 above then the document is not shown and then the reader closes after about 5 seconds of its own accord.
    Does anyone have any ideas about what is going on and how I can fix this?
    Could you please answer in this forum and email me at [removed]
    I am so puzzled and frustrated.

    Thank you so much this did the trick.
    I spent so many hours on trying to sort this out and your answer was so  simple and clear.
    Regards
    Kazzamday

  • Problem with opening of PDF in my webmail application

    I have a problem with opening a pdf file in my webmail application of my internet provider in apple safari since yesterday. When I wanted to open up a pdf file I got a pop up message to allow a connection between adobe and the webmail application which I did. Since then I can not open up a pdf file. If I go to another browser or if I use email from another internet provider I use too it works and I can open up. It seems to be a blockage of the specific combination of this webmail application and safari.
    What can I do ?

    Hi,
    I have same requirement.
    I need to cnvert smartform->pdf->send mail.
    The mail is send but the attachment is corrupted.
    Can you tell me what code you have written so its working in developement?

  • Problems with filling out PDF forms

    We have problems with filling out PDF-forms. Aotomatic filling of forms is deactivated and we use the Adobe Reader 11.0.05. The problem is: After some time the inputs are wrong put down in the form. For example: I write 120 and in the form stands 125. We have already extinguished the cache. Thanks for your help in advance.

    You will get that first message when the document has been changed in a way that invalidates the internal digital signature that's applied when a document is Reader-enabled. Certain changes are allowed (e.g., filling fields, commenting, signing) and will not invalidate the signature, but others are not. The exact cause of the change is often hard to track down, but it can be due to font problems, some type of file corruption, or something that Acrobat/Reader attempts to correct when the file is opened/saved. You will also get the message if the users system time is not correct and is currently set to some time before the document was Reader-enabled. It seems best to use the most recent version of Acrobat to enabled the documents and recent versions of Reader to work with them.
    It problem is probably not related to the user using anything in the Sign pane.

  • Problems with ios reading pdf

    Please help. Whenever I send a pdf form that I created in Acrobat x pro to a customer, they can see the background form, but not the content that i fill in on the form. What can i do to solve this.
    Thanks

    I uploaded a pdf-Portfolio with examples in Acrobat.com. The Portfolio contains
    a pdf generated directly by a scanner-software embedding jpeg2000-images with gentle jpeg2000-compression. The scanner is professional (costs more than 100 K$)
    a pdf/a 2b version file from the scanned pdf (1.). The pdf/a conversion was - by the way -  not done using Acrobat-Preflight, cause the process pdf/a 2b of Acrobat Preflight changes the greyscale images to RGB (why?).
    a pdf/a 2b with lossless jpeg2000 conversion of an uncompressed tif previously exported by Acrobat 10.1.3 (without problems) out of example 1. Also this pdf/a 2b is not created with Adobe Acrobat, cause batch clipping of tif-subfolders to one pdf for each folder is - unfortunately - not part yet of my Acrobat-Skills. I am still forced to use another tool for that one.
    Reproduce bug: Open the file with Adobe Acrobat 10.1.4.: Zoom the image to 150%, try to print, try to export the image as tif. Note: all the files or images are decoded correctly by 10.1.3., so that zooming, printing, exporting is working just fine.
    URL: https://acrobat.com/#d=1blaLcFPbb1YtodAThb3uw
    The document is now shared to public viewing.
    Help us: I guess that Billions of documents are stored with jpeg2000-compression, which is as far as I am concerned - a reasonable strategy for a good balance between storage costs and image quality. To read them and work on them, I personally still prefer Adobe products. Good luck!

  • Problem with tables in pdf

    Hey,
    I converted my final master's thesis to pdf with the Adobe Acrobat Pro. Everything worked out fine, even all the graphs etc... but there's a small problem with my tables: I only have horizontal lines to separate the heading from the rest, but there are small marks where the hidden vertical lines cross the horizontal lines....they don't show in the word-file, only the pdf. Anybody know this problem and a solution to it?
    Thanks a lot in advance
    OH

    This is likely a result of the display resolution you used when you created the PDF (under advanced in the properties). The default is 1200, that creates problems on a 96 dpi screen. If you zoom, you will likely see the lines. A fix is to change the setting to about 300 dpi or so.

  • Problem with creating/viewing PDF's from InDesign CS3

    I have a problem with our PDF workflow and just cannot seem to resolve it.
    The problem is as follows: My coworker and I (both designers running CS3 on iMac's running 10.5.6 Leopard) work daily on producing documents and graphic layouts.
    Internally we can view and print PDF documents we create just fine with no troubles with the exception of our supervisor, who is running a mac with Tiger operating system. Our office environment is both Mac and PC. On may occasions he cannot print PDF's we create. Many times his prints will contain garbled characters, drop italics and formatting, replace fonts, or just print slowly.
    This problem is also happening to our editor who is offsite. This is a fairly serious problem for her, considering her job relies heavily on being able to view and open PDF files we create. She was able to send a PDF file which shows the garbled mess her printer spit out when she printed. Apparently there were pages upon pages of messy garbled text. When documents do print from her, they are usually very slow in printing, taking up to a minute or more to print each page.
    The sample of what she sent me is attached, and can also be found on my MobileMe iDisk at: http://public.me.com/rlcollier (document entitled Print Results.PDF)
    My question really to the community is obviously what might be causing these problems. Its very frustrating not being able to determine if its something we're doing ourselves thats causing some incompatability or corruption in these files, or if its the users systems themselves. I can say that Debra our editor has can have a garbled mess of a 4 page file from us, and then turn around and print a graphic heavy 90 page PDF with ease from Boeing. Our PDF's seem to be the only ones she struggles with. That being said, my inclination is that its something on our end.
    Any ideas of where to start looking? Any help at all would be greatly appreciated and welcomed. Thanks!

    I currently had our editor test printing of some of our files using both Foxit and Adobe Reader (as was suggested) in order to see if either made a difference in her printing ability and here is what she came back with:
    I tried to print out both these pdfs (David's is the one you reworked and Lisa's HESSM-3, both sent yesterday).
    With Adobe:  David's first page printed quickly, but it had errors (part of his pants didn't print, and there's an arbitrary shaded box in the text).  Page 2 didn't print--every time I tried it had a different "offending command" code.  Printing Lisa's HESSM  made it up to page 7 before problems showed up (stock photo only partially printed), and it stopped on page 8 (with the random "offending command" code).
    With Foxit:  Both David's and the HESSM pdfs printed completely and without error...but it took a long time.   David's 2 pages took about 3 to 4 minutes, and HESSM's 16 pages took close to 20 minutes.  The time is in the transfer of data to the printer; the physical printing  goes pretty quickly.
    I cant say that I believe email is the problem, although I cant rule it out. I've tested emailing vs. passing through our workgroup with my supervisor, and it does not make any difference in his ability (or lack of ability) to print our files. He was able to print to a different printer (an HP 4650 as opposed to a 4100) without troubles. He refuses to believe its a printer problem however because PDF files originating from our office are the only ones he has trouble with. Never has he had any trouble with a single PDF file produced from any other source. This is also the case for our editor who only has trouble with PDF files originating from either mine, or my coworkers systems.
    PS: I've attached both files that were referenced by our editor above for viewing/testing.

  • Problems with Long Interactive PDFs with Extensive Interactivity via Buttons and Hyperlinks

    I have inherited a project which requires the creation of large interactive pdfs with lots of buttons and hyperlinks. I am having continuing problems with buttons not working and long periods of wasted time as attempted exports fail.
    Background:
    The largest books range from 264 MB to 411 MB – (764 to 1024 pages).  Per book, the maximum number of buttons on each page is 16, linking separate files (subsections) in the book via text anchors.  The buttons are created using Master Pages which are set for each file (subsection) in the book.  50% to 60% of the pages in each file (subsection) will also be referenced as 2 hyperlinks.  One is the source page hyperlink on each workflow and the second is a listing on the source page as a possible navigation path. I have created hyperlink destinations for each page which is used to generate the source and navigation hyperlinks.  With 2 hyperlinks representing 50%-60% of the pages - that means the largest book contains a maximum of 1200 hyperlinks.  Each file (subsection) also has it’s own separate TOC and the bookmarks that are created  (optionally) during the TOC creation process.   As currenlty formatted, the book is primarily images of workflows which mean 50%-60% of the pages contain pdf images.
    Several questions:
    1.  How do I get my buttons to work consistently?  There is nothing worse than working hard and then ending up with faulty product.  I have been thinking about combining all the files into 1 document per book.  Then I could change the buttons to objects, add a hyperlink over each one and set them for a specific hyperlink destination.  Can I do that if the buttons are on Master Pages?  Can InDesign handle a document with 1024 pages?    I can't fix the problems in Acrobat later because it would mean 1024 fixes for just 1 button correction.
    2.  How do I stop InDesign from freezing when exporting these large pdfs?  It seems to wait until the final steps to crash which sometimes means a 4-6 hour waste of time per export. 
    3.  Are we making a mistake using pdfs as our workflow images?  I'm not pleased with the quality of the images we have and wonder if we switched to another image format if this would improve the results.   Would it be worth the effort and relinking?  I have been reading different information on what the preferred source image format is for InDesign.  One article I found yesterday says using pdf images is a problem.  Another site said the Photoshop, TIF and JPG are preferred but PDFs were also acceptable.
    4.  Do I need to propose scrapping InDesign as the source of the project?  If so, what application can better meet my needs?

    Those are the limitations you have to put up with.
    Apple doesn't follow the PDF spec. It chooses which PDF features it will support.
    As to the version number (v5 or v6 or the new multimedia features in v9), there is different support in different versions of Reader/Acrobat as the product has developed. You just need to post a message to downloaders that they need to view the file in Adobe Reader version X or above to get the best experience.
    Other industry standards face the same problem: How can you add new feature like multimedia? You can't always be backwards compatible.

  • Problem with saving optimized PDF 900dpi, image is partially repeated... is this a bug in Acrobat Pro 10.1.10?

    I try to save a bigformat PDF file (1.4 Gb) with save optimize PDF. Hereby I send some screendumps to make this stuf clear. See screen after at the right; Is this problem a bug in Acrobat or due to Hardware problems? I use the newest Mac Pro with 32 Gb Ram.
    txs for rsponce!! grz. Paul

    Hello Paul,
    I am unable to replicate the issue.
    I am send you a Private message to share the sample file with me.
    Please share your file along with Steps to Reproduce the issue.
    Regards,
    Anoop

  • Problems with print to pdf with Acrobat Pro 9 and FireFox 8

    ***The page I am using for my base is: http://blogs.adobe.com/digitalpublishing/2010/12/google-ebooks.html
    ***I have Adobe Acrobat 9 Pro and FireFox 8 installed.
    The problem with FireFox is when I select a part of a web page and try to print that selected text the first line gets chopped, if the text is small the first line might even be missing completely.  Perhaps it is a margin issue but not sure how to modify this.
    I know I am not being very clear but if anybody has any ideas or would like further info please let me know.
    Thank you.

    I suspect if you do the same process with a print to paper, you will get the same result. I got the same result with SeaMonkey, but IE8 printed the full font to a PDF. That would suggest it is not Acrobat, but the browser. As I said, suggests, so be careful about drawing your conclusions.

  • Preview problem with C&EN pdf document

    Hi,
    I have problem with correct font view of some pdf (from web with password) in application Preview. When I have tried open file in Acrobat Reader or my iPhone it works fine. So, I have reinstalled Lion OSX again, I have checked Font Book in OSX Lion, but exclamation marks show me only duplicated fonts and only one problem with very rare font (Bauhaus 93). When I see pdf in Safari its also OK, but after saving it is "broken" (see supporting files).
    Thank you.
    Jan Bárta
    Czech Republic

    Hi Gangisetty,
    I guess there is no need to change any settings.
    You just need to change format from OTF to PDF using some FM.
    You can refer following links for conversion of OTF to PDF.
    Re: sending INVOICE as attachment in PDF for  external Mail address
    FM to send an email with a PDF attachment
    http://an-abaper.blogspot.com/2009/07/sending-smartform-as-pdf-through-mail.html
    Hope this will help you.
    Regards,
    Vivek

  • Problem with Mail settings - PDF document is not sending

    Hi Experts,
    During sales order confirmation, a PDF attachment used to be sent.
    But now the customer is receiving the file with extension as .OTF instead of .PDF.
    Where could be the problem with this? Is this something wrong in SOCT setttings?
    But for some other scenarios, the same is working so i don't think that there is a problem with SCOT settings.
    Please let me know if anybody has an idea about this problem or susgestion to find the problem
    Regards,
    Vijay

    Hi Gangisetty,
    I guess there is no need to change any settings.
    You just need to change format from OTF to PDF using some FM.
    You can refer following links for conversion of OTF to PDF.
    Re: sending INVOICE as attachment in PDF for  external Mail address
    FM to send an email with a PDF attachment
    http://an-abaper.blogspot.com/2009/07/sending-smartform-as-pdf-through-mail.html
    Hope this will help you.
    Regards,
    Vivek

  • Datamerge problems with images in pdf export

    Hi
    Trying to set up a datamerge file to create multi page spread documents with fields on different pages. Attempting to set it up so it's as automated as possible as there are up to 20 different merge documents needing to merge with up to 100 different csv records from the same file each week .  The merge documents have different and repeated merge fields on most pages. 
    I've set it up so that the document has facing pages, and most pages have images spread across the whole of the spread.  the pages preview fine, they are created ok when using 'Create Merged Document' although the page numbers continue from one document to another (another problem).  but when I come to export to pdf, then the merge only shows the image on the left spread but on both left and right spread single pages, and the page numbers don't show the correct page numbers eg it will go p1 p2 p1 p2 etc all the way through the document instead of p1 p2 p3 - p20 etc.  I don't want to have to merge first then pdf but can't understand why the images and page numbers are not showing correctly.  Anyone shed some light on this please?
    Many thanks

    I have a simialar problem with the page numbers.  I dont know the proper solution to this, but since I only work with a few records the following works OK for me right now.
    What I do Is first set up for the data merge on the master page along with any object that have to be on every page.  Until it is merged I only make the master page.
    Then after it is merged I go and make any other edits to the individual pages. I dont know how to make it merge ONTO the pages you alread created.

Maybe you are looking for

  • Basic query using DECODE not working as expected.

    Version:11.2.0.3 Platform: RHEL 5.8 I am trying to use DECODE function. In the below example, If the search encounters the string "Enterprise" , then the decode should return 'Enterprise' . But it doesn't seem to work. I thought some hidden character

  • EP 6.0 SP2 Filter development ..

    Hi, I am trying to develop class implementing interface Filter, deploy and use it in EP. I have created jar file, deployed it to the portal using telnet interface by commands : changelib -d myLib myLib.jar changeref -m library:myLib library:servlet a

  • 1000's of QT's

    I've literally got 1000's of QT files that I use inconjuction with FCP. All was well until Apple released the toxic QT 7.4 'upgrade'. Since my stupidity in upgrading I've had no access to any of these QT's. This is now becoming intolerable my current

  • The desired firmware for TV 46 VL733

    The desired firmware for TV 46 VL733 10.1.41.9. ; it is now established 10.1.41.4. Automatically the firmware is not installed. What to do?

  • TSR Visit recording in CIC0,  'To date' changes to current date

    Hey, hopefully this is the right forum for this. When TSRs create a TSR Visit in the Interaction Centre (Trans CIC0), they are usually recording this for a historical date. However, the Interaction Centre's standard behaviour is it assumes you are in