I'm giving up on matching colors for print...please help

I have an image of a model whose sweatshirt is sky blue.
I know I'm setting up my print dialogue options correctly for print. I have the paper profile selected, correct printer, etc. I also used On-Screen, soft proofing with my paper selected when making adjustments in Aperture. On screen, her sweatshirt looks perfect. I go to print a picture and in the print dialogue box, her sweatshirt is now teal. I have them side by side and the difference is obvious. Again, the soft proofing is set to the paper I am using, and the settings in print dialogue is set up with that paper in ColorSync. So I have them matched according to settings, but they look very different.
For the heck of it, I experimented and switched soft proofing to sRGB and the sweatshirt turns teal on screen. This teal now matches the print dialogue box's preview of that sweatshirt.
So why does my picture print according to sRGB profile (and match it perfectly--teal blue sweatshirt) and not the profile I have selected for my printer (HP Advanced Glossy--sky blue sweatshirt)? Can anyone tell me if this indicates a certain issue that I can resolve?

I have a B9180 and have had many, many problems.
I meticulously follow the set-up procedures but in the end it is hit and miss. At the start of each printing session I have to waste several expensive sheets in order to get the settings in sync. Not only is it expensive, it is time consuming and frustrating. Ultimately the final parameter is Gamma.
HP advanced photo glossy is very good but I also use locally sourced papers; Canson - a French set of papers, I like their Photosatin Premium Rc and Tecco, a German company - Ultra-white glossy and PSR 250 a beautiful textured satin finish. Most of my printing is monochrome by the way. Eventualyl I get there but I do not have great confidence in the combination of HP and Aperture. the pro photo people say you have to balance everything. their knowledge is far superior to mine but having spent now around 40 years in IT I know enough to say that both companies are falling down badly in terms of tehir co-operation. This type of black magic and mumbo jumbo is just not necessary in today's advanced IT world. If it were so easy as buying an upmarket Epson, I would do it, but that route also seems fraught with danger. If PC, Lightroom were the answer I would go that way but again I am not convinced.
I love printing and the process of getting there but blunt tools do not help.

