How to maintain colors through browsers?

I take an image with my DSLR and open it with the RAW plug-in. I change the color profile from Adobe RGB 1998 to sRGB and reduce the color depth from 16bit to 8bit. Everything is fine until I go to Save for Web...my colors are all washed out. I choose "ICC Profile" and save a jpg at Maximum. When I open the image in a browser like Safari, the image looks great, but if I bring the image into Flash or open it with Firefox, the image looks like it did in the 'Save for Web' dialogue (washed out).
To fix this, I'd been using the Monitor RGB Proof Setup to see the colors without a color profile. Someone the forums told me this wasn't the way. How can I preserve these colors for Firefox, Flash, and other places (that don't support profiles) the right way? Thanks!

Kevin,
>take an image with my DSLR and open it with the RAW plug-in. I change the color profile from Adobe RGB 1998 to
No, you don't. Raw files are not in any color space or color profile.
Whatever color space you set in your camera affects only JPEGs and is utterly irrelevant to raw files.
A raw file is just a very, very dark grayscale containing nothing that a human being could interpret or perceive as color. Again, your camera setting in this regard is irrelevant and is ignored by ACR.
The colors are generated during the demosaicing of the file when you open it in the raw converter (in this case ACR) according to algorithms designed and chosen by the developer of the conversion software (in this case Adobe) to provide a color rendition of the image. It is during this process that
you
, the user, selects the color space (color space) in which your image will be rendered.
You
select that in the ACR workflow options (blue links) that appear under your image preview in ACR.

Similar Messages

  • How to transfer data through browsers?

    Hi, here's a question that was with me since a year ago and that has never been solved: how can I transfer data throught browsers? For example, I currently have all the browsing data and bookmarks (included those on the bookmarks bar) on Google Chrome and I want to transfer all the information to Safari before I start using it, what can I do?

    Hi,
    If it is a constant field, and if it same for all the records then you can maintain it in 5th step (  5 Maintain Field Mapping and Conversion Rules) as 'X' for that check box and u no need to maintain the value in flat file.
    Let me know u r updates on this.
    Thanks,
    KSR

  • How to watch videos through browsers(E60)???

    I have a E60 that works perfectly so far but I have always faced one problem. How to watch some video that are offered in some webpages? I have tried using the two different browsers that are available on the phone.
    Thanks for your help

    You can find out which video file formats the E60 (and other Nokia models) support through this page:
    http://forum.nokia.com/video
    (There's a link to a table of support formats.)
    If the video you are trying to view is encoded in an unsupported format, all you can do is:
    - request the video creator to provide the video in another format that your phone supports
    - download it first to a PC and use a PC based video converter to get it to a format your phone supports

  • Through SharePoint Client Object model, how to make color coded events on Sharepoint Calendar

    Hi,
    Through SharePoint Client Object model, how to make color coded events on Sharepoint Calendar.
    Plese share your knowledge.
    Regards
    Tharak

    Hi,
    According to your post, my understanding is that you wanted to make a color events Calendar.
    We can achieve it using the OOB method by creating the Calendars Overlay.
    http://summit7systems.com/color-code-calendar-events-in-sharepoint/
    You can also use the JavaScript to achieve it.
    http://spsawyer.wordpress.com/2013/07/18/sharepoint-color-calendar/
    http://www.planetwilson.co.uk/sharepoint-2013-colour-calendar-v2/
    more reference:
    http://usermanagedsolutions.com/SharePoint-User-Toolkit/Pages/Color-Coding-Calendar-List.aspx
    http://blog.pathtosharepoint.com/2010/04/06/tutorial-add-color-coding-to-your-sharepoint-2007-calendar-in-15-minutes/#comment-7231
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • How to load color table in a indexed mode file??

    How to load color table in a indexed mode file??
    Actually, if i opened a indexed file and want to edit color table by loading another color table from desktop (or any other location), any way to do this through java scripting??

    continuing...
    I wrote a script to read a color table from a GIF file and save to an ACT color table file. I think it might be useful for someone.
    It goes a little more deeper than the code I posted before, as it now identifies the table size. It is important because it tells how much data to read.
    Some gif files, even if they are saved with a reduced palette (less than 256), they have all the bytes for the full color palette filled inside the file (sometimes with 0x000000). But, some gif files exported in PS via "save for web" for example, have the color table reduced to optimize file size.
    The script store all colors into an array, allowing some kind of sorting, or processing at will.
    It uses the xlib/Stream.js in xtools from Xbytor
    Here is the code:
    // reads the color table from a GIF image
    // saves to an ACT color table file format
    #include "xtools/xlib/Stream.js"
    // read the 0xA byte in hex format from the gif file
    // this byte has the color table size info at it's 3 last bits
    Stream.readByteHex = function(s) {
      function hexDigit(d) {
        if (d < 10) return d.toString();
        d -= 10;
        return String.fromCharCode('A'.charCodeAt(0) + d);
      var str = '';
      s = s.toString();
         var ch = s.charCodeAt(0xA);
        str += hexDigit(ch >> 4) + hexDigit(ch & 0xF);
      return str;
    // hex to bin conversion
    Math.base = function(n, to, from) {
         return parseInt(n, from || 10).toString(to);
    //load test image
    var img = Stream.readFromFile("~/file.gif");
    hex = Stream.readByteHex(img);      // hex string of the 0xA byte
    bin = Math.base(hex,2,16);          // binary string of the 0xA byte
    tableSize = bin.slice(5,8)          // Get the 3 bit info that defines size of the ct
    switch(tableSize)
    case '000': // 6 bytes table
      tablSize = 2
      break;
    case '001': // 12 bytes table
      tablSize = 4
      break;
    case '010': // 24 bytes table
      tablSize = 8
      break;
    case '011': // 48 bytes table
      tablSize = 16
      break;
    case '100': // 96 bytes table
      tablSize = 32
      break;
    case '101': // 192 bytes table
      tablSize = 64
      break;
    case '110': // 384 bytes table
      tablSize = 128
      break;
    case '111': // 768 bytes table
      tablSize = 256
      break;
    //========================================================
    // read a color (triplet) from the color lookup table
    // of a GIF image file | return 3 Bytes Hex String
    Stream.getTbColor = function(s, color) {
      function hexDigit(d) {
        if (d < 10) return d.toString();
        d -= 10;
        return String.fromCharCode('A'.charCodeAt(0) + d);
      var tbStart = 0xD; // Start of the color table byte location
      var colStrSz = 3; // Constant -> RGB
      var str = '';
      s = s.toString();
         for (var i = tbStart+(colStrSz*color); i < tbStart+(colStrSz*color)+colStrSz; i++) {
              var ch = s.charCodeAt(i);
              str += hexDigit(ch >> 4) + hexDigit(ch & 0xF);
          return str;
    var colorHex = [];
    importColors = function (){
         for (i=0; i< tablSize; i++){ // number of colors
              colorHex[i] = Stream.getTbColor(img, i);
    importColors();
    // remove redundant colors
    // important to determine exact color number
    function unique(arrayName){
         var newArray=new Array();
         label:for(var i=0; i<arrayName.length;i++ ){ 
              for(var j=0; j<newArray.length;j++ ){
                   if(newArray[j]==arrayName[i])
                        continue label;
              newArray[newArray.length] = arrayName[i];
         return newArray;
    colorHex = unique(colorHex);
    // we have now an array with all colors from the table in hex format
    // it can be sorted if you want to have some ordering to the exported file
    // in case, add code here.
    var colorStr = colorHex.join('');
    //=================================================================
    // Output to ACT => color triplets in hex format until 256 (Adr. dec 767)
    // if palette has less than 256 colors, is necessary to add the
    // number of colors info in decimal format to the the byte 768.
    ColorNum = colorStr.length/6;
    lstclr = colorStr.slice(-6); // get last color
    if (ColorNum < 10){
    ColorNum = '0'+ ColorNum;
    cConv = function (s){
         var opt = '';
         var str = '';
         for (i=0; i < s.length ; i++){
              for (j=0; j<2 ; j++){
                   var ch = s.charAt(i+j);
                   str += ch;
                   i ++;
              opt += String.fromCharCode(parseInt(str,16));
              str = '';
         return opt
    output = cConv(colorStr);
    // add ending file info for tables with less than 256 colors
    if (ColorNum < 256){
         emptyColors = ((768-(colorStr.length/2))/3);
         lstclr = cConv(lstclr);
         for (i=0; i < emptyColors ; i++){
              output += lstclr; // fill 256 colors
    output += String.fromCharCode(ColorNum) +'\xFF\xFF'; // add ending bytes
    Stream.writeToFile("~/file.act", output);
    PeterGun

  • How to maintain the material master data in plant

    Hi all,
    while creating BOM I am getting an error "no material master data in plant' can some one help me how to maintain the material master data in plant
    Regards,
    Balu

    Check the material available in MARC table in SE11 transaction against your plant.If it is not available please maintain through MM01 transaction.

  • How to change color in analytics chart designer

    Hi Guru's,
    Could any one tell me how the chart color can be customized by using chart designer.
    I need to change the category colors in the way High--> Red, Medium --->Yellow , Low ---> Green.
    Chart designer doesn't gave me the flexibility to change the category or point section color through that.
    Thanks
    Praveen Gupta

    Hi,
    check the properties of graph. I guess you can change the colors in properties.

  • How to change colors of individual column bar in the same data series

    in mac numbers, how to change colors of individual column bar in the same data series. The entire column series gets selected in the column bars and cannot select to change colors of specifc bars.

    Hi Kiran,
    no its not possible through Theme editor also ,because these colors are coming from Compiler which u are using.
    Regards,
    Govindu

  • How to maintain my Mac

    I'm trying to learn what kind of maintenance do I need to do on my iMac to keep it running good 

    How to maintain a Mac
    1. Make redundant backups, keeping at least one off site at all times. One backup is not enough. Don’t back up your backups; make them independent of each other. Don’t rely completely on any single backup method, such as Time Machine. If you get an indication that a backup has failed, don't ignore it.
    2. Keep your software up to date. In the Software Update preference pane, you can configure automatic notifications of updates to OS X and other Mac App Store products. Some third-party applications from other sources have a similar feature, if you don’t mind letting them phone home. Otherwise you have to check yourself on a regular basis. This is especially important for complex software that modifies the operating system, such as device drivers. Before installing any Apple update, you must check that all such modifications that you use are compatible.
    3. Don't install crapware, such as “themes,” "haxies," “add-ons,” “toolbars,” “enhancers," “optimizers,” “accelerators,” “extenders,” “cleaners,” "tune-ups," “defragmenters,” “firewalls,” "barriers," “guardians,” “defenders,” “protectors,” most “plugins,” commercial "virus scanners,” "disk tools," or "utilities." With very few exceptions, this stuff is useless, or worse than useless.
    The more actively promoted the product, the more likely it is to be garbage. The most extreme example is the “MacKeeper” scam.
    As a rule, the only software you should install is that which directly enables you to do the things you use a computer for — such as creating, communicating, and playing — and does not modify the way other software works. Use your computer; don't fuss with it.
    Never install any third-party software unless you know how to uninstall it. Otherwise you may create problems that are very hard to solve.
    The free anti-malware application ClamXav is not crap, and although it’s not routinely needed, it may be useful in some environments, such as a mixed Mac-Windows enterprise network.
    4. Beware of trojans. A trojan is malicious software (“malware”) that the user is duped into installing voluntarily. Such attacks were rare on the Mac platform until sometime in 2011, but are now increasingly common, and increasingly dangerous.
    There is some built-in protection against downloading malware, but you can’t rely on it — the attackers are always at least one day ahead of the defense. You can’t rely on third-party protection either. What you can rely on is common-sense awareness — not paranoia, which only makes you more vulnerable.
    Never install software from an untrustworthy or unknown source. If in doubt, do some research. Any website that prompts you to install a “codec” or “plugin” that comes from the same site, or an unknown site, is untrustworthy. Software with a corporate brand, such as Adobe Flash Player, must be acquired directly from the developer. No intermediary is acceptable, and don’t trust links unless you know how to parse them. Any file that is automatically downloaded from a web page without your having requested it should go straight into the Trash. A website that claims you have a “virus,” or that anything else is wrong with your computer, is rogue.
    In OS X 10.7.5 or later, downloaded applications and Installer packages that have not been digitally signed by a developer registered with Apple are blocked from loading by default. The block can be overridden, but think carefully before you do so.
    Because of recurring security issues in Java, it’s best to disable it in your web browsers, if it’s installed. Few websites have Java content nowadays, so you won’t be missing much. This action is mandatory if you’re running any version of OS X older than 10.6.8 with the latest Java update. Note: Java has nothing to do with JavaScript, despite the similar names. Don't install Java unless you're sure you need it. Most users don't.
    5. Don't fill up your boot volume. A common mistake is adding more and more large files to your home folder until you start to get warnings that you're out of space, which may be followed in short order by a boot failure. This is more prone to happen on the newer Macs that come with an internal SSD instead of the traditional hard drive. The drive can be very nearly full before you become aware of the problem. While it's not true that you should or must keep any particular percentage of space free, you should monitor your storage consumption and make sure you're not in immediate danger of using it up. According to Apple documentation, you need at least 9 GB of free space on the startup volume for normal operation.
    If storage space is running low, use a tool such as the free application OmniDiskSweeper to explore your volume and find out what's taking up the most space. Move rarely-used large files to secondary storage.
    6. Relax, don’t do it. Besides the above, no routine maintenance is necessary or beneficial for the vast majority of users; specifically not “cleaning caches,” “zapping the PRAM,” "resetting the SMC," “rebuilding the directory,” "defragmenting the drive," “running periodic scripts,” “dumping logs,” "deleting temp files," “scanning for viruses,” "purging memory," "checking for bad blocks," or “repairing permissions.” Such measures are either completely pointless or are useful only for solving problems, not for prevention.
    The very height of futility is running an expensive third-party application called “Disk Warrior” when nothing is wrong, or even when something is wrong and you have backups, which you must have. Disk Warrior is a data-salvage tool, not a maintenance tool, and you will never need it if your backups are adequate. Don’t waste money on it or anything like it.

  • How to Maintain Default materials for clearing house fee (IS Oil) O3RECH1

    Hi,
    I am an ABAPer. I have come accross one issue in Transaction O3RECH1 (Create CH Settlement/ Transmission).
    I am getting error. as No Material Exist. .. In debugging i came to know that material is empty since there is no data in field FEEMATNR  of table OIRECH_APPL.
    Table OIRECH_APPL --> SSR PC:  Clearing House application data  (IS-Oil SSR).
    In that there is one filed FEEMATNR --> SSR PC: Default materials for clearing house fee.
    Can any one please let me know How to maintain it.
    Answer will be rewarded.

    Interesting requirement. This can be achieved through Search String as suggested by Mr. Shanid.
    Try to find a text in the note to payee line for bank charges for creating a search string.
    For Example. See below note to payee line and assume this line for bank charges.
    16,455,130155,0,5/3 BANKCARD SYS  CH,,5/3 BANKCARD SYS  CHARGBACKS.
    Identify a text which should always come with this line for every EBS file for bank charges. Assume here "BANKCARD".
    Now go to T-code OTPM.
    Click on create
    Srch strg name:  Bank Charges
    Description:     Bank Charges
    Search String: BANKCARD ( Based on this text system will search your not to payee line)
    Once you press enter, you will get mapping details on the left side with target field "BANKCARD". Now remove the BANKCARD from target field and put there cost center which you will post for one house bank. Save the data.
    Now move to second step.
    Click on Search String Use.
    Put your company code,
    House bank(mandatroy in your case).
    Interpretation Algorithm( same as you maintained in OT83 for posting rule with external transaction type).
    Search String: BANKCARD.
    Target Field: Cost Center.
    Save.
    Sorry I am not getting option to attach screenshot in SCN now. Dont know why.
    Let us know if you have any doubts.
    Hi Mr. Shanid,
    Correct me if I am wrong.
    Regards,
    Mohammed

  • How to Maintain SLA in Complaint transaction

    Dear all,
    How to maintenance SLAs for CRM complaints transaction.
    Scenario:
    our client wants to store Complaint processing time in SAP. if complaint is coming through phone..it has to be addressed with in 1 day, if customer directly comes it has to be resolved with in 1 hour like that....
    can we map this in complaint transaction..How to configure this in SAP CRM?
    We are not maintaining Service Contracts per each customer in our system.
    Your suggestions are highly appreciated
    Thanks & Best regards
    Raghu ram

    Hi Ram, Thanks for the response but it is not clear to me. Please help me to understand the scenario in following concerns.
    1. When you say 'Service Master' is it a Service product master which need to be created for SLA's in CRM system?
    2. How to maintain duration details on basis of specific status in the transaction?
    3. If the given duration exceeds for a specific status...how to escalate it to next level?
    4. Is there any way of mapping this scenario instead of maintaining SLA as a product in the transaction?
    Kindly suggest...Your help will be greatly appreciated.
    Regards
    Raghu ram

  • How to maintain Document Type as Default in FB60

    Hi Gurus,
    How to maintain Document Types.
    I have a requirement in Transaction FB60 that Document Type should be Vendor Invoice as Defualt whenever i open this T.Code. (Now Cash Book - HO, coming as defualt in FB60).
    So please tell me from where i can make it as defualt Vendor Invoice...
    Is there any Trasaction for do this...
    Please tell me...
    Thanks & Regards...

    Solved Myself..
    Through SHD0 - Create Transaction Variant..

  • How to maintain calibration process in qm

    sir,
    i am new in qm module n and i m going to implement for qm module.
    so pl tell how i maintain qm configuration data n calibration process of qm.

    Hi
    It is a Huge data but Inshort I can tell you
    1.Create Equipment using IE01
    2.Create task list in IA01/IA05
    3.Create Maintainance plan using IP01
    schedule the equipment in the same with fix cycle.
    4.Schedule through IP30.
    Also In customization against PM order define the Inspection lot origin 14
    After scheduling Inspec lot of 14 will be created
    Then Do RR & DR
    This is how it will be used
    REgrads
    Sujit

  • How to maintain Customer distribution model in ALE

    hi FRIENDS..
      i wish to know what will be the transaction code of maintaining the customer distribution model, and how we maintain it.  and also distribute custome model in IMG sreen... please reply me...i will surely award you  nice points....
    bye...
    naim

    U can create/maitain distribution model using BD64.
    Or else u can create it using SALE transaction code.
    U need to give sender/reciver/msg type.
    ==============================================
    procedure:
    click on Create Distribution model button-->give the technical name
    select the DModel Technical name>add msgtype>
    it will ask sender/reciver/msgtype.
    pass those parameters and generate partner profiles through environment menu
    =================================
    to distribute a model view to partner syste,:
    Select mview
    edit>modelview>distribute
    Message was edited by: Eswar Kanakanti

  • How to maintain  a field in sm34

    hi  all,
    i'm unable  to populate the values in custom column, Actually  using  user exit i have added one field of name 'cost center' into the field catalog  but  i am not getting the values can anybody  tell me how to maintain field  in SM 34.
    Regards,
    rashmi

    <a href="http://">http://help.sap.com/saphelp_nw04/helpdata/en/a7/5133ac407a11d1893b0000e8323c4f/frameset.htm</a>
    go through the link  it was  step by step
    girish

Maybe you are looking for

  • Intermittant server error when trying to compile jsp.

              Hi,           I'm testing my jsp on different browser versions, and on different connection           speeds, and I'm finding a consistent problem with using weblogic v6.1sp1 and slower           connections. (about 56k)           In IE 5/5

  • Color bleeding on screen

    I often had the same problem with the computer going to sleep and the monitor not waking up. I have since gone to just shutting the monitor off at night. However, I am now finding an area in the upper right of the screen where the color looks darker

  • Why is the start-up time 5 minutes for Version 8?

    We installed LabVIEW 8 on 2 new PCs with Windows XP. On both machines the program needs 4 to 5 minutes to start. This is not acceptable.

  • Enabling ARCHIVELOG on windows

    Hi I'm on Oracle 10.2.0.4.0 running on MS Windows and following the instructions to put my database (ORCL) in ARCHIVELOG mode. It sounds like I need to perform the following to do this: ALTER SYSTEM SET log_archive_dest_1='LOCATION=E:\oracle\admin\OR

  • Can you drag photos/elements into PSE 9.0 on Mac

    hello, I just switched to a Mac and am using PSE 9.0. Can you drag photos or elements into the project bin? I can't seem to figure it out and it's frustrating me, I could just open my files in my computer on my PC and drag what I wanted in. How do yo