White background of image created in Photoshop prints as grey through iPhoto postal ordering service.

I have created an image in Photoshop with a white background (I stuck with the default white background that the new image gave me). Over the top of this, I placed some images, saved it as a JPG, imported it into iPhoto and ordered it as a postcard-sized picture.
When I received it in the post, the whole image had printed with a grey overtone: the white background was in fact grey, and the pictures over the top were darker.
How can I resolve this to print my image with a truly white background through iPhoto's ordering service?
Many thanks,
Adam

If unchecking the scene-referred profiles box clears the display problem in Photoshop, you most likely have hit a known bug with defective monitor profiling packages building defective monitor profiles that affect Photoshop and After Effects — specifically, the defective profile is erroneously marked as "scene referred."
Version 4 ICC Profiles: If your are using v4 printing profiles, try Googling for more information...some symptoms of this bug are Photoshop prints a light cyan or blue in the page white areas. The Fix is to use Version 2 printer profiles.
there is another old known issue that has to do with trying to Hard Proof simulate press conditions (printing cyan in whites) but i am not sure what you are trying and i can't recall it right now
if those aren't it upload these screenshots of your workflow:
show full Photoshop window including zoom% and Docuent Profile in lower left corner

Similar Messages

  • How can I convert an image created in Photoshop into a format that Java's ImageIO library will take?

    Hi all,
    I've been trying to write an image resize tool to use the Lancoz resample algorithm to resize images to a high standard in Java.  The library with the algorithm/filter in it is mortennobel's image scaling library and it takes a buffered image as an input and returns the resized image as desired.  However the trouble I’m having is that the ImageIO library in Java, a standard library, which converts images given to its read method to buffered images doesn't accept certain images created in Photoshop and so it throws an exception.  My library needs to be fully automated to process possible thousands of images at a time and so manually converting them by resaving them as JPEG's is really feasibly.  Is there some way I can convert these images from Adobes Exif format to standard JFIF format?  I've tried simple inserting the APP0 marker from a JFIF image in-between the SOI and APP1 marker but the ImageIO library still failed.
    The above image is a screenshot of the binary in hex of one of the images that cause an Invalid Format exception when passed to ImageIO.
    Any help you could offer me with this would be much appreciated.
    Kind regards and thank you,
    Alexei Blue
    Science Warehouse.
    NB: I previously posted this post in Developers but was told to post it in a Photoshop forum so apologies if this is the incorrect formum

    The image scaling library does have a BiCubicFilter in it so I'll experiment around with them and see what happens.  As for the imageIO library I think it accepts Exif image types, but still for some reason it just doesn't like Adobe Photoshop types.  Maybe its the colour map it doesn't like I just can't seem to work out what's wrong which is slightly frustrating but looking round to see if I can find an answer

  • Clicking an image created in Photoshop launches the program but...

    Not sure where else to ask this. There isn't a Photoshop area.
    New OS9 to OSX here. Going from Photoshop 6 (don't laugh) to CS1. When I click on an image created in Photoshop it launches the program but does not open the image. I have to either go into the "open" command and do it manually or do it by finding the document in my HD. Either way it's a drag and I suspect it's not the way it's supposed to be. It's a real time-loser.
    The only thing I can think of is it's because I'm clicking on an image that was created on my G3 using Photoshop 6. On the other hand it DOES launch the program so I am not exactly sure what is going on.
    Has anyone had the same experience?
    Thanks.

    What happens if you click on Get Info and "open with" and set the image type to always use CS1?
    Other thought would be to use Onyx or Tiger Cache Cleaner to update the "Launch Services" which is what connects and controls applications and document types.
    (Might even want to consider Pogue's "Mac OS X: The Missing Manual" or something.)
    Make sure you have Tiger compatible programs, don't have something installed which is not (Norton Utilities is out).
    Set up a new test account or even a test system on another drive. And use that for doing repairs. Word of caution: never update OS X without a backup of your system.

  • Order prints with border through iPhoto

    Is there a simple way to order prints through iPhoto's Kodak service and have them include a border?
    It seems in order to use the iPhoto print order service you need to have 1 click ordering turned on which only give you a single option of "Buy".

    The only way I've found is to use photos that have a border when viewed in iPhoto.
    I have a way that isn't that easy for a one-time but it works if you order frequently. I use Pages from iWork '08:
    # Go to Page Setup in a Pages blank document and create a 4x6 (or whatever size you order) custom page.
    # In Page Setup, choose this to be your page
    # Drop in an image from the Media window and size it as you would like
    # Define the image as a placeholder from the Format> Advanced menu
    # Save this as the template for your photo
    # Next time you need a photo with a border, just choose the template
    # Drop a photo into the photo that exists on the template, the new photo will replace the one in the placeholder
    # Print, then in the Print dialog choose Print PDF to iPhoto
    # A photo with a border is placed in iPhoto. Order that one.
    It's a pain for just a border, I know. But you can add text, graphics and inset photos and stuff to your Pages template and get a nice photo with custom artwork - at that point it's far less trouble than using the web-services that places offer.

  • Removing white background around image in Illustrator

    I used the custom shape tool in Photoshop to make a paw print and then took it into Illustrator and used the Live Trace tool to vectorize it (as the image will be used in an Illustrator file). Now I cannot figure out how to remove the white background from around it. I have a gradient behind the image and must have the white box removed from it. I'm sure the method is probably quite simple but I am rather new to Illustrator so would greatly appreciate any advice! Thank you!!

    leahzierke wrote:
    I used the custom shape tool in Photoshop to make a paw print and then took it into Illustrator and used the Live Trace tool to vectorize it (as the image will be used in an Illustrator file). Now I cannot figure out how to remove the white background from around it. I have a gradient behind the image and must have the white box removed from it. I'm sure the method is probably quite simple but I am rather new to Illustrator so would greatly appreciate any advice! Thank you!!
    Sounds a pretty crooked workflow. Create the paw as a a path in Photoshop, select it with the path tool, copy&paste it into Illustrator. Works much better and avoids all pitfalls. For your trace problem: Make sure to choose Ignore White.
    Mylenium

  • DrawImage takes long time for images created with Photoshop

    Hello,
    I created a simple program to resize images using the drawImage method and it works very well for images except images which have either been created or modified with Photoshop 8.
    The main block of my code is
    public static BufferedImage scale(  BufferedImage image,
                                          int targetWidth, int targetHeight) {
       int type = (image.getTransparency() == Transparency.OPAQUE) ?
                        BufferedImage.TYPE_INT_RGB :
                        BufferedImage.TYPE_INT_RGB;
       BufferedImage ret = (BufferedImage) image;
       BufferedImage temp = new BufferedImage(targetWidth, targetHeight, type);
       Graphics2D g2 = temp.createGraphics();
       g2.setRenderingHint
             RenderingHints.KEY_INTERPOLATION, 
             RenderingHints.VALUE_INTERPOLATION_BICUBIC
       g2.drawImage(ret, 0, 0, targetWidth, targetHeight, null);
       g2.dispose();
       ret = temp;
       return ret;
    }The program is a little longer, but this is the gist of it.
    When I run a jpg through this program (without Photoshop modifications) , I get the following trace results (when I trace each line of the code) telling me how long each step took in milliseconds:
    Temp BufferedImage: 16
    createGraphics: 78
    drawimage: 31
    dispose: 0
    However, the same image saved in Photoshop (no modifications except saving in Photohop ) gave me the following results:
    Temp BufferedImage: 16
    createGraphics: 78
    drawimage: 27250
    dispose: 0
    The difference is shocking. It took the drawImage process 27 seconds to resize the file in comparison to 0.78 seconds!
    My questions:
    1. Why does it take so much longer for the drawImage to process the file when the file is saved in Photoshop?
    2. Are there any code improvements which will speed up the image drawing?
    Thanks for your help,
    -Rogier

    You saved the file in PNG format. The default PNGImagReader in core java has a habit of occasionally returning TYPE_CUSTOM buffered images. Photoshop 8 probably saves the png file in such a way that TYPE_CUSTOM pops up more.
    And when you draw a TYPE_CUSTOM buffered image onto a graphics context it almost always takes an unbearably long time.
    So a quick fix would be to load the file with the Toolkit instead, and then scale that image.
    Image img = Toolkit.getDefaultToolkit().createImage(/*the file*/);
    new ImageIcon(img);
    //send off image to be scaled A more elaborate fix involves specifying your own type of BufferedImage you want the PNGImageReader to use
    ImageInputStream in = ImageIO.createImageInputStream(/*file*/);
    ImageReader reader = ImageIO.getImageReaders(in).next();
    reader.setInput(in,true,true);
    ImageTypeSpecifier sourceImageType = reader.getImageTypes(0).next();
    ImageReadParam readParam = reader.getDefaultReadParam();
    //to implement
    configureReadParam(sourceImageType, readParam);
    BufferedImage img = reader.read(0,readParam);
    //clean up
    reader.dispose();
    in.close(); The thing that needs to be implemented is the method I called configureReadParam. In this method you would check the color space, color model, and BufferedImage type of the supplied ImageTypeSpecifier and set a new ImageTypeSpecifier if need be. The method would essentially boil down to a series of if statements
    1) If the image type specifier already uses a non-custom BufferedImage, then all is well and we don't need to do anything to the readParam
    2) If the ColorSpace is gray then we create a new ImageTypeSpecifier based on a TYPE_BYTE_GRAY BufferedImage.
    3) If the ColorSpace is gray, but the color model includes alpha, then we need to do the above and also call seSourceBands on the readParam to discard the alpha channel.
    3) If the ColorSpace is RGB and the color model includes alpha, then we create a new ImageTypeSpecifier based on an ARGB BufferedImage.
    4) If the ColorSpace if RGB and the color model doesn't include alpha, then we create a new ImageTypeSpecifier based on TYPE_3BYTE_BGR
    5) If the ColorSpace is not Gray or RGB, then we do nothing to the readParam and ColorConvertOp the resulting image to an RGB image.
    If this looks absolutely daunting to you, then go with the Toolkit approach mentioned first.

  • Why can't LR read HDR images created in Photoshop CS4ext?

    I recently created an HDR image out of two images in CS4 extended for use in a slide show I produced in LR.  However, LR cannot read or import any HDR images from CS4 ext. Now what?  LR will read any other image edited in CS4 ext. but not any HDR image created in the same program! Any ideas anyone?  I have tried changing color spaces and TIFF settings. I have tried to import it as both a TIFF and a PSD image. Absolutely nothing works.  And does anyone have any idea why Photoshop cannot export an image as a JPEG?  We pay enough for these programs as it is, and it can't even handle this simple basic routine?

    does anyone have any idea why Photoshop cannot export an image as a JPEG?
    You first need to downsample to 8-bits before you can save as jpeg (image->mode->8bits/channel).
    I have tried changing color spaces and TIFF settings. I have tried to import it as both a TIFF and a PSD image. Absolutely nothing works.
    You probably are still in 32-bit/channel linear. You need to downsample to 16 or 8 bits, otherwise Lightroom cannot read the tiff or psd. So you need to tone map using one of the HDR conversion options you will see when selecting 16 or 8 bits.

  • HT2493 New files created in Photoshop have no icons (i.e., the image created in Photoshop)

    When I created images today in Photoshop and saved the files, no icon would display. When I went to the get info for the file, it did not seem possible to add an image as the icon--no type of icon at all appeared at the top of the get info panel.

    i opened a fine in PSCS 13.1.2.I edited it a bit, converted a layer to a SO and used liquify on that layer.
    I saved it as a tiff. Did not try it as a psd.
    PSCS5 opened the tiff without complaint, including the SO+liquified layer. When i clicked on the liquify at bottom of the SO layer to try to edit it I got the notice "CANNOT FIND THE FILE", or something like that.
    So, I guess pscs5 is already done for.
    vince

  • Blank white background (no underlying grid) so i can remove grey lines

    i am sure this has come up before but i wasn't sure how to search for an answer.
    when i leave my spreadsheet alone for awhile it seems like the spreadsheet will show with a blank white background - no grey lines showing the underlying grid - and this view has let me see that there are some cells where i /accidentally/ have thin grey lines where they shouldn't be (it should just be blank). the problem is that if i click in the spreadsheet it automatically shows the grey /underlying/ grid and then i cannot see the thin lines.
    is there a way to get rid of the underlying grid temporarily so that i can get rid of these?
    i looked in the View pulldown and i don't think i saw anything appropriate.
    thank you

    Make sure that you do not run Firefox in (permanent) Private Browsing mode.
    *https://support.mozilla.org/kb/Private+Browsing
    *Tools > Options > Privacy > Firefox will: "Use custom settings for history"
    *Deselect: [ ] "Always use private browsing mode"
    You can check for problems with preferences and try to rename or delete the prefs.js file and possible numbered prefs-##.js files and a possible user.js file to reset all prefs to the default values.
    *http://kb.mozillazine.org/Preferences_not_saved
    *http://kb.mozillazine.org/Resetting_preferences
    Try to boot the computer in Windows Safe mode with network support (press F8 on the boot screen) as a test to see if that helps.
    A possible cause is security software (firewall,anti-virus) that blocks or restricts Firefox or the plugin-container process without informing you, possibly after detecting changes (update) to the Firefox program.
    Remove all rules for Firefox and the plugin-container from the permissions list in the firewall and let your firewall ask again for permission to get full unrestricted access to internet for Firefox and the plugin-container process and the updater process.
    See:
    *https://support.mozilla.org/kb/Server+not+found
    *https://support.mozilla.org/kb/Firewalls

  • Placing images created in Photoshop of Fireworks removes their transparency - how to resolve?

    I am designing a logo in Illustrator and have been using Photoshop and Fireworks to edit some photographs which form part of the logo.  These photographs are basically of musical instruments and two lions and I've used the rubber tool in Photoshop/Fireworks to cut out the shape of the instrument/lion and leave a transparent background.  I've then done a colour fill on the photograph so that it is a single solid colour shape.  I save this file, either as a PSD or PNG, and then place it in Illustrator using File > Place.
    However, when I cut and paste the logo from Illustrator into InDesign any images that I've been working on in Photoshop / Fireworks have suddenly lost the transparent background they had and instead are displayed as the single solid colour shape but surrounded by whitespace.
    How do I resolve this?  Should I be saving it a particular way in Illustrator in order to make all whitespace in the Illustration transparent?  Or is File > Place the wrong way to import graphic elements?
    Also, is there a way to colour fill the imported images?  At present I  have to jump back out to Photoshop to change the colour and then AI picks up on the save and updates the graphic - it would be nice if I could do that all within Illustrator.
    Appreciate the advice.  Thank you.
    NJ

    Sorry, completely new to Illustrator.
    Let's start from the beginning...the background (page) of Illustrator is white.  I can't seem to get it to be transparent so I'm assuming that white is the default and you should just know that it's transparent?
    Anyway, I created a logo against this white backdrop.  I then wanted some solid colour graphic elements (musical instruments and a coupe of lions) as part of the logo so I opened up some photographs I had of musical instruments in Photoshop, used the eraser tool to remove all but the instrument then did a colour fill on the remaining image so that I had a single colour fill instrument shape.  I saved as .PSD.
    In Illustrator I did a File > Place to insert the above graphics into my Illustrator logo design.
    1) Is it possible to do this colour fill in Illustrator because at the moment any time I want to change the colour of the instrument of lion graphics I'm having to go into Photoshop, change the colour there, save, and then wait for Illustrator to update.
    2) Rather than my "dumb" (how rude!) copy and paste procedure what is the best way to get the completed logo into InDesign?  File > Place and select the Illustrator file?
    Thank you Mylenium.
    NJ

  • Need Transparent background for video created from Photoshop Imageready

    I created a
    a man in imageready walking across the screen with a transparent background. I exported as an .mov like I normally do and converted to a
    n F4v. But when placed in ID, the video displays with a black BG. Can anyone help? thanks

    to get the transparent effect, you actually code it into the
    surrounding .html using "wmode=transparent" Google that and you
    should fine a tutorial. Remember that when you actually put in
    wmode and its value that you need to paste it in there twice (just
    like all the other tags that are already there).

  • How can I manually operate a PDF file of images created in Photoshop?

    As it is now, they zip by automatically when I try to project them, much too fast.  There must be some way of controlling them on the keyboard?  I can speed them up with < and > but can't hold them still.  Thanks.

    Thanks, George.  Wish that were the whole solution.  I found the controls you described, made changes, but it worked for only one out of two PDF shows--the other refuses to change the timing, in spite of all my tinkering with different levers.  One of those computer mysteries, and why users get ulcers, I guess.

  • Solutions for processing images in LR, then printing as cards through ID?

    Hello,
    Might anyone have experience with processing photographs in LR CC, then printing from ID CC through an inkjet printer? I thought it wouldn't be such a big deal, but am finding my colors are not holding true. What I see in Lightroom is nice on screen and if I print a single card through LR it looks nice. Export the same image as a tif or jpg and print it on the same paper stock through InDesign and the image is not correct. I am selecting the same color profile for the paper stock in each program. Somewhere I am overlooking a detail or two that really matters. Might anyone have a short list of items I must coordinate or synchronize between the two applications?
    John

    7. Feb 16, 2012 6:05 PM (in response to b_gossweiler) 
    Re: Preference for Processing RAW in LR or PS Camera Raw
    In any event even if you choose to edit the original in PS, as I believe you should be able to do you will still end up with a Tiff, PSD or jpeg file when you have finished your work in PS. Then why are you using Lightroom? This will have a bearing on the advice you will get.
    Like I said above, LR and PS both serve specific functions, and yes they do overlap in some areas, and I yes do use both in my workflow.  PS isn't a cataloging program.  LR doens't have layers and sucks at complex editing tasks.  There's 2 reasons i use both, amoung many many others. 
    The point of my question is that i don't want LR creating and saving PSD files on my hard drive when i don't need a PSD of that specific photo.  You use to be able to make LR open a raw file in PS and use ACR to processs it.  That meant you could close the raw file in Photoshop, and nowhere along the way was a PSD file, or any other file saved.

  • Images with white backgrounds are grey - macbook pro

    When I create an image in photoshop or save an image from the internet with a white background, when I save it, it comes out grey. Photoshop says it's white (#ffffff) but it's not.
    For example I made a banner with a white background on photoshop for my blog, which has a white background. But when I saved the image and uploaded it, the background of the image is grey and you can see the difference. How do you get it to be white again?

    Took a few more photos, completely dark. It's more apparent when you're looking directly at it. These blemishes are perfectly aligned and centered from each other. The bleeding around the edges seems normal, but also displays large shadows and along other areas the bleeding transitions into the shadow.
    Unfortuneately where I live there is no Genius bar to get this taken care of directly and once and for all. The display clearly needs to be replaced and a manufacturer defect, but the "Mac" service guys locally claim the defect is "barely" visible and accused me of causing the damage and claiming the blemish is above certain keys on the keyboard that cause it. Whichever. This MBP has had issues since the day it was purchased, logic board replaced, battery replaced, ultra drive replaced, etc... etc... this is becoming very annoying when I'm writing my Psychology papers for class. 
    I've been very patient with AppleCare each time I call, but I'm not receiving any support from Apple regarding this issue. Ridiculous!

  • White background for portrait, How?

    Hello dear people,
    I have a simple question: How do I get a perfect white background for a portrait/headshot?
    Jan Wind

    If you are talking about removing the existence background and then placing it in white background, then just use the photoshop pen tool to select the image and then apply clipping path technique here. Hope it works for you.

