How to have posted images display as sRGB on wide-gamut monitors.

I understand an sRGB profile is necessary for  posting images but I need help on how to do that with Photoshop CS2 and  my new wide-gamut monitor (HP  LP2475w with Spider3Express  calibration). Before doing a "save for web" and posting, I "convert to  profile" to either "sRGB IEEE61966-2.1" or "sRGB with hardware  configuration derived from calibration" (it makes no difference which), but I  see then a significant color shift in the posted images when I view them  through Firefox 3.6 (with operating color management software -verified  on other posted images) and the same color shift with IE6 (which has NO color management software).  So,  Firefox is NOT RECOGNIZING my posted images with the sRGB profiles that  I thought I was embedding in them in Photoshop.  So my question boils  down to: WHAT EXACTLY DO I HAVE TO DO IN PHOTOSHOP SO FIREFOX WILL RECOGNIZE THE POSTED IMAGES AS sRGB and display them 'correctly' on wide-gamut monitors??
Thank you very much.
-Jeff

ISSUE RESOLVED.  Photoshop CS2 was not embedding an sRGB profile in  the images I was posting.  I needed to check the "ICC Profile" checkbox  in "save for web" to make that actually happen (after I did "convert to  profile" sRGB).
I also have switched to "Full Color Management" Value 1 (hidden) in Firefox 3.6 so that Firefox now assumes any untagged image is sRGB standard and then converts those, and all other  images which ARE tagged, to my calibrated monitor profile. This definitely looks to me like the way to operate with a wide-gamut  monitor although I understand it is still recommended to always tag images for  posting as sRGB and not embed any other profile for color consistency  over color accuracy.  At least if there are some out there with wider-gamut  tags, I should get some benefit.
Have I got it right ?
Thanks,
Jeff

