Colours too rich and dark when printing

Hello!
I am having slight problems printing photos in iPhoto. The photos look great on my laptop: PowerBook G4 (OS 10.4.7), iPhoto 6.0.4 (305). The printer is a new Canon Pixma MP 500 (bought because of good reviews for photo printing.)
When printed the photos are too rich in colour and slightly dark. I am using Kodak Glossy Picture Paper for Inkjet Prints.
The settings in iPhoto for printing are:
Paper: A4,
Style: Standard Prints
Advanced: (main settings)
Colour Conversion: Standard
Quartz Filter: None
Media Type: Glossy Photo Paper
Print Mode: Printing a top-quality photo
Color Correction : None
Print Type: Photo
Brightness : Normal
Color Balance and Intensity all 0
Vivid Photo is unticked
All advice gratefully received!
Alastair Turnbull
Scotland

You might calibrate your monitor in the Color section of the Displays preference pane. Set the Gamma to the 2.2 setting. Then try editing a photo to the level you want and print. The darker 2.2 will force you to lighten the exposure in iPhoto to what looks good to you and may more closely be represented in print to what you want.
Do you Twango?

Similar Messages

  • Images are very dark when printing??

    Hi all, I'm new to printing with photoshop but having trouble and hope someone can help?...shooting in raw and RGB colour, converting images to jpg. In photoshop and they look great on screen, but skin tones and colours look really dark when printed?? What am I missing

    In addition to calibrating your screen which will help with the colors, the odds are your display is turned up way too bright. Depending on the calibration system you get, it may allow setting the screen brightness to an optimum brightness. But you can reduce the brightness now even before you calibrate the display. Try 1/2 of the full luminance to see if that makes the display look more like your dark prints...

  • How do I get the cells to show up darker when printing my document

    When using Numbers, how do I get the cells to show up darker when printing my document?

    Are you asking about the cell background, as ivmedic has assumed, or about how to make the grid lines separating the cells darker?
    Select the table.
    Use the controls shown above this table to change:
    Stroke type from "Thin" to the solid line shown.
    Stroke thickness to 1 pt
    Stroke colour to a darker value (This is set to black, the rightmost cell in the top row of the Color Palette available fir this Color Well.)
    the controls are toward the right end of the Format Bar.
    Regards,
    Barry

  • Turning off headers and footers when printing a web page.

    Is it possible to turn off (or reduce the size of) the
    default header and footer
    when printing a web page? I am using Internet Explorer 6.0.2
    900, and only want
    it to work with my computer and a specific printer.
    I am using the directive @page normal { size : portrait;
    margin : 0;} in a CSS
    stylesheet specified as media="print".
    Clancy

    On Sat, 19 Jan 2008, David Powers wrote
    >However, you are very selective in your quote. Michael
    goes on to say
    >(and I agree with him on this point):
    >
    >"The problem with logical inches and all other fixed
    units of measure
    >is that they do not scale well on systems with different
    dot-per-inch
    >settings. What may seem just right in Windows at 96 dpi
    may be too
    >large or too small on other systems.
    Of course, but It's not a problem with logical inches per se.
    The
    logical inch is just another way of looking at what is meant
    by the
    screen dpi value. Scaling problems, with different dpi
    settings, has
    always been a Windows problem and results from the way that
    the OS
    handles scaling. Fonts scale perfectly. Actual windows, and
    other
    containers, don't. This is a problem programmers have
    grappled with
    since the first Windows OS. Vista is the first OS to try to
    tackle this
    problem.
    >Thus, percentages or ems work best when cross-platform
    compatibility is
    >desired."
    And that is because the users screen dpi, and hence logical
    inches, are
    totally irrelevant when specifying ems and percentages.
    Ems and percentage equate to a number of pixels, not inches.
    The sole purpose of screen dpi setting is to convert anything
    sized in
    physical inches into a number of screen pixels. That is the
    _only_
    purpose of screen dpi. It's a very simple algorithm.
    (physical) inches x screen dpi value = number of pixels
    How do _you_ think a font sized in points (inches) gets
    translated to a
    specific number of pixels on screen. I'd be interested in
    your answer.
    For the screen a conversion from physical inches to pixels is
    always
    necessary because, as you say, pixels are the unit of screen
    measurement
    but they are not just a "standard" measurement, they are the
    only
    consistent measurement. It's not the users program that
    creates pixels
    on screen but the Operating System. The program requests the
    OS to
    create a given font at a given size and the requested size
    _must_ be in
    pixels. Windows can't _directly_ create a screen font that's
    specified
    in points (inches) because it has no notion of what a
    physical inch is
    on screen. It does know what a logical inch is because the a
    logical
    inch is defined by the screen dpi value. That's what the
    screen dpi
    value is for. If a browser programmer wants to bypass the
    variability of
    screen dpi on different computers then they ignore dpi values
    and work
    directly in pixels i.e. in ems or percentage. When ems and
    percentages
    are specified one is dealing only in pixels.
    > It makes a lot more sense in terms of website design to
    set a
    >font-size of 14px than use units that both you and
    Michael Bowers
    >define as "1/72 of a logical inch".
    Of course it makes more sense to set font size specifically
    in pixels
    because that's the only unit the OS can use to put something
    on screen.
    I can't see where you get the idea that either Michael Bowers
    or I have
    said that there is a unit "defined as 1/72 of a logical
    inch". Every
    Windows program written takes it that there are 72 points to
    a
    _physical_ inch.
    >
    >Yes, you *can* use points to set font sizes (or any other
    measurement)
    >in CSS for onscreen display, but your fixation with
    logical inches
    >appears to add little of practical value to choosing the
    most
    >appropriate measures for designing pages to be viewed on
    displays of
    >various sizes and resolutions.
    You are implying I've said things which I haven't. I have
    never, at any
    time, said one should use points or inches in designing web
    pages. You
    seem to have missed the point that what I am doing is
    explaining why you
    see the results you do on screen when those unit are used.
    Somewhat more
    informed than "Points are only for print because I don't know
    what they
    mean on screen, so they must be meaningless".
    >As Eric Meyer says on page 110 of "Cascading Style
    Sheets: The
    >Definitive Guide" (2nd Edition), "points can be a very
    difficult
    >measurement to use in document design."
    And again, I've never advocated using them in page design. A
    close
    reading, however, from page 83 onwards shows that Eric Meyer
    has an
    imperfect notion of the meaning of screen dpi. Heresy!! He's
    hardly
    alone, which is why I did a web site.
    >
    >That's why I recommend leaving points for use in print
    style sheets.
    >However, if you enjoy making life difficult for yourself
    by using
    >points for onscreen design, you're perfectly free to do
    so.
    Once again, I have never advocated that. You are setting up a
    straw man
    to knock down. You can do better than that.
    Richard Mason
    http://www.emdpi.com

  • How can I make the background one solid color?  It is too difficult and noticeable when I use the retouch button and try to erase all the creases in my backdrop.  So, how can I have just a solid white background?

    How can I make the background one solid color?  It is too difficult and noticeable when I use the retouch button and try to erase all the creases in my backdrop.  So, how can I have just a solid white background?

    When talking about a specific image posting the image may be useful.
    One can use a Layer Mask and add a white Layer underneath.

  • I want to remove the header and footer when printing from my mac, i can do this in the Page Setup on my PC but not on the Mac. I can do it each time I print but then it resets. How do I make a universal change?

    I want to remove the header and footer when printing from my mac, I can do this in the Page Setup on my PC but not on the Mac. I can do it each time I print but then it resets. How do I make a universal change?
    == This happened ==
    Every time Firefox opened

    Go to the "File" menu, then "Print." The window that appears will have three drop-down menus at the top.
    The first is labeled "Printer",
    The second is "Presets".
    The third is unlabeled but has "Copies & Pages" selected by default.
    Click on that third menu and select "Firefox" near the bottom of the list.

  • Lines and streaks when printing

     Ihave anhp j3680 all-in-one - the black ink level is high but i'm getting lines and streaks when printing.

    Sometimes the cartridge itself may be causing the issue.  You may want to check the cartridges being used, clean the heads and align the cartridges.  The link below will walk you through the steps consecutively. 
    Link to print quality issues
    MammaBear
    I work for HP.
    --Say "Thanks" by clicking the Kudos Star in the post that helped you.
    --Please mark the post that solves your problem as "Accepted Solution"

  • Prints too dark and contrasty when printing from IDCS3 to Canon IP4000 inkjet printer

    I have a problem with colours when printing from IDCS3 onto a Canon IP4000 inkjet printer and Ilford Galarie smooth pearl paper. I cannot find a solution to it or maybe I am not looking for the right search terms. Maybe someone can help me here.
    I am using IDCS3 on a Mac G5 PPC with 2Ghz dual processors running OS 10.4.11. I have an Eizo ColorEdge CE210w monitor which I profile regularly with a Gretag Macbeth eye-one device.
    I have designed a 50 page document with about 200 images. Now when I print from IDCS3 the images are too dark and very contrasty. But when I print the same image from Photoshop CS3 the print is fine.
    I have been using the canned ICC profile from Ilfords website.
    The one difference was that in Photoshop I had a choice of rendering intent in the print dialogue which I set to relative colorimetric. (I have subsequently found that I have the choice of rendering intents in ID if I select each image and change the RI before I get to the print stage which can be a pain)
    I would appreciate your help with this as I do not really want to redesign the layout in Photoshop all over again.
    Thank you in advance.

    >The one difference was that in Photoshop I had a choice of rendering intent in the print dialogue which I set to relative colorimetric. (I have subsequently found that I have the choice of rendering intents in ID if I select each image and change the RI before I get to the print stage which can be a pain)
    You can change overall rendering intents for each document under Edit/Assign Profiles.

  • Images off colour and overexposed when printing

    Hi folks I'm new to the site. I have been using adobe software for a good few years at this point, and i have been trying to solve a problem with my friends Photoshop and illustrator. every time she prints out work, its all off colour and over exposed like the colour preferences are messed up.
    When printing a word doc or regular jpg images there is no problem. It only happens when trying to print in Photoshop or illustrator.
    I would really like some help
    Thanks 
    Edit
    CS3 Extended
    Printer brother DCP-165C

    What are her color-management settings and practices?
    Is she set up to use appropriate color-profiles while designing/editing, using a calibrated/profiled monitor to display the designs or photos in accurate color, and using appropriate settings and profiles for print color-management?
    Do the prints come out to match what's displayed if the image is sent to a service - or you print them on your setup?
    Does what is displayed in Photoshop match what is displayed in the other apps being printed from?
    Has it once worked, and now it doesn't - or is this a new setup?
    This is a case where the specifics matter - very much.  Color-management settings and practices cannot usually be "guessed" into working.  And to make matters worse for those struggling to understand, there is the possibility that there are bugs in printer drivers, bad monitor profiles, etc.
    Unfortunately, it's near impossible to teach proper color-management concepts, so that the user can make all the appropriate choices, on a forum.
    -Noel

  • Turns off and on when printing e-mails Photosmart Plus B210A

    When printing e-mails and/or attachments, machine turns off with warning that it was incorrectly turned off.  It will then turn itself on and off several times.  I have unplugged it and as soon as it starts to print what is in memory, it turns itself off again.  I can print word or other programs.  But I can't always copy attachments over to word and that is a hassle for as many e-mails as we receive.  Of course it is just barely out of warranty.  Any suggestions would be appreciated.

    charolaisdee,
    This article should get you back up and running. Give the steps a shot and let me know the results:
    http://goo.gl/igX8Y
    Best of Luck!
    You can say thanks by clicking the Kudos Star in my post. If my post resolves your problem, please mark it as Accepted Solution so others can benefit too.

  • Size of text is too small for pdf when printed

    When I finished filling in the pdf - the text is too small when I printed out the form.

    How did you fill that form: using Adobe Reader?
    When printing, did you check the Page Sizing & Handling options on the Print panel?

  • The browers (FireFox, IE) too slow and hang when load Spanish language many

    Hello There,
    I am using the STRUTS Framework 1.1 for developing web application.
    My objects:
    Buyer{
    String scompanyName;
    String scompanyAddress;
    Supplier{
    String ssupplierName;
    String ssupplierAddress;
    I created 2 ArrayList Buyer and Supplier and put them to the ComBox. One Buyer has many Supplier when you select any Buyer....
    If you select Supplier then the sub info of this Supplier will be displayed in below. As this action, I have selected many many Supplier for see sub info (Address, Employee...) many time.
    When the action submit to Server then I see the Buyer info also change when display because Company Name and Company Address are the Spanish language.
    Origin info:
    Name : ABC Espa�a S.A.
    Address: Carretera de LHospitalet, n� 11, Nave 1, 08940 Cornell� de Llobregat (Barcelona)
    First time:+
    Buyer:
    Name : ABC Espa��a S.A.
    Address: Carretera de LHospitalet, n�� 11, Nave 1, 08940 Cornell�� de Llobregat (Barcelona)
    Second Time:
    Name : ABC Espa�ƒ��a S.A.S.A.
    Address: Carretera de LHospitalet, n�‚�� 11, Nave 1, 08940 Cornell�ƒ�� de Llobregat (Barcelona)
    We have 2 string very long in results when I select many many time and browser too slow and hang if the are to long. That problem only happen with the Spanish language, in other languages are not, It works good.
    Please help me to solve these above problems, I have tried to add code in JSP page
    <meta http-equiv="Content-Type" content="text/html; charset =ISO-8859-1"> or <meta http-equiv="Content-Type" content="text/html; charset =UTF-8">
    But it also hang the browser.
    Thanks a lot,
    Vu Nguyen

    Well... Are you sure that the problem is within the browser? If both browser hang, then check if your OS supports the language the right way. Also, your browsers my have plugins/addons for supporting other languages. Try to look for them or/and post your systems-names here to help others helping you =).
    X--spYro--X

  • Applications run slowly and quit when printing on a G5

    I recently migrated applications, documents, and accounts from a G4 to a G5., both running OS X Tiger 10.4.9. Since migrating, many times a day there have been problems with it.
    Applications (mostly FileMaker and Microsoft Word 2004) run a little more slowly than they should. Of more concern is how these applications will unexpectedly quit when printing. They will quit just before the print dialogue box is supposed to appear. It doesn't happen every time, but it shouldn't be happening at all. The printers used are all shared printers but not postscript-based printers.
    I've tried a number of things (deleting the printers and adding them again, repaired permissions, updated software, deleted corrupt fonts, uninstalled MS Office & reinstalled, zapped PRAM) and nothing has helped.
    I thought I'd ask here for any suggestions (since this looks like it might be a common enough problem) before I resort to reinstalling everything! Thanks!

    Reinstall if deleting .plist files doesn't help. Seems that crashing on launch is common enough after the recent update http://www.macfixit.com
    Backup. And whenever you do a clean install, back that up there and then, sparseimage works fine, and keep it handy if you need to restore.
    I'd run First Aid and Disk Warrior.
    I thought my printing problems began with the Security Update 2007-004 and went back to earlier image. Have not yet reapplied to test whether it would or not.
    After spending a couple full morning trying various fixes, a restore or reinstall did the trick. I'd suggest the same.

  • Ink bloches and wet when print on art card

    I am trying to print a flash card using Matte Coated Art Card from Japan with 260gsm on HP Officejet Pro 8620. However the result is very disaapointing. It is wet and blotches. I have tried paper types Card Stock, other Greeting Cards and photo papers for Paper Type option.
    Please help.

    Hello AliYahyaRaee:
    It could be that the paper you are using is too slick and will not absorb the ink from the printer.  Follow the link below to possible fixes that might help. 
    Resolve print quality issues
    Let me know if any of the suggestions in this document help.
    Tobindo
    A non-hp employee
    An hp representative
    AliYahyaRaee wrote:
    I am trying to print a flash card using Matte Coated Art Card from Japan with 260gsm on HP Officejet Pro 8620. However the result is very disaapointing. It is wet and blotches. I have tried paper types Card Stock, other Greeting Cards and photo papers for Paper Type option.
    Please help.

  • After my Modzilla update print jobs only have a blank gray page when looked at in preview and blank when printed

    I accepted a update from Modzilla yesterday. After which I had no print abilities. In the preview area it is just blank and when printed the pages are just blank. I had to go back to Internet Explorer to print my work-- it printed fine so it isn't the printer.

    Try the '''''reset''''' described here: <br />
    http://kb.mozillazine.org/Problems_printing_web_pages#Reset_printer

Maybe you are looking for

  • Is there a way to handle system exception ERROR_MESSAGE?

    Hi, I have a program executed in background, which produces a bunch of consecutive documents for a set of Bulk Shipments -> TD Loading and TD Delivery Confirmation. To create those documents I use function modules 'OIGI_LOADING_CREATE' and 'OIGI_DEL_

  • ACS 5.1---AD Authentication VS LDAP

    Any help on this subject would be great I can manage to get my account logging into the cisco switch throught the Active Directory setup in external Idenity stores but not my LDAP setup here are some logs from the successful log in and unsuccessful l

  • OTA Music Downloads Not Working after 3.1 update?

    Hey all, I've been having a strange problem since updating my iPhone 3Gs to 3.1, which may or may not be a "feature", or I might just be crazy, but anyway: Previously, when trying to download an album over-the-air from iTunes, I was able to download

  • Where has my recent changes to my project gone?

    I have been editing a project for a year and a half now, and recently I ran out of memory on my macbook. So it was suggested that I move everything over to my external hard drive and delete everything off of the macbook so i had memory and could upda

  • Is a bit of information so hard to get?

    I also placed my preorder of an iPhone 6 silver, 16 gb on 9/13.  To be shipped 10/3, received by 10/7.  Here it is 10/6, no change in the order, still being processed.  Is a little information so hard to get?  Just leave us sitting here wondering if