Missing text, not all, in some .pdf files

I have just started to receive some .pdf files with photos on them and text. But there are places where there should be text and it does not show up when I receive. Others are able to view this particular .pdf I'm citing in its entirety. The person who sent to me often sends me .pdf graphics/text and until now I have not had a problem viewing his .pdf files. I have a current adobe reader file - not the paid version - and it is up to date. He is sending from his apple to my windows explorer. I don't know what to do here as it is important I receive these and I have no explanation?
Also this particular .pdf he had created to be a 1/2 page ad in a local newspaper, so I think he would have designed it to be larger? But again, I've had no trouble reading what he sends even one meant for a full page ad. Is there something I can do to correct this? I did Google and it seems others have run into this on occasion.

I'm going to try to imbed the adobe image of one of the files. I notice when I look on my desktop and the file image is there, it is small icon of course, but I can see the missing words clearly on it. But when I open it up, via the adobe reader, that is when spots are blank, but when I look very closely the words are really there but a very faded gray, to be not legible. And they are clearly there if I right click and highlight.These were two areas of course where he had made some changes.
I was not allowed to download and insert the image and it is an adobe image....it says
"The content image of this type is not allowed"   Interesting. It is merely an insert for fundraising - a small add (to be placed in energy invoices) for an animal group - small file. Also, remember I mentioned others could receive these two adobe files and had no problem reading those areas. It seems to be only me sad to say!