Similar Messages

  • How to have multiple images on the same screen? like in the movies where you see several actions at

    how to have multiple images on the same screen? like in the movies where you see several actions at the same time ....
    i don't find  a tutorial in adobe tv....
    thanks !!

    The short answer is that you'll put the source clip(s) for each inset on a different video track, all stacked up. Then use the Scale and Position effects (under "Motion" on the Effect Controls panel) to reduce their size and place them where you want.
    If the content of an inset will involve edited content (where you're cutting among various clips or just trimming out unwanted content from a single clip), then you'll probably find it easier to do all those edits in one sequence, then nest that sequence in the master sequence, where you apply the Scale and Positioning effects. That will save the step of applying the scale and position effects to each edited track item.

  • HT202297 I just bought an ipad3 and I was wondering if anyone knows how to have my reminders displayed in my calendar? If it not possible on the iPad , is it possible on the iphone4s? if not, than does anyone know of any apps that make it convenient to do

    I just bought an ipad3 and I was wondering if anyone knows how to have my reminders displayed in my calendar? If it not possible on the iPad , is it possible on the iphone4s? if not, than does anyone know of any apps that make it convenient to do so?

    That's only for the iPhone 5. On the 4 and 4S, they can repair the back glass in store for $30. They will not replace the display on a 4 or 4S. They must replace the entire phone. Replacing the display on them requires disassembling the entire phone, which they will not do in store.

  • C3-00 how to have the image of the caller "bigger"...

    Please let me know when sombody call me, how to have the image of the caller bigger on the screen?
    Thanks a lot

    Please Help!

  • How dimension of the acutal display area( cm,inches) of the monitor can be found using flex?I need t

    how dimension of the acutal display area( cm,inches) of the monitor can be found using flex?I need the acutal area in term of cm or inches (width X height)

    You might be able to calculate it with Capabilities.screenDPI and Capabilities.screenResolutionX/Capabilities.screenResolutionY

  • RAW output to an adobe rgb and srgb look identical in bridge but different in PS on wide gamut monitor.

    Photoshop CS6.  Wide gamut HP LP2475w monitor.  Spider 3 Elite calibrated.  Working space adobe rgb.  When outputting a raw to Adobe RGB jpg it looks a bit whacked with color blotches/jumps in PS.  The sRGB of it does not.  BUT......in bridge they look identical.  The adobe rgb jpg almost acts like viewing an image in a non-color aware browser on a wide gamut monitor.  Like bridge shows it right but photoshop is showing it whacked out.  I can't tell what is lying to me and if there is even a problem with the image.  Here is a half second 2 frame gif alternating between the two from a screen cap.  http://www.extremeinstability.com/hmm.gif  Abrupt blotchy color changes with the adobe rgb when viewed in photoshop.  And again, when you look at the two images in bridge they don't show that, they look identical.
    Thanks,
    Mike

    I guess I now learned that Bridge only generates srgb previews.  So I see them the same in there I guess.  Looks like it comes down to the adobe space and jpg.  Oddly enough an 8 bit adobe tiff covers it fine without breaking up.  Can see the 3 on this gif.  http://www.extremeinstability.com/3.gif 

  • How to get poster image (from_movie) when placing SWF file with JS?

    I am able to place the poster from movie (flv) file. SWF files seems to belong to Movie class. I can place the generic posters (standard, none and proxy_image), but not "FROM_MOVIE".
    I am getting the following error message:
    "Error 81926" "The poster image could not be changed to the requested image".
    I will attach my code (sligtly modified from the sample "placeMOVIE" which is coming with CS5) containing also code for other property settings to be tested.
    Hoping to find a good solution for this, thanks in advance!
    Erkki
    /PlaceMovie.jsx
    //An InDesign CS5 JavaScript
    //Shows how to import a movie  file.
    main();
    function main(){
        mySetup();
        mySnippet();
        myTeardown();
    function mySetup(){
        var myDocument = app.documents.add();
        myDocument.viewPreferences.horizontalMeasurementUnits = MeasurementUnits.points;
        myDocument.viewPreferences.verticalMeasurementUnits = MeasurementUnits.points;
        myDocument.viewPreferences.rulerOrigin = RulerOrigin.pageOrigin;
    function mySnippet(){
        var myDocument = app.documents.item(0);
        var myPage = myDocument.pages.item(0);
        //<fragment>
        //Given a page "myPage"...
        var myFrame1 = myPage.rectangles.add({geometricBounds:[72, 72, 288, 288]});
        //Import a movie file (you'll have to provide a valid file path on your system);
        var myMovie = myFrame1.place(File("~/Desktop/SWFsivut/a1.flv"))[0];
        //alert("myMovie.name: " + myMovie.name)
        //alert("myMovie.visibleBounds: " + myMovie.visibleBounds)
        var mySWF_bounds = myMovie.visibleBounds;
        myFrame1.remove();
        var myFrame2 = myPage.rectangles.add({geometricBounds:mySWF_bounds});
        var myMovie2 = myFrame2.place(File("~/Desktop/SWFsivut/01.swf"))[0];
        //alert("myMovie2.name: " + myMovie.name)
        //alert("myMovie2.constructor: " + myMovie.constructor.name)
        //alert("myMovie2.moviePosterType (DEFAULT), 1852796517 = NONE" + myMovie.moviePosterType);
        //myMovie2.moviePosterType = 1852796517; //NONE
        //alert("myMovie2.moviePosterType, 1852796517 = NONE: " + myMovie.moviePosterType);
        //myMovie2.moviePosterType = 2020623970; //STANDARD
        //alert("myMovie2.moviePosterType, 2020623970 = STANDARD: " + myMovie.moviePosterType);
        myMovie2.moviePosterType = 1298558310; //FROM_MOVIE
        //alert("myMovie2.moviePosterType, 1298558310 = FROM_MOVIE: " + myMovie.moviePosterType);
        //myMovie2.moviePosterType = 1299216505; //PROXY_IMAGE
        //Add a preview image. You'll have to provide a valid path on your system.
        //myMovie2.posterFile = "~/Desktop/SWFsivut/a1.flv"; // this path works with colons !!!!
        //myMovie2.posterFile = "EkinHD/SWFsivut/01b.jpg"; // this path dont with slahes !!!!
        //alert("myMovie2.moviePosterType, 1299216505 = PROXY_IMAGE !!!: " + myMovie.moviePosterType);
        //</fragment>
    function myTeardown(){

    ... still continuation to my question...
    You can put the poster for SWF using UI Media panel as shown here. So does this mean that there is a bug in a scripting environment?

  • UREGENT: How to get a Image displayed on Canvas?

    Hi, my problem is: I have an image drew on Canvas, but I cannot access this image through Java, the image is there on Canvas, but I simply can't get that image.
    Anyone know how can I get an Image displayed on Canvas?

    Pt 1. > but I cannot access this image through Java, the
    Q1. > Anyone know how can I get an Image displayed on Canvas?
    From the axioms given, I would say that it is not possible. :)
    Why is it so UREGENT?

  • How do you post images in these forums

    I've been wondering for a while. How do you post like a screen shot on these forums (so I can better illustrate me questions.)

    Hi Caleb!
    How To Post Images In  Discussions
    Create a Screen Shot of the image you wish to post.
    Upload the image to an online storage facility, like one of these linked to below.
    Flickr
    ImageShack
    PhotoBucket
    Twango
    Then use HTML formatting, to insert the URL of the location.
    Use this format <img src="Insert URL Here">
    Keep the images small, and unobtrusive, when possible.
    You can also just post a Link/URL, to the image location, using this format:
    <a href="Insert URL Here">Type Title Here</a>
    Have Fun!
    ali b

  • How to solve the image display problem in the iTunes Store

    Hi guys!
    I just want to give a work-around for all of you having the image display problem in the iTunes Store. In my case only the square images in the slider sections won't load:
    I had this in my last W7-installation and got it again in W8 after the first few weeks.
    There are a lot of reports about this problem out there and adhoc solutions like 'clear the cache' or 'reinstall and drink ice tea' that do not work. It is obviously a file request error. It is all about finding out which server addresses get blocked by your computer.
    Solution: Go to your firewall and your Anti-virus-program. There must be a whitelist option. In Kaspersky, check the web-options, the banner-options and the firewall-options, because the all have whitelists. The following addresses have to be whitelisted:
    *.apple
    *.mzstatic.apple.com.akadns.net
    *.mzstatic.com.edgesuite.net
    *.da1.akamai.net
    *.itunes.apple.com
    se.itunes.apple.com
    upp.itunes.apple.com
    ax.init.itunes.apple.com
    xp.apple.com
    *.mzstatic.com
    client-api.itunes.apple.com
    www.apple.com.edgekey.net
    www.isg-apple.com.akadns.net
    Press Ctrl + R in the iTunes Shop then and browse throught the music sections. All images should be displayed correctly now.
    If not, there might be more Apple servers involved in your case. You can find them by running a DNS sniffing tool like the DNS query sniffer by Nirsoft or Wireshark.

    Phone restarting randomly could be loose battery. Tighten by putting a small strip of electrical tape on the back edge.
    THE BITTERNESS OF POOR QUALITY, LINGERS LONG AFTER THE CHEAPNESS OF PRICE, IS SOON FORGOTTEN.

  • How to get minimal Image Display VI

    I'm building a GUI for a multi camera ROV (Underwater Robot), and I want to include several live image feeds in the display.
    I can get the feeds to work, but I seem to be stuck using one of the two "Display Image" VI's on the Vision Pallet.
    These have a range of additional features that I don't want, and cant seem to turn completely off.
    eg: 
    -There is a "raised" area with border around the image that is just taking up real-estate.  I can't seem to reduce this to zero. (I've tried the new and classic vi)
    -There is a tool pallet which I don't want.  I have various "preview" windows that just need to be dumb displays.  The tools are not only unnecessary, but a problem is someone clicks on the image by accident.
    So.. Bottom line I'd like just a dumb minimal Image display window VI that I can feed with an IMAQ Image.ctl wire, and that accepts no user input.
    Is such a thing available?
    Phil.
    Get a life? This IS my life!
    Solved!
    Go to Solution.

    You can turn off scrollbars, tool palette, as well as Image Info string. Then just resize visible area over boders:
    See attachment
    Andrey.
    Attachments:
    Mini Vision Display.vi ‏34 KB

  • How do I save images into an sRGB color space?

    Hello,
    I'm trying to do this to a batch of images.  I'm not up to writing scripts.
    But I can't even convert one RAW image to an sRGB color space.
    Any thoughts?
    Much appreciated!
    Matt

    There's a link at the bottom-center of the Camera Raw dialog.  Click it and you'll be able to set the color space for output of the conversions.
    -Noel

  • Does the X1 Carbon have Intel Wireless Display? (Wi-Di, widi)

    I need to purchase several 2nd Gen X1 Carbon units, (4th Gen Intel Haswell Core i7 models - I'm thinking of the 20A7002WUS model)
    I cannot find anywhere that says that this model has Wi-Di.  (Intel Wireless Display)
    The wireless card in the model I'm looking at is the Intel Dual Band Wireless 7260AC and the specs of that card lists Wi-Di as being included. See here:  ark.intel.com/products/75439/Intel-Dual-Band-Wirel​ess-AC-7260
    I do find it strange that Lenovo doesn't list Wi-Di anywhere in the specs or product details for the X1 series.  I also know that OEMs customise wireless cards all the time, often disabling certain features.  I've found other forum posts here that suggest that Lenovo has disabled Wi-Di on the Intel wireless card.  I've also found other articles and reviews in various places that suggest that Wi-Di does work but I haven't seen anything conclusive.
    So - in short - does the X1 Carbon Core i7 20A7 series have Intel Wireless Display?

    The X1 Carbon 20A7 supports WiDi! Although haven't had a chance to try it on mine.
    Jonas
    Microsoft MVP: Windows Consumer Expert
    Yoga Tablet 2 10 || ThinkPad X1 Carbon (20A7007MPH) || ThinkPad Helix (3698-6EU) || IdeaCentre B540
    Twitter: @jonashendrickx

  • How to have a JComboBox display an item different from the one selected

    Hello,
    I have a JTable (single column). I have set this column cell editor to be a JComboBox...
    JComboBox stdComboBox = new JComboBox();
    TableColumn column_zero = stdTablewCombo.getColumnModel().getColumn(0);
            column_zero.setCellEditor( new DefaultCellEditor(stdComboBox) );I have added a lovString array say {"A", "B", "C") to this stdComboBox. However, when the user selects a value from this list, I need to display a value from another lovString array say {"1", "2", "3"}. So if the user selects A then 1 needs to be displayed.
    I have a TableModelListener on this table that is getting me the correct selected index for any of the JComboBoxes on any of the rows. But I am little lost on how to display the value from the 2nd list.
    Thanks.

    Yes...but do I do that in the TableModelListener ?
    This is what I've tried in the TableModelListener:
    public void tableChanged(TableModelEvent e)
             System.out.println(e.getSource());
               if(e.getType() == TableModelEvent.UPDATE)
                    TableModel model = stdTablewCombo.getModel();
                    int row = e.getFirstRow();
                    this.cellValue = ((String)model.getValueAt(row, 0));
                    if (cellValue != null)
                         this.selectedIndex = this.stdComboBox.getSelectedIndex();
                          System.out.println("Selected Index:" + this.selectedIndex);
                          if (this.selectedIndex >= 0)
                             String valueToSet = this.lovStringB[this.selectedIndex];
                             model.setValueAt(valueToSet, row, 0);
                          else
                               System.out.println("Value in cell is not from List");
                          }It returns the selectedIndex value allright.
    It sets the value of valueToSet string allright.
    it also does the model.setValueAt allright....but this triggers a tableChanged event and it goes back up - this is also fine. However, when it now comes back to the this.selectedIndex = , this again returns the index of the original selection and not a -1 (for values not in the ComboBox list). This makes it go into an infinite loop and gives me a StackOverflowError.
    Edited by: 799076 on Oct 10, 2010 9:41 AM
    Edited by: 799076 on Oct 10, 2010 9:49 AM

  • How to have all columns display in one go in RSA3

    i'm trying to extract the sales order item (2LIS_11_VAITM) thru RSA3 into flat file.
    However, the maximum number of columns is limited to 90 columns ( with a hundreds of hidden fields by default). I don't see the system provide you the user parameter where you can change the output list to ALV grid rather.  Please advise how can I have all the columns displayed in one go ( even if the column header too shorten is fines to me)?

    mask as unanswer

Maybe you are looking for