Image reversal in PDF

When converting a document from Word 2007 to PDF using Acrobat 9 PDFMaker, the images in the resulting PDF appear to have the text inside them mirrored. The image itself is the same, only the text is reversed. This does not occur when the file is printed using Adobe PDF printer - only using PDFMaker. The current image settings in my PDFMaker/Adobe PDF printer are ZIP for color and grayscale, and CCITT G4 for monochrome. All fonts are embedded in the file. What is causing Acrobat PDFMaker to mirror the text within these images and how can it be corrected?

Hello,
Thank you for your help. The files were output from a data system, we were able to go back to the original files and generate a PDF from the system.
Have a nice day!
Regards,
Brandi
p: 775.682.2456

Similar Messages

  • Why do images within a PDF look jagged when viewed in Acrobat Pro 10.1.6?

    Using a MacBook Pro running Mac OS version 10.7.5 with NVIDIA GeForce GT 650M 1024 MB graphics card. High-resolution source images look fine in other software, and embedded images in a PDF look fine when viewed on Google Drive, but curves and diagonal lines look jagged when viewed in Acrobat Pro 10.1.6. Checking smoothing options in Preferences only adjusts the position of the jagged edges; it neither enhances nor ameliorates them.
    I created a sample PDF to illustrate the problem I'm having. Created in illustrator, exported to PNG and converted to PDF. Here is a screenshot of the source PNG side-by-side with the PDF I created from it:
    Please note that when I preview the PDF in Finder, and when I view the PDF in Chrome using Google Drive, the image looks fine. Here's a link to the sample PDF:
    http://www.sendspace.com/file/77f5m6
    Any assistance is appreciated. Thanks!

    Unfortunately, as I mentioned in my original post, I've already tried toggling smoothing options. They don't make the jagged edges go away—they just change them slightly. In some cases, as with the sample file provided, it does help smooth the art out, but it never looks as good as it did going in, in a recent project, toggling smoothing options didn't affect the appearance of the image at all. Zoom does not appear to relieve the artifacting.
    A little clarification: this PDF was created from a flat PNG, but I have had this issue with PNGs and TIFFs as well, generated by both Photoshop and Illustrator. To reiterate, the PDFs display fine in other software—Finder preview looks great, and the same file viewed in my browser via Google Drive looks as intended as well. A colleague was able to replicate this issue in Acrobat on his Windows machine. This appears to be a rendering issue specific to Acrobat with regards to the files I use it to create.

  • How to insert an image in a pdf document

    I used the "Stamper" example and modified the fuction to insert image to my pdf doc.
    PDAnnot CreateStampAnnotationAt(AVPageView pageView, AVDevRect *rect)
    to add a picture Annotation into page.
    when system calling the callback function "AnnotDraw" to draw the Cos Object in that Annotation ,the function "AVPageViewDrawCosObj(pageView, coApp, &avdr)" doesn't work.Here is the code:
    ASFixedRect pdLocation;
    PDAnnot annot = {0,0};
    CosObj cAnnotObj, cIntObj, cStmObj, attributesDict, LengthEntry, cNullObj;
    CosObj cAPDictObj, cStmDictObj, cBBoxObj, cProcSetObj, cResObj;
    CosObj fontResObj, fontResObj2, cObj;
    CosDoc cdoc;
    ASStm stm;
    char buf[512];
    PDPage pdPage;
    ASUns32 s;
    ASFile picFile = NULL;
    DURING
            //handle clicks (with no drag, or only in one direction), by creating a default size annot
            if((rect->top == rect->bottom) || (rect->right == rect->left))
                    rect->top +=75;
                    rect->right += 150;
            pdPage = AVPageViewGetPage(pageView);
            AVDoc avDoc = AVPageViewGetAVDoc(pageView);
            AVPageViewDeviceRectToPage ( pageView, rect, &pdLocation);
            // Add the new annotation to the page.
            annot = PDPageAddNewAnnot(pdPage, -1, Stamper_K, &pdLocation);
            cAnnotObj = PDAnnotGetCosObj(annot);
            cdoc = PDDocGetCosDoc(PDPageGetDoc(pdPage));
            // See PDF Specification for more information on the Flags key.
            cIntObj = CosNewInteger (cdoc, false, 4L);
            CosDictPutKeyString(cAnnotObj, Flags_KStr, cIntObj);
            cAPDictObj = CosNewDict(cdoc, false, 1L);
            cNullObj = CosNewNull();
            ASFileSysOpenFile (ASGetDefaultFileSys (),ASPathFromPlatformPath("c:\\test.jpeg"), ASFILE_READ, &picFile);
            stm = ASFileStmRdOpen (picFile, 4096);
            attributesDict        = CosNewDict(cdoc, false, 5);
            LengthEntry = CosNewInteger(cdoc, false,11594 );
            CosDictPutKeyString(attributesDict, Length_KStr, LengthEntry);
            cStmObj = CosNewStream(cdoc, true, stm, 0, true, attributesDict, cNullObj, s);
            cStmDictObj = CosStreamDict(cStmObj);
            CosDictPutKeyString(cStmDictObj, "Type", CosNewNameFromString(cdoc, false, "XObject"));
            CosDictPutKeyString(cStmDictObj, "Subtype", CosNewNameFromString(cdoc, false, "Image"));
            CosDictPutKeyString(cStmDictObj, "Width", CosNewInteger(cdoc, false , 151));
            CosDictPutKeyString(cStmDictObj, "Height", CosNewInteger(cdoc, false , 151));
            CosDictPutKeyString(cStmDictObj, "ColorSpace", CosNewNameFromString(cdoc, false, "DeviceRGB"));
            CosDictPutKeyString(cStmDictObj, "BitsPerComponent", CosNewInteger(cdoc, false , 8));
            cBBoxObj = CosNewArray(cdoc, false, 4L);
            CosArrayInsert(cBBoxObj, 0L, CosNewInteger(cdoc, false, 0L));
            CosArrayInsert(cBBoxObj, 1L, CosNewInteger(cdoc, false, 0L));
            CosArrayInsert(cBBoxObj, 2L, CosNewInteger(cdoc, false, 100L));
            CosArrayInsert(cBBoxObj, 3L, CosNewInteger(cdoc, false, 100L));
            CosDictPutKeyString(cStmDictObj, "BBox", cBBoxObj);
            CosDictPut(cAPDictObj, FaceNormal_K, cStmObj);
            CosDictPutKeyString(cAnnotObj, Appearance_KStr, cAPDictObj);
    HANDLER
            AVAlertNote(ASGetErrorString(ERRORCODE, buf, sizeof(buf)));
    END_HANDLER
    Please help.

    BMP image?
    Or Is it possible to insert any text instead of image?
    But I need to work just like the stamper sample present in sdk. that is when i click on the pdf document any text has to be inserted instead of the image. I should not be to type the text in the pdf, but it should work exactly similiar to the stamper sample, but text has to be inserted instead of an image.
    How can this be done? Is it possible to do?
    Please help.

  • Figuring out how to extract images from a PDF file

    Hi,
    I'm trying to write a small app that extracts all images from a PDF file. I already wrote a nice parser and it works good but the only problem is that I can't quite figure out from the reference how to decode all images in a PDF file to normal files such as tiffs, jpegs, bmps etc. For now I'm focusing on XObject images and not dealing with inline images.
    From what I understand so far just by trying and looking at open sources I figured that if I see a XObject Image with a DCTDecode filter, taking the stream data without doing anything to it and saving it as a jpeg file works. But doing the same to FlateDecoded streams or CCITTFax didn't work.
    What is the right way to properly extract the images?

    In general you have to
    * decode the stream
    * extract the pixel data
    * use ColorSpace, BitsPerComponent, Decode and Width to unpack pixel
    values
    * reconstruct an image file format according to its specification
    There are no other shortcuts. The DCTDecode shortcut (which doesn't
    work for CMYK JPEG files) is just a piece of fantastic good luck.
    Aandi Inston

  • How can I create an iBook using iBooks Author using images from a PDF?

    I have a complex book with custom fonts and lots of images, and the client wants it on the iPad. So my most reasonable option seems to be to take images from a PDF and use them for the pages. However, images in iBook Author don't get "laid out" as expected in Portrait mode. How can I  create a layout that is essentially one image per page in portrait mode, and then convert that to landscape mode? Or is there an easier way to go about this?

    tk0us wrote:
    Make sure you have disabled portrait in the Inspector.
    I don't understand why portrait mode defaults images and other "widgets" to thumbnails. The original format of the book (and of 99% of all books I'm guessing) is in portrait format. By forcing the book to work only in landscape mode it's forcing the page image to be half the size, and that makes using this book particularly difficult. Is there no way to force the pages to be full-size in portrait mode?

  • Saving multiple images from a PDF to use later

    How can I save individual images from a PDF to use later?  I would like to be able to save them in a separate folder?

    When you open the pdf, you'll see the import pdf window. Just click the Images radio button, then select the images you want to open in PSE, and then save them in the editor:

  • When I try to print an jpeg or png from Photoshop all it does is convert the image to a PDF & plop it on my desktop- it won't print the image. Any suggestions as to how to fix this?

    When I try to print an jpeg or png from Photoshop all it does is convert the image to a PDF & plop it on my desktop- it won't print the image. Any suggestions as to how to fix this?

    Yes, the printer is on, it’s selected in Printer Set-Up & I’ve never had this problem before. It’s definitely a Photoshop issue as every other type of file prints fine. I’ve uninstalled Pshop & am now reinstalling. Hope that will do the trick.

  • HELP Trying to add a printable image to a pdf Acro Prof 6

    I've already spent 4 days too many on this project. I've been asked to take this pdf and create one identical for the company. It's a fillable form also so instead of trying to recreate everything from scratch I was able to edit the text and change over everything that I needed to, which wasnt much.
    Except.... I can not get our company logo on the top of the page. I have Acrobat Professional 6. Yesterday I finally thought I solved the problem going under Tools -> Advanced Commenting -> Attach -> Paste from clipboard. But because its just a "comment" when I go to print it wont show up.
    I've been told to just add an image to the Header, yet I am unable to figure out how... Once I'm under this section it only allows for Text, not an image.
    I'm really pulling my hair out here over this... If anyone can please tell me how to add an image to a pdf (which is a fillable form) that when printed will actually show up as well PLEASE HELP.

    I just opened the watermark tool in AA8. I don't have AA6 handy. It has a scaling and location on the page after I select a graphic file to import. It also shows a sample page so I can see how it will display. I do not remember how watermarks worked on AA6. Will try in a bit.
    For AA6, it looks like you can only put in a PDF file. In that case, use a word processor to create the desired result you want for the background (the entire page, not just the logo. Then create a PDF to use for the watermark or background. Open the watermark/background tool and insert your new PDF (not sure if you should use background or watermark - might give both a try and see if that does the job. At least it appears to be what my system suggests. You need to be sure you use the same paper size since AA6 places the whole page you create. You might be able to use other sized, but then you have to deal with centering and such. Unless you have time to play a bit, I would create it the one the same size paper as I have suggested and then it is one less thing to have to work out.

  • How do I hide the file names/path names of embedded images in a PDF document?

    I created a PDF document from a Word document, and the problem is that the PDF document shows the file names and path names for all of the embedded images in the PDF document. I don't want that information displayed. I don't want to send the PDF out to clients and have them read the names I've assigned to those images, plus it looks messy. And I've lost many of the original image files so they only exist in the Word document, thus I can't go back and rename them. I searched the internet for an answer but I couldn't find one anywhere.

    When you create a tagged (accessible) PDF file from Word, placed bitmap images will use their filename as the "ALT text" if you don't define something else for the text to say, because an image without any ALT text is a failure against the accessibility standards. You can't change that default action, so you should put your own meaningful text into the ALT field for each image - which is what you should be doing anyway if the PDF is standards-compliant.
    You can can set the text in Word, but it depends on your version as to where the dialogs are - Google for it - or you can change/delete it in Acrobat using the tags navigation pane on the left side of the window (right-click the sidebar if it's not visible). Drill down through the tags structure to find the "<Figure>" tag you want to change, right-click and choose Properties, then put something in the "Alternative text" field. This process isn't something you can easily automate, but if you don't need tags at all, you can save without tags (or print to PDF).

  • CMYK image in a PDF is involuntarily converted to RGB when you send from Acrobat Pro DC to Photoshop for editing

    Hi,
    When I send a CMYK image from Adobe Acrobat Pro DC to Photoshop CC 2014 to be edited, it opens up as RGB in Photoshop CC 2014. If I do the same with Adobe Acrobat XI on another machine, the image opens as CMYK, as it should normally do. As we had created the print-ready PDF in the first place, we know that the image is definitely CMYK and is properly opened in Photoshop if we use Adoba Acrobat Pro XI. We of course can go back to the original document and edit the linked image and re-export a new PDF. But on many occasions we need to do last minute corrections on images by editing them externally in Photoshop.
    Best,
    Refik Telhan

    It's really necessary to know by which program you had created the PDF.
    Here comes a test PDF for questions like yours, created by InDesign:
    http://docs-hoffmann.de/riptest05072013.pdf
    Different images:
    sRGB, pRGB=ProphotoRGB, CMYK , all with individually embedded profile,
    Grayscales: without embedded profiles, because InDesign doesn't embed gray profiles,
    Lab: without profile, because Lab is automatically detected and not ambiguuos.
    Of course, using so many different images in one PDF is useful only for tests.
    An actual test:
    Touch Up Object Grayscale and edit in Photoshop. There is no embedded profile
    but the image is in PS detected as Grayscale. One has to assign a profile.
    Re-imported in the doc, it is a Grayscale JPEG*, before it was a Grayscale ZIP.
    In Acrobat 8 one can check the actual content of a PDF by
    Advanced > Print Production > Preflight
    In newer versions this is still available but somewhere else.
    I'm using version 8, because I uninstalled X on purpose.
    Best regards --Gernot Hoffmann
    *Edited:
    As far as I remember, there is no special code for Grayscale JPEGs, it's just a JPEG
    with zeros in the Cb Cr channels ... like an R=G=B gray image.

  • Poor image quality in pdf for Aperture book

    Can anyone tell me how to retain the quality of original images when I export to PDF for book production in Aperture?
    I am trying to produce a book with 11 pages, in large soft back format.  Most of the images are black and white, and all are PNGs.  Individual files size are typically 12MB - 20MB, and  the longer side of the images is mostly over 5000 pixels.  They all look very clean and crisp full screen in Aperture, and there are no warning triangles in the page make-ups to highlight any instances of poor resolution.
    I’m producing the PDF, via ‘Print’ > ‘Save as PDF’.  The resulting file is 2.6MB.
    Viewed in Preview, some of the images in the PDF superficially appear to be OK.  Some are not - and are very indistinct.  Zooming in on the images in Preview shows that very few are useable.
    I produced a colour book, with larger pages last year and was very happy with both the PDF and the finished book in print.  Some example file sizes from that one were:  15.3MB (3950x2633) and 9.30MB (2880x 1920).
    I had expected the black and white images to work even better. 
    What am I doing wrong here?
    I'm using Aperture 3.2.1 on a MacBook Pro running 10.6.8.

    I just remade the same book - as a test - in the extra large hardback format (ie. the one I used for the previous publication, last year).
    This time, the pictures are fine.  The images appear to be the same quality in the PDF as the originals - much, much better.  The size of the file has increased massively too > up from just 2.6MB to 52.8MB.
    So does the books production function work well only with the biggest, most expensive option? 
    I'd really appreciate some feedback from anyone who's tried the different sizes, and preferably some brilliant ideas to make them all work equally well.

  • How to print the mirror image of a pdf file?

    Hi,
    Does anyone know if it is possible to print the mirror image of a pdf file? I could have sworn I have done this before in an older version of Acrobat.
    I am currently working with Adobe Acrobat 8.0 Professional.
    Thank you,
    Tina

    I just tested this and it worked fine for me.
    When you select to print the cropped page, in the print dialog will be a thumbnail of what is about to be printed. Does this display just the cropped portion or the whole page?

  • How can I insert an image into a PDF?

    I am using Acrobat 9. I created a document in InDesign and now I want to add an image to the PDF without going back to InDesign. How do I accomplish this without using the Stamp tool. The reason why I do not want to use the stamp tool is because when this document is created and sent to someone else to see and print, if they do not change their print setting to print Document and Markings, the images will not show up and I want to make the document "idiot proof." If I use the button feature to create the document, then the message to fill in a form appears at the top and there is no field to fill in.
    Thanks
    Barbara

    If you have the image you want to add as a PDF (this works well for me) you can add a button under TOOLS - FORM - Button tool.
    Once you have drawn the box, In the options tab go to Layout menu and move to icon only. This will enable you to choose where the source for the image will be. Ensure that you click the advanced tab after you have chosen you file, and have the scale proportionally and fill box. This way you can scale it to any size you want.

  • To convert multiple image files to pdf using pdfsharp in C#

    Hey guys I have this C# code to convert any image file to .pdf using pdfsharp.dll. But I want to select multiple images for conversion please help. here's my code (plz note enable pdfsharp.dll in the reference)
    usingSystem;
    usingSystem.Collections.Generic;
    usingSystem.Linq;
    usingSystem.Text;
    usingSystem.Threading.Tasks;
    usingPdfSharp.Pdf;
    usingPdfSharp.Drawing;
    usingSystem.IO;
    namespaceConsoleApplication1
    classProgram
    staticvoidMain(string[]
    args)
    PdfDocumentdoc =
    newPdfDocument();
    doc.Pages.Add(newPdfPage());
    XGraphicsxgr =
    XGraphics.FromPdfPage(doc.Pages[0]);
    XImageimg =
    XImage.FromFile(source
    path...);
    xgr.DrawImage(img,0,0);
    doc.Save(destination path...);
    doc.Close();

    try this one
    public string CreatePDF(System.Collections.Generic.List<byte[]> images)
    dynamic PDFGeneratePath = Server.MapPath("../images/pdfimages/");
    dynamic FileName = "attachmentpdf-" + DateTime.Now.Ticks + ".pdf";
    if (images.Count >= 1) {
    Document document = new Document(PageSize.LETTER);
    try {
    // Create pdfimages directory in images folder.
    if ((!Directory.Exists(PDFGeneratePath))) {
    Directory.CreateDirectory(PDFGeneratePath);
    // we create a writer that listens to the document
    // and directs a PDF-stream to a file
    PdfWriter.GetInstance(document, new FileStream(PDFGeneratePath + FileName, FileMode.Create));
    // opens up the document
    document.Open();
    // Add metadata to the document. This information is visible when viewing the
    // Set images in table
    PdfPTable imageTable = new PdfPTable(2);
    imageTable.DefaultCell.Border = Rectangle.NO_BORDER;
    imageTable.DefaultCell.HorizontalAlignment = Element.ALIGN_CENTER;
    for (int ImageIndex = 0; ImageIndex <= images.Count - 1; ImageIndex++) {
    if ((images(ImageIndex) != null) && (images(ImageIndex).Length > 0)) {
    iTextSharp.text.Image pic = iTextSharp.text.Image.GetInstance(SRS.Utility.Utils.ByteArrayToImage(images(ImageIndex)), System.Drawing.Imaging.ImageFormat.Jpeg);
    // Setting image resolution
    if (pic.Height > pic.Width) {
    float percentage = 0f;
    percentage = 400 / pic.Height;
    pic.ScalePercent(percentage * 100);
    } else {
    float percentage = 0f;
    percentage = 240 / pic.Width;
    pic.ScalePercent(percentage * 100);
    pic.Border = iTextSharp.text.Rectangle.BOX;
    pic.BorderColor = iTextSharp.text.BaseColor.BLACK;
    pic.BorderWidth = 3f;
    imageTable.AddCell(pic);
    if (((ImageIndex + 1) % 6 == 0)) {
    document.Add(imageTable);
    document.NewPage();
    imageTable = new PdfPTable(2);
    imageTable.DefaultCell.Border = Rectangle.NO_BORDER;
    imageTable.DefaultCell.HorizontalAlignment = Element.ALIGN_CENTER;
    if ((ImageIndex == (images.Count - 1))) {
    imageTable.AddCell(string.Empty);
    document.Add(imageTable);
    document.NewPage();
    } catch (Exception ex) {
    throw ex;
    } finally {
    // Close the document object
    // Clean up
    document.Close();
    document = null;
    return PDFGeneratePath + FileName;

  • How do I add LaTeX or an image to a PDF in Preview?

    I would like to be able to annotate a PDF with math formulas. I saw an option for adding latex, but I can't get it to work. I could create the image of the formula that I want to add, but I can't seem to add an image to the PDF either.
    Any suggestions will be appreciated.
    Thanks,
    Nicole

    With Acrobat Professional (perhaps also with Standard)
    From the tools menu
    The TouchUp Object tool can perform copy & paste.

Maybe you are looking for

  • Image object getWidth() and getHeight() returning -1

    Hello all, I'm currently unit testing a pretty simple utility that calculates a new image position, given a handful of parameters (including image width and height). The problem I'm running into is this: The image width/height don't always load immed

  • I'm struggling to find a way to find and delete duplicate images

    Hi, I recently upgraded to a newer iMac and Aperture 2 to handle my growing library of photos. Since I started college two years ago, I've taken close to 20,000 images. I stored and organized those as I always had with my others in iPhoto. Now when I

  • 275K Limit on xmlType CLOB?

    I seem to be running into a limit on the size of the CLOB returned from a select into an XMLType. When it gets around 275K it doesn't return a value anymore - it does not return an error, just the .getclobval is empty. I am using the Select XMLAgg(XM

  • Admin page won't open

    I've installed ColdFusion MX7 Standard on my Windows 2003 server which is running IIS 6.0. When I try to go to http://127.0.0.1/CFIDE/Administrator/index.cfm it prompts for the login. The server is a domain controller so I use the administrator accou

  • HT1414 Mi iphone no se conecta a itunes

    Mi iphone no es detectado en itunes y está trabado