17 Inch G4 iMac displaying low quality grainy graphics on web pages

I'm having a very sudden problem with my iMac. Images on web pages are displaying very grainy and low quality. This is not an issue with images on my iPhoto or new images I upload from my digital camera. I have tried loading web pages on Safari, Firefox, and Google Chrome and any web page I pull up is displaying fuzzy, grainy, low quality images. Does anyone know how I can fix this?

I'm sorry no one has jumped on this in two days. I think you have us stumped. I've tried changing some video settings on several of our G4 Macs but that either affects all image apps or doesn't simulate the problem.
Can you post an image? If you host the image or upload it to a image storing/sharing site, you can insert it in a post by using the instructions in this user-contributed yip:
http://discussions.apple.com/thread.jspa?threadID=121950&tstart=0
Help me here--You say this problem persists in *Google Chrome*. My understanding is that Chrome has always required an Intel processor and OS 10.5 or later. 10.4.11 and a G4 iMac don't cut it. Is this a typo or is this problem associated with a Mac other than the G4 in your equipment line?

Similar Messages

  • How can I display XSLT transformer errors on a web page ?

    Hi,
    I have some JSP pages that access DB, create an XML based on DB data and then transform it into HTML through an XSLT stylesheet. Developing the XSL code it's easy to make mistakes and generate errors on trasformation, but what I receive on the web page is only a "Could not compile stylesheet" TransformerConfigurationException, while the real cause of the error is displayed only on tomcat logs. This is the code for transformation:
    static public void applyXSLT(Document docXML, InputStream isXSL, PrintWriter pw) throws TransformerException, Exception {
            // instantiate the TransformerFactory.
            TransformerFactory tFactory = TransformerFactory.newInstance();
            // creates an error listener
            XslErrorListener xel = new XslErrorListener();
            // sets the error listener for the factory
            tFactory.setErrorListener(xel);
            // generate the transformer
            Transformer transformer = tFactory.newTransformer(new SAXSource(new InputSource(isXSL)));
            // transforms the XML Source and sends the output to the HTTP response
            transformer.transform(new DOMSource(docXML), new StreamResult(pw));
    }If an exception is thrown during the execution of this code, its error message is displayed on the web page.
    This is the listener class:
    public class XslErrorListener implements ErrorListener {
        public XslErrorListener() {
        public void warning(TransformerException ex) {
            // logs on error log
            System.err.println("\n\nWarning on XEL: " + ex.getMessage());
        public void error(TransformerException ex) throws TransformerException {
            // logs on error log
            System.err.println("\n\nError on XEL: " + ex.getMessage());
            // and throws it
            throw ex;
        public void fatalError(TransformerException ex) throws TransformerException {
            // logs on error log
            System.err.println("\n\nFatal Error on XEL: " + ex.getMessage());
            // and throws it
            throw ex;
    }When I have an error in the XSL stylesheet (for examples a missing closing tag), I can find on tomcat logs the real cause of the error:
    [Fatal Error] :59:10: The element type "table" must be terminated by the matching end-tag "</table>".
    Error on XEL: The element type "table" must be terminated by the matching end-tag "</table>".but on my web page is reported just the TransformerConfigurationException message that is:
    "Could not compile stylesheet".
    How can I display the real cause of the error directly on the web page?
    Thanks,
    Andrea

    This code is part of a bigger project that let developers edit XSL stylesheets through a file upload on the system and we can't impose the use of any tool for checking the xsl. So, I need to display the transformer error on the web page.I see. This code is part of an editorial/developmental tool for developers to create and edit XSL stylesheets.
    As part of the editorial process, XSL errors during editing can be considered a normal condition. In other words, it is normal to expect that the developers will generate XSL errors as they are developing stylesheets.
    In this light, handling the XSL transformation errors is a business requirement that you need to handle. Using the Java Exceptions mechanisms, e.g. try / catch are inappropriate to handle business requirements, in my opinion.
    I suggest that you look at how you handle the occurence of XSL errors differently than what you currently have. You need to:
    (1) capture the Transformation exception on the server;
    (2) extract the message from the exception and put it into a message that can be easily understood by the user;
    The current error message that you have going to the web browser is not useful.
    And you should not have the Transformation exception sent to the web browser either.
    What you are attempting to do with the exception is not appropriate.
    Handle the Transformation exception on the Business tier and use it to create a useful message that is then sent to the Presentation tier. In other words, do not send Java exceptions to web browser.
    />

  • Display customers by Type on a web page

    I can find any module for displaying customers by type on a web page.
    The intention was to have customers entered under a specific Type, and then under a secure zone display them based on the customer type.
    Anyon know how this can be done?
    Thanks

    I have been working with BC (since Good Barry) for years and have had a few clients request the option for their members to create public profiles, so similar situation to what you are talking about.  One workaround I have used is having the clients enter their CRM details first (in my case after they subscribe to a secure zone) and then directing them immediately to a page with the Web App Submission form. THAT form can then be pre-populated with the newly saved customer's CRM details using secure zone modules (E.g {module_workphone}, {module_workaddress} etc..). It is not ideal, but reasonably seamless from the client's point of view, as you can populate the form with hidden or read-only fields, meaning they don't have to enter their details twice.
    Question for you, Mario - the problem I have always had is that obviously there comes a time when the client wants to update their profile and/or their details on file.  I noticed that the EDIT layout of the webapps will NOT populate fields with the CRM modules - setting the values of the fields to {module_whatever} just won't work, as simple as it sounds..  So every time a client wants to (for example) UPDATE their contact details, they have to do it twice (once for the "Update Details" form and once for the "Profile Web App"). 
    Is there ANY way around this?

  • High def on my iMac, but low quality on MacBook :(

    I did a screen capture and exported it as HD. Imported it into iMovie for some editing and then exported as HD. Looks crystal clear on my iMac and really low quality on my MacBook Pro. Both computers are new within the year, not old. These are for my Photoshop tutorials which I sell. I claim that these videos are crystal clear and will play sharp as a tack on your computer. Will they or will they not? Help!

    P.S. Could it be that I did the screen capture on my 21" imac and then finished the editing in iMovie on my 15" MacBook? I recorded on a big screen and edited on a little one? I can't figure this out! Didn't happen with any others.

  • Can I display the table content of a web page??

    Hi guys I am new to java and here I need to count the words in each table and display the table with largest number of words . This being a part of my huge project. Below is my code where I have succeeded in displaying all the tables present in the web page.But I need to count all the words in the table and display only that table which has largest number of words including all the tags. So java experts please help me with this piece of code...................
    import java.net.*;
    import java.io.*;
    import java.util.*;
    import java.util.regex.*;
    public class findtable{
      public static void main(String[] args) {
        String inputLine = null;
        String wholeHtml = "";
    int trcount=0;
        try{
          URL yahoo = new URL("http://books.google.com/books?q=+subject:%22+Science+Fiction+%22&as_brr=3&rview=1&source=gbs_hplp_fict");
          URLConnection yahooConnection = yahoo.openConnection();
          BufferedReader br = new BufferedReader
            (new InputStreamReader(yahooConnection.getInputStream()));
          int start = 0;
          while ((inputLine = br.readLine()) != null) {
            wholeHtml += inputLine;
            if (inputLine.contains("<table")){
                      ++start;
            if (start != 0) {
              System.out.println(inputLine);
            if (inputLine.contains("</table>")) {
              --start;
        catch (MalformedURLException me) {
           System.out.println("MalformedURLException: " + me);
        catch (IOException ioe) {
          System.out.println("IOException: " + ioe);
        }So any help would be really really appreciated....
    The code should take care of nested tables also..
    So guys looking forward for the generous help....

    I have already parsed the HTML and checked all the closing of tags and corrected the indent using Tidy and then I have applied this code so some other suggestions please

  • How to display (not download) pdf document on web page?

    Very confused as to how to hyperlink to a word document (pdf) and have the document displayed on my web page rather than download the document...I am putting together a website for a high school cross country team and would like to make meet results available....THANKS?

    In that case, you would not create a hyperlink to it. This just enables it to be downloaded.
    It won't work with Word, so it would have to be a pdf, but you can copy and paste it into iWeb. Go to the document and press Command + C. Then go to your iWeb page where you want the document to appear and press Command + V and it should appear in iWeb. You can alter and re-size it so that it can be viewed.

  • Firefox is not displaying the latest version of a web page!

    When I open this web page with Safari, it doesn't display exactly the same information as when I open the page with Firefox.
    Based on the missing information, I suspect that Firefox is displaying an OLD version of the page.
    If so, what can I do to always have the most current page displayed???
    Thanks

    If this is a page you visit frequently, then Firefox may have cached an earlier version longer than the site anticipated. To temporarily bypass the cache, you can try one of the following:
    Shift + click the reload button<br>
    Command + Shift + r (on Windows: Ctrl + Shift + r)
    Does that retrieve the latest version? If so, caching is the issue. If not, there must be some other explanation.

  • How to display retrieved data from DB on web page

    Dear all,
    how to display retrieved data from oracle database on web page,Does anyone can give me an simple example?
    thanks
    WJ

    Hi,
    I use JRun tags but you can use Oracle tags or just JDBC... First u need to install jdbs connection and set e connection by using JMC (For JRun) named nomad.
    U can also try the link below for JRun tags..
    http://wds.its.uiowa.edu/cache/docs/jrun/html/JRun_Custom_Tag_Library/contents.htm
    <%@ page import="java.sql.*,javax.sql.*,java.text.*,allaire.taglib.*" %>
    <%@ taglib uri="jruntags" prefix="jrun" %>
    <%@ page contentType="text/html; charset=ISO-8859-9" %>
    <html>
    <head>
    <title> Test Page </title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-9">
    </head>
    <body>
    <BODY BGCOLOR="#FFFFFF" LEFTMARGIN=15 TOPMARGIN=20 >
    <jrun:sql datasrc="nomad" id="q1">
    select empno,
         ename
    from emp
    order by ename
    </jrun:sql>
    <center>
    <table border = 0 cellpadding = 3 cellspacing = 1>
         <th>EmployeeNo</th><th>Name</th>
    <jrun:param id="q1" type="QueryTable"/>
    <jrun:foreach group="<%= q1 %>">
                   <tr>
                   <td> <%= q1.get(1) %> </td>
                   <td> <%= q1.get(2) %> </td>
                   </tr>
    </jrun:foreach>
    </table>
    </center>
    </body>
    </html>
    ----------------------

  • 20 inch G5 iMac displaying 1/4 inch blotchy line across bottom of screen

    I just noticed a 1/4 inch thick blotchy, somewhat transparent line near the bottom of my screen. A year ago, right after I purchased this computer, I had to have some things replaced because of a thick white line that appeared across the bottom. Is this more of the same?

    It's been discussed and locked for a while...
    http://discussions.apple.com/thread.jspa?messageID=975713
    This was endemic on the Rev. A 20" models. I had my screen replaced twice. After the PS, mid-plane and mid-plane went again they sent me a new one with a built in iSight. I suggest you call Apple Care to have them repair it.
    Good luck,
    Dan Reilly
    Sarasota, FL
    PS: When posting it is suggested you descibe your machine in detail with the version of OS you are running. It may help in getting responses.
    20" iMac 2.1 G5 (iSight), 1.5 gigs, 12" iBook, iPod Nano (Black), iPod Suffle   Mac OS X (10.4.6)  

  • My contacts do not show up on iMac but do show up on iCloud web page and my iOS devices.  Any suggestions?

    As stated, my contacts are present and correct on all my iOS devices and on iCloud.com but they do not show up in contacts on my new iMac.
    The accounts details are the same and the password has been accepted so I assume it is correct (I have re-entered it numerous times on the iMac) yet still the contacts won't appear.  This also affects Messages whereby the sender appears as a number and not as a contact.
    Any ideas?
    Thanks.

    I was sure I'd tried this already but gave it one more go to no avail.
    Any other suggestions?

  • How to retrieve and display image from database in a web page

    Hi all;
    I have been trying this for some time now. I have found some tutorials so far but none of them addresses my concern. Here it is:
    I have built a web application that can connect to an Oracle DB.
    I have a table called "employee", where I record any employee details, among which the employee picture. I stored the pictures and the finger prints using "Oracle sql developper" as blob type.
    How can i retrieve and view all these information when i run the application?
    I can easily retrieve all other types of value, but the image(BLOB type) has been a nightmare for me.
    HELP PLEASE.

    morgalr wrote:
    I believe your Binary Large Obejct will come back as an array of int, and you'll need to use BufferedImage it's associated API to get it to a viewable image configuration.I don't think BufferedImage immediately solves the problem -- this is a web app, so I assume the image will be displayed using the HTML IMG tag.
    Solution: google. There are many example of how to do this. For example, any book on servlets will have an example of dishing up a dynamic image.

  • Graphics on web pages disappear and text appears jumbled up on page. Have tried resetting FF and removing & reinstalling FF, both with no effect. Fix?

    Issue occurs with at no particular time. Repeatedly happens on Weather Underground (www.wunderground.com), sometimes on MLB.com and one occurrence with Facebook.

    Hello,
    Try disabling graphics hardware acceleration. Since this feature was added to Firefox, it has gradually improved, but there still are a few glitches.
    You might need to restart Firefox in order for this to take effect, so save all work first (e.g., mail you are composing, online documents you're editing, etc.).
    Then perform these steps:
    *Click the orange Firefox button at the top left, then select the "Options" button, or, if there is no Firefox button at the top, go to Tools > Options.
    *In the Firefox options window click the ''Advanced'' tab, then select "General".
    *In the settings list, you should find the ''Use hardware acceleration when available'' checkbox. Uncheck this checkbox.
    *Now, restart Firefox and see if the problems persist.
    Additionally, please check for updates for your graphics driver by following the steps mentioned in the following Knowledge base articles:
    [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]]
    [[Upgrade your graphics drivers to use hardware acceleration and WebGL]]
    Did this fix your problems? Please report back to us!
    Thank you.

  • I need a high quality print of a web page..

    Hi all,
    I'm sorry if this isn't the appropriate forum for this but I'm betting you all will be the best brain trust to ask!
    A website has done a feature article on our company and I would LOVE to print out a copy of this page.
    Using the standard browser print options makes the page a total mess.. I've downloaded the "Awesome Screenshot" plug in for chrome and got a decent print of it but it's still not ultra high quality. I'm hoping to be able to print this and frame it... Does anyone have any ideas or suggestions for me?
    Again I apologize for this not being specific to PS (although I do have the entire Adobe suite and may be able to utilize it for this project)... and thank you in advance for any help you may give me.
    Thanks!

    Sounds like you are half way there.  Load that pdf into Photoshop at your required resolution, and rebuild the borders and colours on underlying layers using Photoshop.  The text will be bitmap, but if you load it at a really good resolution, it should look OK.  Or you can overwrite the text in Photoshop as well.  If you load the PDF with Acrobat or similar, you will probably be able to cut and paste the text from the PDF into Photoshop.
    I think you said you have the full Creative Suite?  I'd 'probably' do it with InDesign, but that's a guess without seeing it.

  • Applet Displays in Appletviewer but not on Web Page?

    My applet appears and functions fine when I view it under applet viewer. However, when I try to open and view the applet on a html page that includes it, nothing displays. Can someone help me out?
    Class of Applet:
    import java.awt.*;
    import javax.swing.*;
    import java.util.*;
    public class PeteApplet extends JApplet
              PetePanel pete;
              public void init()
                        pete = new PetePanel();
                        this.setSize(452,146);
                        JPanel pane = new JPanel();
                        pane.setLayout(new GridLayout(1,1,15,15));
                        pane.add(pete);
                        this.setContentPane(pane);
                        this.setVisible(true);     
    HTML Code:
    <HTML>
         <HEAD>
              <TITLE>Java 21 Days - Day 13 Exercise 1</TITLE>
         </HEAD>
         <BODY BGCOLOR="WHITE">
         <APPLET CODE="PeteApplet.class" height="146" width="452">
         This applet requires a Java-enabled browser.
         </APPLET>
         </BODY>
    </HTML>

    which browser are u using ?? try netscape and see if u get the same error

  • Mid-2009 iMac w/ 4gb ram.  Since Maverick web pages load excruciatingly slowly (if at all).

    My wifi is an Airport connected to Comcast modem (no issues prior to Maverick upgrade).  Sometimes if I turn off the wifi at the iMac end then turn it back on, and then reload the page, it'll come up at normal speed.  I've tried a Safari reset and disabling DNS prefetching with no effect.  Occasionally pages will load normally, but most of the time will be slow (at or below old dial-up speeds), and about 50% of the time the progress bar in Safari will go about 1/3 - 1/5 of the way and then just stop (with the page not loading at all).  Any ideas?  In advance, many thanks!

    Hello TomTemp1988,
    The following article provides some additional troubleshooting that may help stabilize your Wi-Fi connection.
    Wi-Fi: How to troubleshoot Wi-Fi connectivity
    http://support.apple.com/kb/HT4628
    Cheers,
    Allen

Maybe you are looking for