Photoshop Elements 8, how to show the value, the hue and saturation of a specific area of a pickture?

Hello

Photoshop Elements 8, how to show the value, the hue and saturation of a specific area of the image?

How to choose the area? Which tool?

Thank you in advance, Karl

Make sure first that your range of information is visible: window menu / Info (shortcut F8)

In this palette, click the small icon 'more '.

Select "Palette Options".

and choose HSB to second reading of palette.

Tags: Photoshop

Similar Questions

  • [JS] How to show the label and the name of the object?

    Hello.

    This image is FrameLabel SDK sample.

    I want to show the label and the name that I set as image.

    For example,.

    App.Selection [0] .label = "label";     App.Selection [0] = [TextFrame object]

    App.Selection [0]. Name = "name";

    What is show and code to set property?

    You can not via JS, unless first do you a plugin to c ++ as that in the SDK and make it scriptable.

  • How to get the days and months when two dates are given

    Hi all

    I have a requirement where I need to return the number of months and days between two given dates.
    I have no need to take account of the year as the difference in dates is always less than a year

    I have 28 June 2012 and January 31, 2013, as dates.

    I'm working on 10g

    When I select the double months_between(:a,:b) and provide the dates he gives me 7.09677
    I want to give only 7 months and 9 days, or what ever the exact days are.

    Your contributions are appreciated

    Try this:

    WITH t AS
    (SELECT TO_DATE('28-JUN-2012', 'DD-MON-YYYY') date1, TO_DATE('31-JAN-2013', 'DD-MON-YYYY') date2 FROM dual)
    SELECT TRUNC(MONTHS_BETWEEN(date2, date1)) months,
           date2 - ADD_MONTHS(date1, TRUNC(MONTHS_BETWEEN(date2, date1))) days
    FROM   t
    
  • align the JLabels and JTextFields vertically in different areas

    I have 3 TitledBorders to 3 different areas of my frame.
    Each region has its own components - JLabels, textfield, etc..
    How to align the JLabels and JTextFields vertically in different areas?
    for example, for the following test program, how to configure label1, label2, label3 so that their right sides all align them vertically and
    TF1, tf2, tf3 so that their left ribs all line up vertically?
    import java.awt.GridBagConstraints;
    import java.awt.GridBagLayout;
    import java.awt.GridLayout;
    import java.awt.Insets;
    
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    import javax.swing.JTextField;
    import javax.swing.border.TitledBorder;
    
    public class TitledBorderDemo extends JFrame {
      public TitledBorderDemo() {
        super("TitledBorderDemo");
    
        JTextField tf1 = new JTextField("hello", 6);
        JTextField tf2 = new JTextField("hello", 12);
        JTextField tf3 = new JTextField("test");
        JTextField tf4 = new JTextField("test2");
    
        JLabel label1 = new JLabel("1234567890ertyuiyup label");
        JLabel label2 = new JLabel("zzzzzzzzzzzzzzzzzzzzzzzzzzzzzz long label");
        JLabel label3 = new JLabel("short label");
        JLabel label4 = new JLabel("test");
    
        JPanel panel_tf = new JPanel(new GridBagLayout());
        JPanel panel_pf = new JPanel(new GridBagLayout());
        JPanel panel_ftf = new JPanel(new GridBagLayout());
        
        GridBagConstraints constraints = new GridBagConstraints(0, 0, 3, 3,
                0.0, 0.0, GridBagConstraints.WEST, GridBagConstraints.NONE,
                new Insets(10, 10, 10, 10), 0, 0);
    
        constraints.gridx = 0;
        constraints.gridy = 0;
        constraints.gridwidth = 2;
        constraints.anchor = GridBagConstraints.WEST;
        panel_tf.add(label1, constraints);
        
        constraints.gridx = 2;
        constraints.gridwidth = 1;
        constraints.anchor = GridBagConstraints.EAST;
        panel_tf.add(tf1, constraints);
    
        constraints.gridx = 0;
        constraints.gridy = 1;
        constraints.gridwidth = 2;
        constraints.anchor = GridBagConstraints.WEST;
        panel_pf.add(label2, constraints);
    
        constraints.gridx = 2;
        constraints.gridwidth = 1;
        constraints.anchor = GridBagConstraints.EAST;
        panel_pf.add(tf2, constraints);
        
        constraints.gridx = 0;
        constraints.gridy = 2;
        constraints.gridwidth = 2;
        constraints.anchor = GridBagConstraints.WEST;
        panel_ftf.add(label3, constraints);
    
        constraints.gridx = 2;
        constraints.gridwidth = 1;
        constraints.anchor = GridBagConstraints.EAST;
        panel_ftf.add(tf3, constraints);
    
        constraints.gridx = 3;
        constraints.gridwidth = 1;
        constraints.anchor = GridBagConstraints.WEST;
        panel_ftf.add(label4, constraints);
    
        constraints.gridx = 4;
        constraints.anchor = GridBagConstraints.EAST;
        panel_ftf.add(tf4, constraints);
    
    
        panel_tf.setBorder(new TitledBorder("JTextField1"));
        panel_pf.setBorder(new TitledBorder("JTextField2"));
        panel_ftf.setBorder(new TitledBorder("JTextField3"));
    
        JPanel pan = new JPanel(new GridLayout(3, 1, 10, 10));
        pan.add(panel_tf);
        pan.add(panel_pf);
        pan.add(panel_ftf);
        this.add(pan);
      }
    
      public static void main(String args[]) {
        JFrame frame = new TitledBorderDemo();
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setSize(600, 450);
        frame.setVisible(true);
      }
    }

    I forgot how tedious GBL can be straight out of the box, since I usually use a helper class that I wrote for the work of constraints (a common approach).

    Anyway, here's a sample program ussing the technique I described previously. Note the horizontal on the panels of 1st and 3rd spacers that are used to "take out" the text fields so they line up on the left with the text of Group 2 field. I also added some glues at the end of these panels to make each Panel to fill in the same width.

    import java.awt.*;
    
    import javax.swing.*;
    import javax.swing.border.*;
    
    public class TitledBorderDemo extends JFrame {
      public TitledBorderDemo() {
        super("TitledBorderDemo");
    
        JLabel nameLabel = new JLabel("Name");
        JTextField nameText = new JTextField(20);
    
        JLabel addressLabel = new JLabel("Address (City & State)");
        JTextField addressText = new JTextField(40);
    
        JLabel phoneLabel = new JLabel("Phone");
        JTextField phoneText = new JTextField(20);
    
        int longWidth = addressLabel.getPreferredSize().width;
    
        GridBagConstraints constraints = new GridBagConstraints();
    
        //--------------------
    
        JPanel p1 = new JPanel(new GridBagLayout());
        p1.setBorder(createBorder("Name"));
    
        constraints.gridx = 0;
        constraints.gridy = 0;
        constraints.anchor = GridBagConstraints.EAST;
        constraints.insets = new Insets(4,6,4,6);
        p1.add(nameLabel, constraints);
    
        constraints.gridx = 1;
        constraints.anchor = GridBagConstraints.WEST;
        p1.add(nameText, constraints);
    
        constraints.gridx = 2;
        constraints.anchor = GridBagConstraints.WEST;
        constraints.fill = GridBagConstraints.HORIZONTAL;
        constraints.weightx = 1.0;
        p1.add(Box.createHorizontalGlue(), constraints);
    
        constraints.gridx = 0;
        constraints.gridy = 1;
        constraints.fill = GridBagConstraints.NONE;
        constraints.weightx = 0.0;
        p1.add(Box.createHorizontalStrut(longWidth), constraints);
    
        //--------------------
    
        JPanel p2 = new JPanel(new GridBagLayout());
        p2.setBorder(createBorder("Address"));
    
        constraints.gridx = 0;
        constraints.gridy = 0;
        constraints.anchor = GridBagConstraints.EAST;
        constraints.insets = new Insets(4,6,4,6);
        p2.add(addressLabel, constraints);
    
        constraints.gridx = 1;
        constraints.anchor = GridBagConstraints.WEST;
        p2.add(addressText, constraints);
    
        constraints.gridx = 2;
        constraints.anchor = GridBagConstraints.WEST;
        constraints.fill = GridBagConstraints.HORIZONTAL;
        constraints.weightx = 1.0;
        p2.add(Box.createHorizontalGlue(), constraints);
    
        constraints.gridx = 0;
        constraints.gridy = 1;
        constraints.fill = GridBagConstraints.NONE;
        constraints.weightx = 0.0;
        p2.add(Box.createHorizontalStrut(longWidth), constraints);
    
        //--------------------
    
        JPanel p3 = new JPanel(new GridBagLayout());
        p3.setBorder(createBorder("Phone"));
    
        constraints.gridx = 0;
        constraints.gridy = 0;
        constraints.anchor = GridBagConstraints.EAST;
        constraints.insets = new Insets(4,6,4,6);
        p3.add(phoneLabel, constraints);
    
        constraints.gridx = 1;
        constraints.anchor = GridBagConstraints.WEST;
        p3.add(phoneText, constraints);
    
        constraints.gridx = 2;
        constraints.anchor = GridBagConstraints.WEST;
        constraints.fill = GridBagConstraints.HORIZONTAL;
        constraints.weightx = 1.0;
        p3.add(Box.createHorizontalGlue(), constraints);
    
        constraints.gridx = 0;
        constraints.gridy = 1;
        constraints.fill = GridBagConstraints.NONE;
        constraints.weightx = 0.0;
        p3.add(Box.createHorizontalStrut(longWidth), constraints);
    
        //--------------------
    
        JPanel panel = new JPanel(new GridBagLayout());
    
        constraints.gridx = 0;
        constraints.gridy = 0;
        constraints.fill = GridBagConstraints.HORIZONTAL;
        constraints.weightx = 1.0;
        panel.add(p1, constraints);
    
        constraints.gridy = 1;
        panel.add(p2, constraints);
    
        constraints.gridy = 2;
        panel.add(p3, constraints);
    
        this.add(new JScrollPane(panel));
      }
    
      private Border createBorder(String title)
      {
        TitledBorder b = new TitledBorder(title);
        b.setTitleColor(Color.RED.darker());
        return b;
      }
    
      public static void main(String args[]) {
        JFrame frame = new TitledBorderDemo();
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.pack();
        frame.setVisible(true);
      }
    }
    
  • They gave me the CD "Adobe Photoshop element 10' how to install using the serial numbers?

    They gave me the CD "Adobe Photoshop element 10' how to install using the serial numbers?

    Normally, you would place the CD in the CD player and it would be autoplay and start the installation process.  If it does not start automatically, then look at the contents of the disk file by using any file manager software, you have for your system and see if you can find the installation/setup file.

  • I bought Photoshop Elements less than a month ago (30 of August), and so I should the conditions required for a free update to 14 items. But I can't find out how to get. Bent

    I bought Photoshop Elements less than a month ago (30 of August), and so I should the conditions required for a free update to 14 items. But I can't find out how to get. Help, please. Bent

    Your purchase is saved in your Adobe account? If Yes, click on the link below.

    When you have all the required information, including the Adobe order number or proof of purchase, click on apply for upgrade, and then click contact us.

    l https://helpx.adobe.com/x-productkb/Policy-Pricing/Upgrade-Policy-Product-Announcement.htm

  • Got a legal question about the installation of Adobe Photoshop Elements.  How to get help from Adobe using a chat session?

    Got a legal question about the installation of Adobe Photoshop Elements.  How to get help from Adobe using a chat session?

    AdobeTomFaith

    If your program is Photoshop Elements, then you have posted in the wrong forum. Some how your son got posted in the Forum Adobe Premiere elements (video editing). Please re-post your thread in the Adobe Photoshop elements Forum.

    Photoshop Elements

    Wherever your son is, please include Adobe Photoshop Elements version and operating system and the description of the installation problem (error messages, stage of failure, etc.)

    Support Adobe seems to be limited to Adobe cat and is classically limited to the current version which is 13. Then, you the best avenue to success is likely to be through the Adobe Photoshop elements Forum. But that shouldn't stop you trying to determine what kind of support you can get from Adobe cat on your question.

    I would offer this link that is specific for Adobe Chat download and installation

    Contact the customer service (this is not the same destination as shown in a previous post in your thread)

    This link is specifically designed for

    Photoshop Elements

    Download, installation, setting up

    Download and installation

    Panel discussion

    (18:00 - Friday 7 pm Sunday)

    Thank you.

    RTA

  • IN PHOTOSHOP ELEMENTS 13 HOW CREATE A VIRGIN PAGE ON WHICH PASTE THE RESULT TO DO A PRINT SCREEN?

    IN PHOTOSHOP ELEMENTS 13 HOW CREATE A VIRGIN PAGE ON WHICH PASTE THE RESULT TO DO A PRINT SCREEN?

    The editor > file > new > Blank File

  • I have a Macbook Pro which is not a hard drive.  How to install Adobe Photoshop elements 11 that came with the Epson scanner, I bought.  I registered S/N, and I can't find the free download anywhere alone trials.

    I have a Macbook Pro which is not a hard drive.  How to install Adobe Photoshop elements 11 that came with the Epson scanner, I bought.  I registered S/N, and I can't find the free download anywhere alone trials.

    Downloads available:

    Download and installation help links Adobe

    Help download and installation to Prodesigntools links can be found on the most linked pages.  They are essential; especially steps 1, 2 and 3.  If you click on a link that does not have these listed steps, open a second window by using the link to Lightroom 3 to see these "important Instructions".

  • After opening an image in Photoshop elements 12 How can I copy the image of a word processing document

    After you open an image in Photoshop elements 12, how can I copy this image to a word processing document?

    You are in expert mode? Do you see the moving dotted line around the perimeter of the image?

  • How do I download Photoshop elements 11. I have the version of license

    How do I download Photoshop elements 11. I had to format my laptop.

    Download the trial of l http://prodesigntools.com/photoshop-elements-11-direct-download-links-pse-premiere-pre.htm and activate it with your serial number.

    Make sure that you follow the very important Instructions before proceeding with the actual download.

  • How to get the key and the value of mapping using forEach

    Hi all

    I use Jdev 11.1.1.7

    I have a taskflow parameter of type Map < String, MenItem >

    In the jspx I create some menus iterating this card so I created the following foreach:

    <af:menu text="ContextMenu" id="m1">
                                <af:forEach items="#{pageFlowScope.pbContextualMenuDetail}" var="menuItem">
                                  <af:commandMenuItem text="#{menuItem.key}" id="cmi1" />
                                </af:forEach>
    

    My goal is to show the keys and values (a label property MenuItem)

    {But tried to use #{menuItem.key}y} or {menuItem.value.label}

    Please let me know how to achieve this.

    Thank you

    ASHA

    Hello

    try something like this:

    Private Object [] keyboard macros.

    public Object [] getMapKeys() {}

    Return getYourMap () .keySet () .toArray ();

    }

    Kind regards

    Ruben.

  • Photoshop elements 14 stopped working after the installation of Windows 10

    After you have installed Windows 10 Adobe Photoshop elements 14.1 will freeze ("the program has stopped working. Close the program"). I had this problem when I bought Photoshop elements 14 six months ago and I have downgraded to Windows 7 after discover Win 10 was not compatible yet, but I have if this has been already solved now, since in the Adobe web site include Win 10 among the supported systems.

    No idea how to fix this?

    Disable and uninstall and then install and activate is the only idea I have

    or

    Photoshop elements Forum http://forums.adobe.com/community/photoshop_elements

    Select a topic and then I STILL NEED HELP to activate the Photoshop elements online chat

    -http://helpx.adobe.com/contact.html?product=photoshop-elements or

    http://helpx.Adobe.com/Photoshop-elements/KB/troubleshoot-installation-Photoshop-elements-premiere.html

  • Tutorial Photoshop elements 13 does not resemble the version I have.  Help?

    I recently got 13 elements Photoshop because I thought it function a bit like Photoshop, but cheaper.  At the time wherever I opened, I noticed that the interface has been completely different.  So, I clicked on the link for the tutorial for beginners eLive, who sent me this link: start with Photoshop elements 13 - YouTube

    However, the video above seems slightly different from mine, making it difficult to follow.  On the top in the video bar, he'll leave eLive > media > People > locations > events.  The one I use will of eLive > fast > guided tour > Expert.

    Could someone help me solve this problem, so I could follow along video instead of learning by myself?

    I use a MacBook Pro 13 inch with Retina display.

    Hello

    Photoshop Elements comes in two main parts. Looking at the part of the editor, the video shows the share of the Organizer.

    Either select Organizer in the toolbar at the bottom of your screen or go to the home screen and select Organizer.

    Brian

  • How can I download Photoshop Elements 10?  I had a hard drive crash and need to re - install.

    How can I download Photoshop Elements 10?  I had a hard drive crash and need to re - install.

    If you follow the 7 steps you can dl a free trial here: http://prodesigntools.com/photoshop-elements-10-direct-download-links-pse-premiere-pre.htm l

    and activate it with your serial number.

    If you have a problem dl'g, you don't follow all 7 steps.  the most common mistake is not meticulously follow the steps 1, 2, and/or 3 (which adds a cookie to your system, allowing you to download the correct version of the adobe.com site).

Maybe you are looking for

  • How to get back my Verizon broad band with MSN homepage

    I lost my Verizon Broadband internet MSN and I want it back

  • Not able to add units in LabVIEW?

    Is it possible to add units of LabVIEW?  I found the units available in LabVIEW and one I need is not listed.  I would like to add torque (lb - ft or N - m), as well as pressure (inches H2O).  When I display the unit label under items pulled down on

  • my wireless stopped working

    Remember - this is a public forum so never post private information such as numbers of mail or telephone! Ideas: You have problems with programs Error messages Recent changes to your computer What you have already tried to solve the problem

  • animated images to a Web site on my computer

    How to take a photo of a page on a Web site and move it to my laptop?

  • Install Windows several times.

    Hello I want to know how many times I can reinstall Windows on new PCs. This means: for example: I install Windows on PC1. PC1 dies. I have install Windows on PC2. PC2 dies. I have install Windows on PC3. etc. And if PC1 does not die. Can I install W