Question: how to find color temperature in a psd?

assume i assign a color temperature to an image, either in the camera or in bridge. how do i find that color temperature in the psd of the image?

Thanks for the quick and accurate response. in Win 7, CS5.5, it's file>file info, but i'm certainly not quibbling.

Similar Messages

  • How I find color of the pixel on the screen?, How I find color of the pixel on the screen?

    How I find color of the pixel on the screen?, How I find color of the pixel on the screen?

    DigitalColor Meter, in your Applications/Utilities folder.
    Regards.

  • HT204266 I forget the answer to the security question, how to find the answer?

    Dear all, I forget the answer to the security question, how to find the answer? Thanks

    1. See my User Tip for some help: Some Solutions for Resetting
        Forgotten Security Questions: Apple Support Communities.
    2. Here are two different but direct methods:
        a. Send Apple an email request at: Apple - Support - iTunes Store - Contact Us.
        b. Call Apple Support in your country: Customer Service: Contacting Apple for
            support and service.
    3. For other queries about Apple ID see Frequently asked questions about Apple ID.
    4. Rescue email address and how to reset Apple ID security questions
    5. For online assistance use Apple - Support - Express Lane

  • Newbie Question: How to find Forms/Reports Server Version

    Hello,
    Is there a way to easily find out what is the patchset installed for the Forms and Reports Server. I know that presently using AS 9i rel1 and Forms 6i, but how do you find out more information on the installed patches on Windows? thanks

    Please see these threads.
    how to find the developer version
    Re: how to find the developer version
    Report Builder version
    Re: Report Builder version
    Form patch set level
    Re: Form patch set level.
    Always search the forum before posting similar questions.
    Thanks,
    Hussein

  • MS/UNIX/DB question - How to find MS characters in Unix scripts.

    Hi. I apologise if this is a bit off-topic.
    We have been developing sql scripts on PC's but need to run them from UNIX. We are find Microsoft characters like double spaces followed by a dash convert into little squares and upside down question marks. etc.
    I can find them in the database using:
    SELECT description_text, dump(description_text)
       FROM descriptions
      WHERE regexp_like( description_text, '[^[:print:][:space:]]');And get things like "Adjustment � Service".
    In unix that might appear as "\266" in the middle of a text string. We find them in the db, fix them, and re-deploy.. but this is getting tiresome.
    I want to be able to repeatedly scan all sql scripts in Unix, including files in subdirectories. (there are literally hundreds..)
    We're running SunOS 5.10. I have tried "grep -r {266}" but the -r option isn't valid with my version of grep... :(
    Any suggestions about the easiest/most pragmatic way of doing this?
    Thanks in advance. :)
    Pete
    Edited by: peetmoore on 11-Aug-2009 19:51

    I couldn't get the shell script to work, so just kept playing with command line.
    The closest I have is:   find . -name "*.sql"  | xargs  grep 'xyz' Or using od: find . -name "*" | xargs | od -c | grep 'xyz' But i'm struggling a bit to identify and filter the specifc characters i'm looking for. They appear differently depending on how they're being viewed. (or not at all.) in some cases 2 spaces following by a dash " -" appeared as an update down question mark in Sql and "\266" in the unix script when viewed in vi. I don't have any current examples so it's hard to see what it looks like in od.

  • Simple question - How to find date

    Hi Experts,
    I have a simple question on date. Suppose today is Jan 4, 2010. I have to find out Jan 1, 2007 using Java code.
    I have used following code. This code will work for 2010 and 2011 properly. However it won't work properly after Feb 28, 2012. Please see "dayInMillis*1096 " portion of code. Here 365365366 = 1096.
    How I can avoid this hard coding. Do we have any simple way to get Jan 1, 2007 even without using following code.
         Calendar calendar = Calendar.getInstance();
         int lastDate = calendar.getActualMaximum(Calendar.DATE);
         int firstDate = calendar.getActualMinimum(Calendar.DATE);
         int todayDate = calendar.get(Calendar.DATE);
         int dayofyear = calendar.get(Calendar.DAY_OF_YEAR);
         java.sql.Date currentdate = new java.sql.Date(System.currentTimeMillis());
         long dayInMillis = 1000 * 60 * 60 *24; //1 day
         wdContext.currentContextElement().setFromDate(new Date(System.currentTimeMillis() - dayInMillis*1096 - ((dayofyear-1)*dayInMillis)));
    Please help.
    Regards,
    Gary

    Hi Gary,
    I am not pretty much clear with your question, whatever i have understood, i have found a way to get the previous date given the current date.
    Below is the code for the same.
                           Calendar now = Calendar.getInstance();//Jan 4, 2010
           String nowDateStr = DateFormat.getDateInstance().format(now.getTime());
           System.out.println("date now : " +nowDateStr);
           now.add(Calendar.YEAR, -3);//2007
           now.add(Calendar.DATE, -3);//1st
           now.add(Calendar.MONTH, 0);//No change in month, Jan.
           String changedDateStr = DateFormat.getDateInstance().format(now.getTime());
           System.out.println("date changed : " +changedDateStr);

  • Question:how to find administrator password using OSX?

    How can you find administrator password when you lose it caused by an error?

    Forgot Your Account Password
    For Lion/Mountain Lion
        Boot to the Recovery HD:
    Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
         When the menubar appears select Terminal from the Utilities menu.
         Enter resetpassword at the prompt and press RETURN. Follow
         instructions in the dialog window that will appear.
         Or see Reset a Mac OS X 10.7 Lion Password, OS X Mountain Lion- Reset a login password, and
         OS X Lion- Apple ID can be used to reset your user account password.
    For Snow Leopard and earlier with installer DVD
         Mac OS X 10.6- If you forget your administrator password
    For Snow Leopard and earlier without installer DVD
        How to reset your Mac OS X password without an installer disc | MacYourself

  • [SOLVED] Awesome WM autostart questions/how to find program "class"

    Hi there,
    Right so I'm using Awesome WM and want to auto start programs into specific tags.
    This is the code I have, and everything is working as expected:
    --Autostart Programs
    awful.util.spawn_with_shell("chromium")
    awful.util.spawn_with_shell("skype")
    awful.util.spawn_with_shell("spotify")
    -- {{{ Rules
    awful.rules.rules = {
    -- All clients will match this rule.
    { rule = { },
    properties = { border_width = beautiful.border_width,
    border_color = beautiful.border_normal,
    focus = true,
    keys = clientkeys,
    buttons = clientbuttons } },
    { rule = { class = "Chromium" },
    properties = { tag = tags[1][6] } },
    { rule = { class = "Skype" },
    properties = { tag = [1][3]} },
    { rule = { class = "Spotify" },
    properties = { tag = [1][4] } },
    So what I'm wondering is how do I find out what the class of programs for this section: "{ rule = { class = "  " },"?
    I installed Arch on my chromebook and I've been using a lot of the programs such as Evernote and Trello. I have the chrome app drawer (http://www.omgchrome.com/enable-chrome- … her-linux/).
    I created a shortcut and can auto launch programs such as evernote using the chrome app drawer using the command we can see from the desktop entry:
    awful.util.spawn_with_shell("/usr/bin/chromium --profile-directory=Default --app-id=lbfehkoinhhcknnbdgnnmjhiladcgbol")
    However, the issue is that it always opens on whatever tab I'm using. I cannot find the class to add to the rules.
    None of these work:
    { rule = { class = "chrome-lbfehkoinhhcknnbdgnnmjhiladcgbol-Default.desktop" },
    properties = { tag = tags[1][6] } },
    { rule = { class = "Evernote Web" },
    properties = { tag = tags[1][6] } },
    { rule = { class = "/usr/bin/chromium --profile-directory=Default --app-id=lbfehkoinhhcknnbdgnnmjhiladcgbol" },
    properties = { tag = tags[1][6] } },
    Any suggestions on what I can do to find the "class"?
    Last edited by Gwynplaine (2014-11-14 00:24:01)

    run 'xprop' in a terminal and your cursor will change to a cross.  Click anywhere on the app you want to identify and the class will be sent to the screen (along with a ton of other stuff)
    It's in the xorg-xprop pkg
    Last edited by oliver (2014-11-14 00:16:08)

  • Simple "Find" question -- How to find values in cells with formulas?

    Sorry if this is a stupid question but I don't find the answer. I have a table with values that are all computed via complex formulas. I want to FIND, say, when the value is 19. I can't find a way to do it: If I use the "find" command and type 19, the program finds when 19 is written INSIDE the formulas, e. g., it finds the cell where a formula is thus defined:
    =Table Correct Responses :: A19
    but does NOT find the cell with VALUE 19.
    Tried different syntax combinations without success. Any idea?
    Cheers,
    l.

    My two cents:
    Select the entire table.
    Cells Inspector.
    Define a rule like the one I uses here.
    It will highlight the cells whose value matches the condition.
    Yvan KOENIG (from FRANCE lundi 26 mai 2008 17:53:33)

  • JavaMail Question: How to find IP address of email sender?

    Hi,
    I currently have a program that fetches email from a pop3 server and processes the email text.
    I want to filter out emails to process based on IP address of the sender.
    Can you please tell me whether it is possible to obtain the IP address of the sender using JavaMail?
    If yes, how? If not, what else can I use?
    Thanks,
    nitrousFiz

    Fayezin wrote:
    I have checked the RECEIVED headers closely. It seems that the last IP is of my mail server, not my machine from which the email was sent. Excellent. You have done the experiment. Now you know what IP addresses you can get.
    Is there a way to get the sender's machine IP or do I have to settle for the email server IP?So you did the experiment. You have the results. They already told you the answer to that.
    Here's what you need: an understanding of e-mail's architecture. As you already know, it's the servers that send the messages around the Internet. The servers have their own ways of deciding whether to trust an e-mail client. They may use authentication or lists of approved relayers or something else, or they may blindly trust everyone, but it's up to the initial server to decide whether to trust a client.
    It is NOT up to the receiving server to decide whether to trust a client of another server. That's not its business. The receiving server only has the option of deciding whether to trust other servers. In particular your desire to process e-mails from specific locations only is in conflict with the basic architecture of e-mail.
    So, I don't know where that requirement came from but if it's really aimed at the client who is sending the e-mail then you can't do that. It would be best to go back and find out why you have that requirement and how that can be implemented within the existing e-mail architecture.

  • Duplicates question: how to find and eliminate both/all

    I've looked through this forum for an answer to this...sorry if it's already been answered, but I didn't see it.
    I need to be able to 1) find duplicates or multiples in a column and 2) delete both/all, not just one of those duplicates. So, for example, if I start with a column that has:
    A
    A
    B
    C
    C
    C
    D
    E
    E
    I want to be left with:
    B
    D
    I do NOT want to be left with:
    A
    B
    C
    D
    E
    Is there a way to do that? Again, sorry if it's been answered, but I couldn't find it, if so.

    Really easy.
    Assuming that the row 1 is an header one,
    in B1, enter:
    =IF(COUNTIF(A,A)=1,A,"")
    you will get what is shown by "Before"
    Select every cell
    activate Sort > using Column B > ascending
    you will get what is shown by "After"
    delete rows 2 thru 9.
    That's all folks
    Yvan KOENIG (from FRANCE dimanche 23 novembre 2008 16:52:44)

  • [iphone sdk] ABAddressBook question, how to find by numbers?

    I know there is a method to find by a certain name, but what if I wanted to find a contact that has a certain number? Looping through all the contacts and checking each would not be a good solution (people can have 1000+ contacts, with 3-4+ numbers each....)
    Thanks

    I had the same problem. My solution was quite hackish but it works pretty well. On load I drop a background thread that opens the address book, loops through all the contacts extracting the phone numbers and sticks them all in an easily searchable SQLite database. The whole operation takes under half a second for over 100 contacts so it's pretty reasonable. I limit it to running once every 3 days as well.

  • Very easy question - How to find out the first date of year

    Hi Experts,
    I have created Web Dynpro program. I have to set one field "start_date" as first date of year. For example if current date is 04/10/2009, then program should set value of field "start_date" as 01/01/2009.
    If suppose program is used on 12/12/2012, then program should set the value of "start_date" as 01/01/2012.
    Please peovide me some code.
    Regards,
    Gary

    Hi,
    This line should give you the current year.
    Calendar.getInstance().get(Calendar.YEAR);
    Prefix 01/01/ to this will give you the first day of that year.
    Thanks,
    Venkat

  • How to find roll off slope in PSD using labview?

    Dear friends,
                I found PSD for 8000 points.I need to find Roll off slope for that PSD for a particular region.

    continued here
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • How to find table with colum that not support by data pump network_link

    Hi Experts,
    We try to import a database to new DB by data pump network_link.
    as oracle statement, Tables with columns that are object types are not supported in a network export. An ORA-22804 error will be generated and the export will move on to the next table. To work around this restriction, you can manually create the dependent object types within the database from which the export is being run.
    My question, how to find these tables with colum that that are object types are not supported in a network export.
    We have LOB object and oracle spital SDO_GEOMETRY object type. our database size is about 300G. nornally exp will takes 30 hours.
    We try to use data pump with network_link to speed export process.
    How do we fix oracle spital users type SDO_GEOMETRY issue during data pump?
    our system is 32 bit window 2003 and 10GR2 database.
    Thanks
    Jim
    Edited by: user589812 on Nov 3, 2009 12:59 PM

    Hi,
    I remember there being issues with sdo_geometry and DataPump. You may want to contact oracle support with this issue.
    Dean

Maybe you are looking for

  • Why is my 4th generation iPod Shuffle not recognised by the new Itunes 11?

    Made the old mistake of "upgrading", this time to iTunes 11. I'm sure it is all very exciting and pretty and what have you, but as I can no longer see my device in iTunes it is all pretty pointless. Anyone else having this? Any solutions out there (a

  • Latest Server Update CAN'T COPY TO SERVER FOLDERS Error Code -36

    I've recently upgraded to the latest OS on my Mac Mini Server...which required an upgrade to the latest Mac Server. I have to say that it's been nothing but frustrations. Of all of them, one of the most lingering is issues with copying files to the s

  • SQL Loader (how to cut data header)

    Hi there, [oracle 11g] I got the following text file: mod; DD.MM.YYYY; HH:MM:SS; aligned src; "ptv "; "15.04.2012"; "10:47:49" chs; "ISO8859-1" ver; "V1.0" ifv; "V1.0" dve; "V1.0" fft; "LIO" tbl; MENGE_FGR atr; BASIS_VERSION; FGR_NR; FGR_TEXT frm; nu

  • Issue with Electroni bank statement

    Hi Gurus while uplaoding the EBS file i got the error message tht do not have authrorization for FB01, i was not tried to post any thing with FB01 but i understood that i this program might caled the FB01 transactin in back ground when i see the stat

  • No G/L account has been specified for T /EUR for the bank

    Hello to everyone. I am checking the transaction FBZP in bank determination and House banks and everything is ok. There are any place in customizing ??? Someone can show me the rute to arrive?? many thanx No G/L account has been specified for T /EUR