Maybe you are looking for

  • Preview zoom preference

    Hi, Does anyone know if there is anyway to get preview to remember my zoom preference, I'm trying to read pdf documents in the full screen view at 1 page per screen, and each time I flip to the next page it reverts to zoom to fit (which is useless fo

  • Will youplease cancel my purchase of Adobe ExportPDF?I have paid an annual to Dec. 31,2013.

    On July 19, 2013 I mistakenly sent a subscription for Adobe ExportPDF. The Order Number is AD008673137 and the amount is $21.29. I already have that software on my computer with an annual paid for period December 31, 2012 to December 31, 2013. That's

  • Ess_japi.jar files for Essbase 11x version

    Hi All, We are working on upgrade Essbase upgrade from 7x version to 11x and found there is an ess_japi.jar file which is being used for Web based application. Do we need to get the new version of the JAR files for the 11X version? Thanks and regards

  • Use IIS 7 (Microsoft) with Adobe Media Server Extended 5.0

    I install Adobe Media Server Extended 5.0 and Flash Media Live Encoder 3.2. Good running. But I want use IIS 7 (Microsoft) replace Apache 2.2. Help me config to run <moved by mod from downloading,installing,setting up - kglad>

  • Error when recording from Siebel 7.5

    I have been attempting to record step/actions from Siebel 7.5 using OnDemand Developer 9.1.0 (Build 9.1.0.3230), with IE version 6.0.2900.5512. It was working fine but then it forced my PC to shut down and restart. Since then everytime I attempt to r