Gray scale instead of text

Some PDFs seem to show unreadable text in iBooks. They open okay in Adobe Reader, but in iBooks they just show gray scale gradients instead of text. Images display fine.
One other forum suggested that this is a problem caused by PDFs created in Word 2007.
Is this a known issues and if so, what questions should I ask Apple (and other app developers), so that they can fix this?

Since this is the Adobe Reader forum, this is not the right place to ask about a problem/limitation in Apple iBooks.
Here are two Apple forums where you might ask:
iBooks
Creating Books for iBookstore

Similar Messages

  • How to capture the gray scale photo

    Hi. I followed this (
    https://msdn.microsoft.com/en-us/library/windows/apps/hh202982(v=vs.105).aspx ) example to capture photos and also in gray scale but the sample doesn't capture the gray image, it only pumps the gray pixels to the Image control. How can I freeze these
    pixels in the Image control or capture it as a jpg? Thank you in advance. 

    I should have been more clear. Forgive me.  I followed that example and added all the functionality as in the example like the focus(auto and tap), the flash light ect and it works but when it comes to the grayscale: the example only streams the converted
    pixels to the image control. It does not "capture" the image. Somehow I have to stop pumping the grayscaled pixels to the Image control and then I want to save-send the "gray" image. What's the easiest way to do that? This is what I have
    so far:
    MyClient.DownloadStringAsync(new Uri("http://www.iclips.co.za/sign_in.php?username=Clint William Theron&password=k"));
    However, the username and password is empty on the server side. How do I add paramters and download the server's response? Thanks in advance
    I basically want to turn this:
    var values = new List<KeyValuePair<string, string>>
    new KeyValuePair<string, string>("username", un),
    new KeyValuePair<string, string>("password", pw),
    new KeyValuePair<string, string>("friends", friends),
    new KeyValuePair<string, string>("density", "high"),
    new KeyValuePair<string, string>("platform", "Windows Phone"),
    var task = DoPost_Sign_In_To_Server("http://www.iclips.co.za/sign_in.php", values);
    async Task DoPost_Sign_In_To_Server(string url, IEnumerable<KeyValuePair<string, string>> values)
    try
    var httpClient = new HttpClient(new HttpClientHandler());
    HttpResponseMessage response = await httpClient.PostAsync(url, new FormUrlEncodedContent(values));
    response.EnsureSuccessStatusCode();
    var responseString = await response.Content.ReadAsStringAsync();
    this.Dispatcher.BeginInvoke(delegate()
    if (responseString.Trim().StartsWith("Welcome to iClips. You need to delete"))
    MessageBox.Show(responseString);
    return;
    if (responseString.Trim().StartsWith("Welcome to iClips"))
    //this means sign up was succesfull
    //so now we signed in
    txtDebug.Text = "Sign In Successfull :-)";
    vibrator.Start(TimeSpan.FromSeconds(1));
    else
    MessageBox.Show("Network Error: \n" + responseString);
    signForm.Visibility = Visibility.Visible;
    signForm_Shadow.Visibility = Visibility.Visible;
    catch (Exception ex)
    MessageBox.Show("Network Error: \n" + ex.Message.ToString());
    signForm.Visibility = Visibility.Visible;
    signForm_Shadow.Visibility = Visibility.Visible;
    txtDebug.Text = "Try to Sign In >> again.";
    in to WebClient, because of the progress bar that can be bind to WebClient.

  • Why can't I adjust the scale of my text by clicking and dragging the corner boxes?

    Why can't I adjust the scale of my text by clicking and dragging the corner boxes? Why I have the text selected, all it does it let me highlight it to change font, size, etc, OR all I can do is move it throughout the artboard. Why can I click and drag the corner box to adjust?
    M

    It's because you have a paragraph text box and it doesn't automatically resize text. This way you can change the margins of the text without resizing it which is how paragraph text functions by default.
    I'm not seeing the new text paragraph/area indicator on your text box, which is what you get in Illustrator CC, so the only way to convert this text so you can resize it by dragging on the corners is to copy the text, deselect the text box, use the text tool to click once in another part of your document, and then paste the text. The text will then come into your document as one long line if you don't have hard returns in it, but after reflowing the text manually you'll be able to drag the corners to resize the text.
    I would recommend not going this route as any text you remove from the area type means that the rest of the text has to be manually adjusted to maintain correct margins. Instead just resize the bounds of the paragraph text and adjust the size of the font in the Character panel.

  • How can I get Gray background instead of White in Photoshop CC 2014 after rendering 3D ? I've seen this in many tutorials. Plz help me.

    How can I get Gray background instead of White in Photoshop CC 2014 after rendering 3D ? I've seen this in many tutorials. Plz help me.

    Brother, when I am rendering any 3D text in photoshop, then it shows white backgroung instead of Gray.
    See White backhround is of mine and gray is on tutorials.

  • Hp Officejet 8000 Set to print Gray scale but still using color

    Hp Officejet 8000 Set to print Gray scale and use only Black ink, Draft Quality, but still using color ink. I'm replacing color ink cart more often the Black. I understand even when set to black only it will still use some color in cleaning and such. but not the amount of color it is using now. Printer has me pissed total waste of money. I'm ready to get my Xerox Phaser solid ink printer fixed. as it was super cheap on ink.

    Hello Lynn,
    Is your network router located near your desktop PC and L7590 officejet?
    If so, I would suggest that you connect the L7590 to the router with an ethernet cable(you can also leave your usb cable connected to the desktop). Then you can connect more directly (still through the network) to the L7590 with your dv7 laptop instead of connecting through the desktop.  Since your dv7 is wirelessly connected to the router, and the L7590 is also connected (wired) to the same router, the setup is much easier.
    If you want to try this, first download the software from hp.com (click here for the download page).  When you run the installation on your dv7 notebook you will be guided through the steps necessary for connecting to the printer via the network.
    Dont forget to reply and let us know how it goes!
    Kent G.
    I work for Hewlett-Packard

  • How can I display an icon, instead of text string, as a validation prompt?

    My validate method inside my custom validator is like this:
    public void validate(FacesContext context, UIComponent component, Object value) {
      Pattern datePattern = Pattern.compile("(\\d{2})/(\\d{2})/(\\d{4})");
      Matcher dateMatcher = datePattern.matcher((String)value);
      if(!dateMatcher.find()){
        ((UIInput)component).setValid(false);
        FacesMessage message = new FacesMessage();
        String msg = "[" + value + "] invalid date";
        message.setDetail(msg);
        context.addMessage(component.getClientId(context), message);
        FacesMessage facesMsg = new FacesMessage(FacesMessage.SEVERITY_FATAL, "xx", "msg");
        throw new ValidatorException(facesMsg);
    }My JSP has this:
    <h:inputText id="test" value="#{projecthandler.test}">
    <f:validator validatorId="DateValidator" />
    </h:inputText>
    <h:message id="testErrorMessage" for="test"/>The <h:message> tag will kick in if the user has invalid data in the <h:inputText> field and clicks submit.
    When the page is regenerated, the user will see a text string reflecting what the issue is.
    However, instead of this, I would like to display an icon consisting of a red circle with an exclamation point.
    The user is supposed to click on the icon if they want more information. By clicking on the icon,
    the user will see a message box, with a description of the error.
    This is our standard for applications. I'm trying to put together a demo showing how an existing application
    would work in JSF, so I won't be able to talk others into using JSF, unless I can get the validation to display an
    icon instead of text.
    Edited by: Kazan on Mar 18, 2009 9:31 AM
    Edited by: Kazan on Mar 18, 2009 9:33 AM
    Edited by: Kazan on Mar 18, 2009 9:36 AM

    OK, I noticed a bug in my validate method. This is updated to fix the bug, and to include the recomendation about background-image:
      public void validate(FacesContext context, UIComponent component, Object value) {
        System.out.println("DateValidator.test.1");
        Pattern datePattern = Pattern.compile("(\\d{2})/(\\d{2})/(\\d{4})");
        Matcher dateMatcher = datePattern.matcher((String)value);
        System.out.println("DateValidator.test.1");
        if(!dateMatcher.find()){
          ((UIInput)component).setValid(false);
          FacesMessage message = new FacesMessage();
          String msg = "<span style='background-image: url(/error.gif)'/>";
          message.setDetail(msg);
          message.setSeverity(FacesMessage.SEVERITY_FATAL);
          context.addMessage(component.getClientId(context), message);
          throw new ValidatorException(message);
      }When I run this, the litteral string of "<span style='background-image: url(/error.gif)'/>" is printed as the message. It does not interpret this as a span tag with an image url.
    Can someone tell me what's going on?

  • HT2523 How do I get my mac to open in pages instead of text edit?

    How do I get my Macbook Pro to open microsoft dox in pages instead of text edit?

    Select a document of that type in the Finder, choose Get Info from the File menu, click on Open With, select the desired application, and press the Change All button.
    (101764)

  • How can i use text only instead of text plus the folder icon in the bookmarks toolbar; older firefox allowed this.

    I prefer using text only instead of text plus a folder icon in the bookmarks toolbar because it used less space and I can display more bookmark folders in that toolbar. Is that possible in Firefox 4.0? It was possible in the earlier versions of Firefox. If it is possible in Firefox 4.0 how do I do that? Thank you.

    First install the "Stylish:" extension then you have thousands of styles available to choose from, most consist of only a few lines, and you can modify them to suit yourself.
    * '''Stylish''' :: Add-ons for Firefox<br>https://addons.mozilla.org/firefox/addon/stylish/
    * '''Bookmarks Toolbar Fx4 Blue/Folders, Red/Bookmarks'''<br>http://userstyles.org/styles/46947/
    * '''some styles I use:'''<br>http://kb.mozillazine.org/User:Dmcritchie

  • I am getting strange numeric symbols or tiles instead of text when using Firefox. Repeated reloads and virus scans have not fixed it. I can't find a patch. Help! I hate IE!

    Each time I open Firefox, I get blocks or tiles of numbers for each character instead of text. The tiles appear as composites of four digits, stacked two by two. At some websites, normal text does appear in boxes but mostly as this numeric gibberish. The functionality of the Firefox software does not seem to have been affected. But if I can't read it, I can't use it.

    Try to set the pref <b>gfx.font_rendering.directwrite.use_gdi_table_loading</b> to <i>false</i> on the <b>about:config</b> page.
    To open the <i>about:config</i> page, type <b>about:config</b> in the location (address) bar and press the "<i>Enter</i>" key, just like you type the url of a website to open a website.<br />
    If you see a warning then you can confirm that you want to access that page.<br />
    *Use the Filter bar at to top of the about:config page to locate a preference more easily.
    *Preferences that have been modified show as bold(user set).
    *Preferences can be reset to the default or changed via the right-click context menu.

  • EPUB - GRAY BOXES Instead of Images

    When exporting my epub book, I get gray boxes instead of images. Has anyone else run into this or know what to do to resolve this issue?
    All the images are linked properly and InDesign is saying I don't have any errors. The only way I can get images to show up is ONLY if I select "Use Existing Image for Graphic Objects". But if I select this, I lose the cropping and orientation adjustments I've made in my inDesign file. I've even tried just copy and pasting an image into the document itself.
    Needless to say I've spent way too long trying to figure this out and haven't made any progress...

    If other people can export it fine but you can't, then I would suggest some troubleshooting of your InDesign install.
    Have you tried rebuilding your preferences and then re-exporting?
    Have you made sure you're not using any third-party plugins that automatically load with InDesign?
    Assuming you've done those two tests and are still having a problem, then try it on a test account on your computer. Package the InDesign file and put it on a thumbdrive (or I guess you could just download the files from the link above) and then log out of your account on your computer, and log in again to a fresh new account with admin privileges. (If you haven't created one yet, you should do that first before logging out ... lol)
    When you log in to the new account, all the apps are available to you but none of your other account's files or user settings. So open InDesign, download/copy over the packaged file, and open the layout and export. See if that makes any difference.
    I have a short course on lynda.com on troubleshooting InDesign (just 10 short videos) that goes over these and other steps.
    Watch the Online Video Course InDesign: 10 Tips for Troubleshooting Files
    AM

  • How to print a downloaded color document in black or gray scale

    I have Adobe Reader 9; Windows Vista Home Premium; HP Officejet Pro 8000 Wireless printer.  I have downloaded a document that is pre-set to print in color.  I want to print it in black or gray scale.  I click on the printer icon for the printing pop up.  When I click on the Properties bar to make the request for black or gray scale, nothing happens.  What steps can I take to convert the pre-set color download to be printed in black or gray scale?  Thanks!

    I have only had the experience when I have downloaded a link from within an email to my Hotmail account when the download has already been set up in color.  To date, I have not had that problem with Word.       There are specifically two situations regarding two different monthly emailed newsletters.  This is through Internet Explorer 8; Windows Vista Home Premium.  (I will not use Internet Explorer 9.  It causes blocks for routine procedures, especially involving my Hotmail account--such as not being able initially to download a normal attachment or, if downloaded, not being able to print a normal download attachment.)     However, after I sent out my request for help, I switched to Mozilla Firefox and was able to print the "color" download in black right away because the Preferences bar responded as it should.  (Through Internet Explorer 8, regarding this particular link/download/attachment, the printing pop up had a Properties bar.  However, I am aware that, in some other pop up formats, there are both a Properties bar and a Preferences bar to choose from.)       I have Mozilla Firefox as a backup because, sometimes, I have to resort to it to download email attachments (whether black or color) coming from the east coast when they will not download through Internet Explorer 8.  (I am near the geographic center of the US.)     Thank you for your interest in my concern.  I will gladly accept any advice regarding being able to print an email attachment/link color download in black when using Internet Explorer 8!  Does it depend on how the link attachment is set up or what the link attachment is??
    [private data removed]

  • How can I make the tab image instead of text.

    Hi guys,
    How can I make a tab displayed as image instead of text?
    Best Wishes,
    Fateh

    Thanks Jari,
    I use Apex 4.0.2 and the theme is Builder Blue 2. When I click edit tab, I get "Tab Label" that is required field and a region called "images". As I got from you, I cannot utilize images in my case.
    Regards,
    Fateh

  • Helvetica Light Appears As An Image Instead Of Text

    Earlier i was using "Helvetica" on my Adobe Muse website that i am designing. I had to change it from "Helvetica" to "Helvetica Light" and the text started to show as an image instead of text. I mean it does not remain text anymore and when i export the site it shows as a png file. Although i can still edit the text of course.
    I have seen a question on the forum (HERE) that explains what is happening but there is no explanation how to correct it. I really want to use Helvetica Light instead of normal Helvetica. Can any one tell me how to keep it as a text instead of a png file?
    Thanks!

    Not all visitors to your website will have Helvetica Light installed on their computer, so the only way for Muse to give that exact look is to turn the text into an image.
    If you want the text to stay live text and not become an image, you have to limit yourself to the fonts in the 'web safe' or 'web fonts' categories. If you use a system font, Muse will rasterize the text to give you the exact appearance you desire.

  • I have Mac OS X 10.6.8 and am trying to change a printer to black and white/gray scale. All the posts I find refer to a button for Paper Quality. This does not appear on my options. Just paper handling which does not have a function to change from colour.

    I cannot change the printer settings on my MacBook Pro to gray scale from colour. there is no function for Paper quality, just paper handling. any suggestions greatly appreciated - as long as they work!!

    Was the printer instance properly configured when created, so the print subsystem picked the correct PPD and knows of all the device's capabilities? If in doubt, erase and create anew so you can confirm that the printer maker/model/version is getting correctly identified. This may trigger Software Update to download & install a printer update. The menus available on the print dialog depend on what the OS knows the printer can do. For instance, this is what I get in Safari's print dialog when using an HP 2550Ln color laser at the office:

  • Convert to Gray scale issue in spot color file

    Hi,
    I am having some problem in Acrobat X Pro on Convert to Gray Scale Preflight Fixup, but the same PDF file is working good in Acrobat 9.0 Pro for the same process.
    Even I tried with the error report, but there was no error details in that report.
    Please help me out to find the reason for that problem. The PDF file is having a spot color.
    Please find the RGB and converted Gray image
    Thanks in advance,
    Veeramani.M

    Kumararaja,
    You can upload you file  using any public/private FTP and then can embedd the link here.
    Or when you click on Edit (in your message division), you get a browse option in the bottom left cornet. That allows upto 8.9MB. The way i attached!!!
    BTW, what's the issue?
    ~Sandeep V.

Maybe you are looking for

  • After the last update from firefox I cannot play games in pogo how do i fix this?

    I have been using firefox since I got my new imac. Since about 2 weeks ago when firefox updated I can no longer play games on pogo. How do I fix this problem?The pogo web page loads but it won't let me load the games.

  • OIap AW are Invalid after applying the Oracle patch 9.2.0.6

    Hi We have applied Oracle patch 9.2.0.6. after applied the patch we are not able to connect with AW might be all AW are invalid. i am getting the following error : ava.sql.SQLException: ORA-06521: PL/SQL: Error mapping function ORA-06512: at "SYS.DBM

  • Business Package

    Hi, I have intergrated a ABAP Webdynpro AGS_INCIDENT_MANAGEMENT in solution manager with Portal 7.0. The webdynpro application is part of the SP15. When i click on the links in portal i get error "iview not found for system <name>.Object <name>." Ple

  • Error when opening xml file .....

    Hi all, I am using Simple transforamtion and trying to download the file to presentation server. The file is downloaded and when i open it i get this message : "XML document must have a top level element. Error processing resource " Please let me kno

  • JMenu and JTabbedPane

    Hi, I'm trying to create different JMenu depending on which tabbedpane you choose. Any ideas how to do this???