Similar Messages

  • URGENT FIX MY Connect Four game for Wednsday PLEASE HELP

    I am using an APPLET and i want to use JOptionpane it didnt work when i used it in the paint method. So i want to make a runner to make the program work. I don't know why the Graphics g = new Graphics isnt working PLEASE HELP. Email the revised code to my email at [email protected]. URGENT FOR TOMORROW PLEASE HELP. should i have a spearate class for the runner, just email me please if you can help.
    import javax.swing.JApplet;
    import java.applet.*;
    import java.awt.Graphics;
    import java.awt.Color;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.JOptionPane;
    public class Board extends JApplet
    // the grid used for storing the game layout.
    private int[][] grid;
    // the player whose turn it is.
    private int currentPlayer;
    public final int player1=1;
    public final int player2=2;
    private int place1=5;
    private int place2=5;
    private int place3=5;
    private int place4=5;
    private int place5=5;
    private int place6=5;
    private int place7=5;
    public static void main()
    int column1;
    int column2;
    String name1;
    String name2;
    Graphics g=new Graphics();
    Board test= new Board();
    boolean wait=true;
    while(wait)
    String starts=JOptionPane.showInputDialog("Are you ready? \n (yes or no)");
    starts.toLowerCase();
    if(starts.equals("yes"))
    wait=false;
    name1=JOptionPane.showInputDialog("Enter Player 1's Name");
    name2 = JOptionPane.showInputDialog("Enter Player 2's Name");
    test.paintBoard(true,g);
    while(!test.done() || !test.hasWon(g,player1) || !test.hasWon(g,player2))
    column1=0;
    while(column1>0 && column1<8)
    column1=Integer.parseInt(JOptionPane.showInputDialog(name1+" what column do you choose?"));
    test.place(player1, column1,g);
    if(!test.done() || !test.hasWon(g,player1))
    column2=0;
    while(column2>0 && column2<8)
    column2=Integer.parseInt(JOptionPane.showInputDialog(name1+" what column do you choose?"));
    test.place(player2, column2,g);
    public Board()
    // create the grid
    grid = new int[7][6];
    // initialize the gridc
    for (int row=0; row<6; row++)
    for (int column=0; column<7; column++)
    // set the position to a default value
    grid[column][row] = 0;
    public boolean done()
    boolean flags =true;
    for (int row=0; row<6; row++)
    for (int column=0; column<7; column++)
    if(grid[column][row] == 0)
    flags=false;
    return flags;
    public void paint(Graphics g)
    public void paintBoard(boolean flag, Graphics g)
    int index= 0;
    g.setColor(Color.YELLOW);
    g.fillRect(0, 80, 700,700);
    g.setColor(Color.WHITE);
    //draws spaces
    for(int y =100; y<700; y=y+100)
    for(int x =10; x<700; x=x+100)
    if(flag==false)
    index++;
    if(index%2==0)
    g.setColor(Color.RED);
    else
    g.setColor(Color.BLACK);
    else
    g.setColor(Color.WHITE);
    g.fillOval(x,y,80,80);
    TextField column =new TextField(10);
    if(flag==false)
    g.setFont(new Font("Times New Roman", Font.BOLD,24));
    g.setColor(Color.YELLOW);
    g.drawString("C",45,245);
    g.drawString("O",145,245);
    g.drawString("N",245,245);
    g.drawString("N",345,245);
    g.drawString("E",445,245);
    g.drawString("C",545,245);
    g.drawString("T",645,245);
    g.drawString("F",145,145);
    g.drawString("U",145,345);
    g.drawString("R",145,445);
    g.setColor(Color.BLUE);
    g.drawString("START",512,548);
    public void paintFinish(Graphics g, int player)
    int index= 0;
    g.setColor(Color.YELLOW);
    g.fillRect(0, 80, 700,700);
    g.setColor(Color.WHITE);
    //draws spaces
    for(int y =100; y<700; y=y+100)
    for(int x =10; x<700; x=x+100)
    index++;
    if(player==1)
    g.setColor(Color.RED);
    else
    g.setColor(Color.BLACK);
    g.fillOval(x,y,80,80);
    public boolean hasWon(Graphics g, int player)
    boolean status = false;
    // check for a horizontal win
    for (int row=0; row<6; row++)
    for (int column=0; column<4; column++)
    if (grid[column][row] != 0 &&
    grid[column][row] == grid[column+1][row] &&
    grid[column][row] == grid[column+2][row] &&
    grid[column][row] == grid[column+3][row] &&
    grid[column][row] == player)
    status = true;
    // check for a vertical win
    for (int row=0; row<3; row++)
    for (int column=0; column<7; column++)
    if (grid[column][row] != 0 &&
    grid[column][row] == grid[column][row+1] &&
    grid[column][row] == grid[column][row+2] &&
    grid[column][row] == grid[column][row+3]&&
    grid[column][row] == player)
    status = true;
    // check for a diagonal win (positive slope)
    for (int row=0; row<3; row++)
    for (int column=0; column<4; column++)
    if (grid[column][row] != 0 &&
    grid[column][row] == grid[column+1][row+1] &&
    grid[column][row] == grid[column+2][row+2] &&
    grid[column][row] == grid[column+3][row+3]&&
    grid[column][row] == player)
    status = true;
    // check for a diagonal win (negative slope)
    for (int row=3; row<6; row++)
    for (int column=0; column<4; column++)
    if (grid[column][row] != 0 &&
    grid[column][row] == grid[column+1][row-1] &&
    grid[column][row] == grid[column+2][row-2] &&
    grid[column][row] == grid[column+3][row-3]&&
    grid[column][row] == player)
    status = true;
    if(status)
    paintFinish(g, player);
    return status;
    public void place(int player, int column, Graphics g)
    int index=0;
    if(column==1)
    index=place1;
    if(column==2)
    index=place2;
    if(column==3)
    index=place3;
    if(column==4)
    index=place4;
    if(column==5)
    index=place5;
    if(column==6)
    index=place6;
    if(column==7)
    index=place7;
    grid[column-1][index]=player;
    if(player==player1)
    g.setColor(Color.RED);
    if(player==player2)
    g.setColor(Color.BLACK);
    g.fillOval((column*100)+10,(index+1)*100,80,80);
    if(column==1)
    place1--;
    if(column==2)
    place2--;
    if(column==3)
    place3--;
    if(column==4)
    place4--;
    if(column==5)
    place5--;
    if(column==6)
    place6--;
    if(column==7)
    place7--;
    }

    gamefreak1192 wrote:
    I am using an APPLET and i want to use JOptionpane it didnt work when i used it in the paint method. So i want to make a runner to make the program work. I don't know why the Graphics g = new Graphics isnt working PLEASE HELP. Email the revised code to my email at [email protected] URGENT FOR TOMORROW PLEASE HELP. should i have a spearate class for the runner, just email me please if you can help.
    This is bloody ridiculous. You want somebody to do your work for you, you can't be bothered to carry on a discussion here and ask for private email, and you expect somebody else to make your urgency (i.e. lousy time management) their problem. You got big brass ones, kid.

  • I am using NIPCI6229 card i want to generate 5 V in the digital ouput line . it has to be there in the output line only for 100ms please help me

    i am using NIPCI6229 card i want to generate 5 V in the digital ouput line . it has to be there in the output line only for 100ms please help me. aftwer 100ms it has to go to zero state

    hi,
     You can try generating 5V continously for 100ms in a loop later on you can make it low.
    Hope this helps you.

  • HT201270 i have just updated my old 3GS and now when i am on restore the window is comming up and asking for a password. i have not set up a password for restore, please help how i can restore my date???

    i have just updated my old 3GS and now when i am on restore the window is comming up and asking for a password. i have not set up a password for restore, please help how i can restore my date???

    capriz wrote:
    i have just updated my old 3GS ...
    To what... iOS 7 is Not supported on the 3 GS

  • My Bluetooth has disappeared and I have tried just about everything on the internet. When I click on Bluetooth file exchange it says hardware not found. I tried resetting everything as well nothing is working for me please help because now my facetim

    My Bluetooth has disappeared and I have tried just about everything on the internet. When I click on Bluetooth file exchange it says hardware not found. I tried resetting everything as well nothing is working for me please help because now my facetime doesn’t work neither does photo booth and now I cannot text people off my laptop unless they have iMessage.

    If you followed the instructions in the support article exactly (leaving the machine off for two minutes), then it has a hardware fault. Take it to an Apple Store or other authorized service provider for repair.

  • I'm unable to play game in hp 15-r009TU.. what can i do for this. please help me for this

    i'm unable to play game in hp 15-r009TU.. what can i do for this. please help me for this

    Hi Madhuama, I'll try to give you a hand with this. First off, what OS is running on your notebook, what game are you attempting to play, and how is it not working? Is it not installing?
    Thanks,
    Fenian Frank
    I work on behalf of HP

  • I cant save for web - please help me?!

    I cant save for web - please help me?!

    It says:
    "Could not complete this operation. An unknown operating system error has occurred."

  • I have a debit card but would like to download apps from the store. how do I do that? I can't possibly get a credit card just for this. please help.

    Hi,
    I have an iTouch. I'd like to download some free apps. but I have a debit card but would like to download apps from the store. how do I do that? I can't possibly get a credit card just for this. please help.

    I really do not think it is the iPad or your network connection. Other users have reported this very same issue. Try this and see if it works for you - it may not work - but it's easy to try - harmless - and it has worked in the past for others.
    Try signing out of your account and restart your iPad.
    Go to Settings>Store>Apple ID and tap the ID and sign out. Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button. Go back to Settings>Store> Apple ID and sign in again.

  • I am not able to sign in with my exisiting Apple id, every time it is asking for review, please help me

    i am not able to sign in with my exisiting Apple id, every time it is asking for review, please help me

    Use this link to Contact iTunes Customer Service
    Apple  Support  iTunes Store  Contact Us

  • I cannot see the Vidoe displayed on the screen, only hear the sound.  I am missing a component? Compressor, etc. I just downloaded the latest version of Quicktime for Microsoft, please help.

    I am not able to view my video taken with a memory card only the sound?  I am missing a component? Compressor, etc. I just downloaded the latest version of Quicktime for Microsoft, please help
    I can see it on Windows Media? Need help on this.

    It says SEDG 720X480 2:1 Mono.  Video came from Sd memory card taken with a Samsung Video Camera.
    Strangely enough, as a FourCC, SEDG is defined as "MPEG-4 hardware and software codec used in Samsung digital video products." Not a Windows or Samsung camcorder user but THIS WEB PAGE may be of some assistance.
    Also I will need to view a CD recorded by the same camera (DVD-RW) file extensions are VIDEO_RM.BUP
    VIDEO_TS.IFO, VIDEO_TS.VOB,  SAMSUNG.IFO  So far these files don't open even with Windows Media.
    I don't know what to do to be able to open up these files save them on my Hard drive and then be able to upload them to YouTube.  Any Ideas?
    IFO files tell how the video content is segmented and where the video data is located. BUP files contain back-up IFO information. VOB files contain actual multipled audio/video data. A DVD formatted to play in a commercial DVD player normally contains a series of files named "VTS##_#.VOB" where ## refers to the "title" series and "_#" (where # is not a zero) refers to the order in which the video title file data is played.
    Again, I am neither a Windows user nor an athority on Samsung VIDEO_RM folder structures. However, if your disc contains both a VIDEO_RM and VIDEO_TS folder, then I would normally assume the VIDEO_RM folder is present for legacy purposes and/or to provide information about the refording device while the VIDEO_TS folder actually contains the video object (VOB) file data. In any case, as I am not familiar with what software is available for muxed MPEG-2/AC3 editing/conversion on a Windows platform, I would try viewing the VOB files in an application like MPEG Streamclip (free). If you can play the Audio and video content (be sure to read the MPEG Streamclip requirements regarding codec installation), then you can edit (merge and/or trim) the raw data and convert it to a format compatible for YouTube uploading. (I.e., MPEG Streamclip is commonly used on the Mac for this type of work flow and the app is also available for Windows use.)

  • I try to make update for my iphone and start showing itunes need to be connected and never start and i connect my phone on itunes but it say need to be format for phone .please help me .

    I try to make update for my iphone and start showing itunes need to be connected and never start and i connect my phone on itunes but it say need to be format for phone .please help me .

    Hello Huss87bash,
    This screen indicates that the device is in recovery mode, and must be restored in iTunes before it can be used again.
    If you can't update or restore your iOS device
    http://support.apple.com/kb/HT1808
    Once the device has been restored, you should be able to restore your device from a backup to replace all of your content and settings.
    iOS: Back up and restore your iOS device with iCloud or iTunes
    http://support.apple.com/kb/HT1766
    Cheers,
    Allen

  • SIR I NEED TO UNLOCK MY IPHONE 4 FOR FREE PLEASE HELP ME HOW I DO THIS...........

    SIR I NEED TO UNLOCK MY IPHONE 4 FOR FREE PLEASE HELP ME HOW I DO THIS..........

    Call your carrier and request it is generally the best idea.
    <Edited By Host>

  • How can i get 5 apps for free,which APPLE is giving out to celebrate appstore 5th birthday please help please????

    in the iccasion of appstores 5th birthday apple is giving free apps to all.i dont know how to get them someone somebody please help me please.thankyou

    The apps that were under the 5 year of the App Store banner are no longer free. They are now, once again, for fee apps and that banner is gone from the store front. It was A limited time deal and appears to have ended. Those app developers were not going to give their apps away forever.

  • Help with rich black color for print project, please

    We are using CS5 photoshop to create a 3ft x 8 ft vinyl banner. We've never created something this large for print before.  Included layers are a black to white gradient, a black filigree graphic from DigitalJuice, and black text (that was created in Illustrator by someone else).  We set the project up using CMYK.  The printer informed us that we need to change the blacks to rich black (C50%, M40%, Y40%, K100%).
    How is this best done?  I can see how to change the color picker to the rich black %, but this doesn't appear to change the blacks in the project.  Is there a way to change them, or to export the project with rich blacks?
    Do we have to begin from scratch - and if so, how do we get the graphics and gradients to the rich black color settings.
    Any help will be greatly appreciated -

    In RGB mode I can't create non - rich black. For example if I set the color palette to CMYK, choose C=0%, M=0%,Y=0%, K=100%, fill the canvas with this color, and then measure the color with the eyedropper, the color reads C=70%, M=68%, Y=64, K=74%.
    This means that if your document is in CMYK mode and you have blacks that read C=0%, M=0%,Y=0%, K=100%, converting the document to RGB and then back to CMYK these blacks will become rich. Though the numbers of the rich black my vary depending on how your color management is set.
    Have in mind that the numbers above preserve the tonal intensity of non-rich black when converted to rich black. If you want the numbers your printer suggested they will be fine for elements like text and flat colors but for things like photo images this will intensify the blacks and will alter the tonal balance appearance which may be not what you want.

  • DNG converter won't open CR2 files for conversion: no items match your search [was: Please help!!!!]

    Hello, I am stressing out!! I have downloaded the DNG converter and whenever I try to click on the folder to convert it, it says no items match you're search, I can view the pictures in my desktop just not with the converter. I use windows 8 PC and the file type I'm trying to convert is CR2
    if anyone out there knows what's going on please help, I'm second shooting at a wedding next weekend so NEED it sorted by then the thought of a whole day shooting and no results isn't even worth thinking about!
    Thank you x

    Ok so it's a canon 1200d, it's the 8.7 version. And in using Lightroom 4, it's strange because the first time I plugged it in it worked and I managed to edit all my picture and now I've taken more pictures it doesn't seen to work.
    Sent from my iPhone

Maybe you are looking for

  • Query on Memory consumption of an object

    Hi, I am able to get information on the number of instances loaded, the memory occupied by those instances using heap histogram. Class      Instance Count      Total Size class [C      10965      557404 class [B      2690      379634 class [S      37

  • Airport choosing network during computer start up

    Initially, my computer would choose my network at home associated with my airport base station automatically when I turned it on. Now everytime I have to manually choose it after startup because it does not auto go to any. Not serious, but curious ab

  • Embedding Iweb page into Craigslist using mobile me link?

    I would like to embed an iweb page or and ad creating in Pages into a craigslist post. How can I do this so it looks like a nicely formatted webpage in my craigslist posting? I

  • PDF on DVD ROM

    Hello All, I am making a sales presentation DVD. I have three links, two are Quicktime movies that I have converted from Keynote, and I would like the third one to be a list of PDF files. When they click the link, I would like the file to open up in

  • When i crop an image then see it in computer it is not cropped

    Hi guys i captured an image in my iPhone 5 ( iOS 7 ) with Chrome filter then send it to my laptop by cabel but when i saw the image it is not Chrome filtered and then i test it for copping and it is the same not copped  in my laptop anyone can tell m