Similar Messages

  • Scroll bar does not appear in some PDF files. How can I enable it?

    Scroll bar does not appear in some PDF files. How can I enable it?

    Scroll bars are supposed to appear when needed.
    For example, scroll bars will appear when you zoom in on a page.
    FAQ: How to zoom in/out on a page
    Windows 8 automatically hides scroll bars after a few seconds of inactivity.  Scroll bars will reappear when you touch the screen and move your finger (on a Touch-enabled device) or move your mouse.
    Additionally, page navigation depends on the view mode (Single Page vs. Continuous Page).
    In the Single Page mode, you can swipe left/right (horizontally) or click the left/right arrow button with your mouse to go to the previous/next page.
    In the Continuous Page mode, you can swipe or scroll up/down (vertically) to go to the previous/next page.

  • Images present in datagridview not exporting to file only text contents are generating into PDF file..

    Hi Everyone,
       I have created simple Desktop app in that I trying to generate PDF file from Datagridview...when I click on ExportPDf button Pdf file is generation successfully but the issue is in that pdf whatever the images has present in datagridview that images
    are not generation into PDF only the text contents are Present in PDF file.
      Does any one can tell me how to generate the PDF file along with images.
    Here is my code:
      private void btnexportPDF_Click(object sender, EventArgs e)
                int ApplicationNameSize = 15;
                int datesize = 12;
                Document document = null;
                try
                    SaveFileDialog savefiledg = new SaveFileDialog();
                    savefiledg.Filter = "All Files | *.* ";
                    if (savefiledg.ShowDialog() == DialogResult.OK)
                        string path = savefiledg.FileName;
                        document = new Document(PageSize.A4, 3, 3, 10, 5);
                        PdfWriter writer = PdfWriter.GetInstance(document, new FileStream(path + ".pdf", FileMode.Create));
                        document.Open();
                        // Creates a phrase to hold the application name at the left hand side of the header.
                        Phrase phApplicationName = new Phrase("Sri Lakshmi Finance,Hosur-560068", FontFactory.GetFont("Arial", ApplicationNameSize, iTextSharp.text.Font.NORMAL));
                        // Creates a phrase to show the current date at the right hand side of the header.
                        Phrase phDate = new Phrase(DateTime.Now.ToLongDateString(), FontFactory.GetFont("Arial", datesize, iTextSharp.text.Font.NORMAL));
                        document.Add(phApplicationName);
                        document.Add(phDate);
                        iTextSharp.text.Image img = iTextSharp.text.Image.GetInstance("D:\\logo.JPG");
                        document.Add(img);
                        iTextSharp.text.Font font5= iTextSharp.text.FontFactory.GetFont(FontFactory.TIMES_ROMAN, 5);
                        iTextSharp.text.Font font6 = iTextSharp.text.FontFactory.GetFont(FontFactory.HELVETICA_BOLD, 6);
                        //float[] columnDefinitionSize = { 2.5f, 7.0f,6.6f, 8.6f, 6.6f, 5.0f, 4.5f, 7.0f, 6.3f, 7.0f, 3.5f, 6.0f, };
                        PdfPTable table = null;
                        table = new PdfPTable(dataGridView1.Columns.Count);
                        table.WidthPercentage = 100;
                        PdfPCell cell = null;
                        foreach (DataGridViewColumn c in dataGridView1.Columns)
                            cell = new PdfPCell(new Phrase(new Chunk(c.HeaderText,font6)));
                            cell.HorizontalAlignment = PdfPCell.ALIGN_CENTER;
                            cell.VerticalAlignment = PdfPCell.ALIGN_CENTER;
                            cell.BackgroundColor = new iTextSharp.text.BaseColor(240, 240, 240);
                            table.AddCell(cell);
                        if (dataGridView1.Rows.Count > 0)
                            for (int i = 0; i < dataGridView1.Rows.Count; i++)
                                PdfPCell[] objcell = new PdfPCell[dataGridView1.Columns.Count];
                                for (int j = 0; j < dataGridView1.Columns.Count - 0; j++)
                                    cell = new PdfPCell(new Phrase(dataGridView1.Rows[i].Cells[j].Value.ToString(), font5));
                                    cell.HorizontalAlignment = PdfPCell.ALIGN_LEFT;
                                    cell.VerticalAlignment = PdfPCell.ALIGN_LEFT;
                                    cell.Padding = PdfPCell.ALIGN_LEFT;
                                    objcell[j] = cell;
                                PdfPRow newrow = new PdfPRow(objcell);
                                table.Rows.Add(newrow);
                        document.Add(table);
                        MessageBox.Show("PDF Generated Successfully");
                        document.Close();
                    else
                        //Error 
                catch (FileLoadException fle)
                    MessageBox.Show(fle.Message);
                    MessageBox.Show("Error in PDF Generation", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
    Runtime Gridview content:
    Generated PDF File:
    Thanks & Regards RAJENDRAN M

    Hi Everyone,
       I have created simple Desktop app in that I trying to generate PDF file from Datagridview...when I click on ExportPDf button Pdf file is generation successfully but the issue is in that pdf whatever the images has present in datagridview that images
    are not generation into PDF only the text contents are Present in PDF file.
      Does any one can tell me how to generate the PDF file along with images.
    Here is my code:
      private void btnexportPDF_Click(object sender, EventArgs e)
                int ApplicationNameSize = 15;
                int datesize = 12;
                Document document = null;
                try
                    SaveFileDialog savefiledg = new SaveFileDialog();
                    savefiledg.Filter = "All Files | *.* ";
                    if (savefiledg.ShowDialog() == DialogResult.OK)
                        string path = savefiledg.FileName;
                        document = new Document(PageSize.A4, 3, 3, 10, 5);
                        PdfWriter writer = PdfWriter.GetInstance(document, new FileStream(path + ".pdf", FileMode.Create));
                        document.Open();
                        // Creates a phrase to hold the application name at the left hand side of the header.
                        Phrase phApplicationName = new Phrase("Sri Lakshmi Finance,Hosur-560068", FontFactory.GetFont("Arial", ApplicationNameSize, iTextSharp.text.Font.NORMAL));
                        // Creates a phrase to show the current date at the right hand side of the header.
                        Phrase phDate = new Phrase(DateTime.Now.ToLongDateString(), FontFactory.GetFont("Arial", datesize, iTextSharp.text.Font.NORMAL));
                        document.Add(phApplicationName);
                        document.Add(phDate);
                        iTextSharp.text.Image img = iTextSharp.text.Image.GetInstance("D:\\logo.JPG");
                        document.Add(img);
                        iTextSharp.text.Font font5= iTextSharp.text.FontFactory.GetFont(FontFactory.TIMES_ROMAN, 5);
                        iTextSharp.text.Font font6 = iTextSharp.text.FontFactory.GetFont(FontFactory.HELVETICA_BOLD, 6);
                        //float[] columnDefinitionSize = { 2.5f, 7.0f,6.6f, 8.6f, 6.6f, 5.0f, 4.5f, 7.0f, 6.3f, 7.0f, 3.5f, 6.0f, };
                        PdfPTable table = null;
                        table = new PdfPTable(dataGridView1.Columns.Count);
                        table.WidthPercentage = 100;
                        PdfPCell cell = null;
                        foreach (DataGridViewColumn c in dataGridView1.Columns)
                            cell = new PdfPCell(new Phrase(new Chunk(c.HeaderText,font6)));
                            cell.HorizontalAlignment = PdfPCell.ALIGN_CENTER;
                            cell.VerticalAlignment = PdfPCell.ALIGN_CENTER;
                            cell.BackgroundColor = new iTextSharp.text.BaseColor(240, 240, 240);
                            table.AddCell(cell);
                        if (dataGridView1.Rows.Count > 0)
                            for (int i = 0; i < dataGridView1.Rows.Count; i++)
                                PdfPCell[] objcell = new PdfPCell[dataGridView1.Columns.Count];
                                for (int j = 0; j < dataGridView1.Columns.Count - 0; j++)
                                    cell = new PdfPCell(new Phrase(dataGridView1.Rows[i].Cells[j].Value.ToString(), font5));
                                    cell.HorizontalAlignment = PdfPCell.ALIGN_LEFT;
                                    cell.VerticalAlignment = PdfPCell.ALIGN_LEFT;
                                    cell.Padding = PdfPCell.ALIGN_LEFT;
                                    objcell[j] = cell;
                                PdfPRow newrow = new PdfPRow(objcell);
                                table.Rows.Add(newrow);
                        document.Add(table);
                        MessageBox.Show("PDF Generated Successfully");
                        document.Close();
                    else
                        //Error 
                catch (FileLoadException fle)
                    MessageBox.Show(fle.Message);
                    MessageBox.Show("Error in PDF Generation", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
    Runtime Gridview content:
    Generated PDF File:
    Thanks & Regards RAJENDRAN M
    Hello,
    Since this issue is mainly related to iTextSharp which belongs to third-party, I would recommend you consider posting this issue on its support website to get help.
    Maybe the following forum will help.
    http://support.itextpdf.com/forum/26
    Regards,
    Carl
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Why can I highlight some pdf files and not others

    Why can I highlight some pdf files and not others

    Highlighting only works on text documents; a scanned document (image) cannot be highlighted.

  • SyncToy not copying some PDF files

    I'm brand new to this and set up a couple of folder pairs.  For each set, there were some PDF files that didn't get copied.  The error said that they were in use but they aren't.  I even restarted the machine and didn't open anything just
    to be sure that nothing was running.  I was able to copy these manual after SyncToy had run.
    Did I miss a setting somewhere?  Any suggestions for making this work?
    Thanks,
    GiGi

    this file will not open
    Generic Application Form for Canada [IMM 0008] (PDF, 366 KB

  • ? Some pdf files from the web will not open, some will.

    Some pdf files from the web will not open, some will. I am using Adobe Reader 10.0.1 on an 8-year old puter I have just upgraded to 2G of RAM. It worked fine before with 256K. When a file won't open I get error message "There is a problem with Adobe Acrobat/Reader. If it is running, please exit and try again (103:103). Have uninstalled and reinstalled all Adobe products several times. Ideas?

    Good luck with that. Adobe10.0.1 is a bug infested BAD program. Look at the posts relating to this issue for the last 3 days. Many, many problems. Support is no help.

  • After Updating iBook on my ipad , Some PDF  files missed . how should restore them

    After Updating iBook on my ipad , Some PDF  files missed . how should restore them?

    Your posted question is the key to your answer - sync them back to the iPad. You can still connect the iPad to your PC, launch iTunes, select your iPad name from the left side under devices - then go to the apps tab in iTunes and select all of the apps to sync again.
    Make sure that the Sync Apps heading is selected as well. If you make changes to the app configuration, click on Apply in the lower right corner of the iTunes window.

  • Can I obtain a CD-ROM with the latest revision of Adobe Reader for a Windows XP system w/ Service Pack 3. I do not want to go online with this system. I have dedicated it to read all of my PDF Files only.

    I have 4 computer systems, 2 of which run under Windows XP w/ Service Pack 3. I have dedicated these systems to the task of reading all of my PDF Files which I have collected from my recent college career. The desktop system I want to use is an old Dell Optiplex GX240 with Acrobat Reader 4.0. The other Windows XP system I have is an old HP Laptop with Adobe Reader 8.1.4 installed. I want to update both systems to the latest version that is available for Windows XP w/Service Pack 3 installed. So, because I do not want to place these system online, would it be possible for me to obtain a copy of the Adobe Reader software I need on a CD-ROM? - Ken DeWitt, a 68-Year-Young Vietnam Veteran and recent college graduate...Summa Cum Laude.

    You can use an in-line computer to download the full offline Reader installer from
    http://get.adobe.com/reader/enterprise/

  • Why do some pdf files not open with Adobe Reader X, most open OK?

    On my wife's 64 bit WIN 7 computer, a some pdf files will not open, but most open OK.
    She uses Acrobat Reader X and MS Office 2010.
    The same problem files open with no problem on my very similar computer.
    Is the problem with some setting on the Acrobat Reader or something else?
    Sometimes there is this error message when the problem files do not open:
    Find Click2run64.msi file to install MS Office Click to Run.
    But MS Office Click to Run is already installed on her PC.  It is not on my PC.
    Thanks for your help.

    The latest Reader is 11.0.01, not 11.0.1.  It is named Adobe Reader XI.
    I did uninstall the Reader X and installed this latest one.
    But it did not solve the problem, still could not open the problem pdf's .
    I did find the problem was caused by the MS Office Click to Run error referred to in my original message.  As far as I know we have no use for that on my wife's computer. Not sure how it got there.   I uninstalled it and so far the problem pdf's open fine now.  Problem solved.
    Thanks for your help.
    Frank M.

  • Some PDF files will not open

    Hi - anyone who can help would be greatly appreciated as I am beyond frustrated.
    I have Adobe Reader (version 11.1.3) on my Android phone (SG4)  but this applies to iPhones as well. Some PDF files open without issue. But there are a few that just give me a message that says "Please wait... if this message is not eventually replaced by the proper contents of the document, your PDF viewer may not be able to display this type of content. You canupgrade tot he latest version of Adobe Reader for Windows, Mac or Linux by visiting http://www.adobe.com/go/reader_download."
    There are 2 files specifically that boggle me. Both of these are Adobe forms, extended to reader, that I created and both were downloaded from our intranet. One will open and one will not. I tried recreating the one that will not open, had it uploaded to our intranet but still it won't open...
    I can't for the life of me understand why?!?!

    MotorAdmin wrote:
    Please wait... if this message is not eventually replaced by the proper contents of the document, your PDF viewer may not be able to display this type of content. You canupgrade tot he latest version of Adobe Reader for Windows, Mac or Linux by visiting http://www.adobe.com/go/reader_download.
    These are online documents, right?  This message usually means that you are trying to open the doc in a browser that uses its own PDF viewer, not the Adobe Reader plugin.

  • Some PDF files and other emails do not display the whole page. Is there a way to change that?

    Some PDF files and other emails do not display the whole page. Is there a way to change that?

    If an app does not behave as expected, try closing the app completely and reboot the iPad. It appears as though you have the original iPad. It helps if you list your iPad model and the iOS that you are running.
    Tap the home button once. Then tap the home button twice and the recents tray will appear at the bottom of the screen. Tap and hold down on any app icon until it begins to wiggle. Tap the minus sign in the upper left corner of the app that you want to close. Tap the home button twice.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.

  • ITunes can not run because some required files are missing.

    I got a message that said something like "iTunes can not run because some required files are missing. reinstall itunes." I tried to reinstall iTunes but I kept getting that message. So, i uninstalled it, and tried to install it again. this did not work. I think that Quicktime is actually what is broken, because iTunes installs fine, but the Quicktime installation failed. When the installation failed, i got a message that said, "Installation failed: error code: -3"
    I then tried installing Quicktime with the standalone installer. The installation got further, but it then failed as well, giving the error code -1603.
    What can I do to get this reinstalled, and if you can't answer that, how can I contact Apple from Iraq? Thank you.

    hmmm...that happened to me at one point to, and I'm trying to think back, I believe I was able to uninstall it by using the standalone installer.....
    Try these steps and see if anything helps, and then in the troubleshooting section, look up the specific error number you are receiving...
    http://docs.info.apple.com/article.html?artnum=93976

  • Some PDF files will not display Why?

    When I try and display some PDF files they only open up a blank screen. Any ideas.

    I am having the same problem with Safari, I will save Adobe Reader to desktop quite it and try to open it again and get a blank and it telling me it doesn't recognize it. Then I copy it from Safari, and paste it into Firefox and it will open in Safari and anywhere it want to open it. I just use this instead of trying to open it again in Safari.

  • Placed PDF missing text after re-exporting to PDF

    I'm using OSX 10.6 with InDesign CS3 504.
    When I place PDFs into an InDesign file, and then PDF that InDesign file, some of the PDFs are missing text.  All text boxes have been made from the same original text box, just modified for content, and shape very slightly.
    The text that is missing is most often white, where it's being used over the top of black frames.  There is one instance of black text over a white frame missing.
    I've tried exporting to .inx, and then re-pdfing.  I've also tried copying text boxes that are 'working' and changing the content, but still the same text boxes are missing their text.
    Any help much appreciated.  Thanks.
    Message was edited by: agreen01

    i already tried exporting to .inx about 3 hours ago.  unfortunately i'm very pressed for time with a meeting in about 1 hour, so i've recreated the problem text boxes.  luckily there were only about 10 of them and it only took 10 mins.
    before that i tried to isolate the problem element, but couldn't find one.  every time i removed something, i still got the problem.  the only time i didn't get the problem was when i had just the text boxes on their own, with none of the other essential page elements.
    thanks for your help, though.

  • Preview won't print some PDF files

    Hi everyone, I know a similar problem has been already discussed but it was not solved.
    When I print some PDF files from Preview on a Lexmark C524 color laser printer, I get only figures and symbols but no text. If I print the same files on a HP 2100 it prints ok.
    I thought it was the printer driver, but then I tried the same using Adobe Reader 9.1 and it prints fine on all printers. So my guess is that it might be some PDF version compatibility issue with Preview.
    Any idea anybody?
    You can find one of the PDF giving problems at the following address: http://www.pnas.org/content/106/1/97.full.pdf
    Thank you,
    A.

    Is there anything in Concole or the CUPS log (/var/log/cups/error_log)? It could be a font problem, but one of the places above should have some indication.
    Hope this helps.

Maybe you are looking for

  • Wifi on Ipad and Iphone won't connect

    I have an iphone 4s and an ipad mini, both updated to iOS 7 and they both will not connect to wifi. They will connect when I am at home or at Starbucks etc., but not while I am at school. My phone did connect at school last year, but has not been abl

  • Wake up issues

    So I need some help regarding my Mac and it's driving me mad! Its a bit tempermental and it isnt always the same occurance each time, but basically symptons are (somtimes it occurs, sometimes not with each one!): Turning on It will freeze on white sc

  • How to get the index of a h:column element?

    Hi! I'd like to know how to get the index of a <h:column> element. Here is the code of what I'm trying to do: <h:column>      <a:commandLink           value="#{familyAction.familyDocsByPrj}"           action="#{homeAction.search(ROW_INDEX)}"         

  • Where are the stamps files with their crazy names located in the Macintosh

    Hey I am looking for the files stamps with those crazy names. I work on a iMac OS X Tiger. I have created a stamp and found the corresponding file in "acrobat user data" but I want to create a dynamic stamp. I have found this tutorial : http://www.ac

  • Tax code creation with taxinn

    i know how to create tax with taxinj, but i have new client were they have taxinn, i have tried to make tax code, but its not working in po.in taxinn  but i dont know the exact condition and account keys. my tax is - excise inclusive+ 15% vat+2.5 add