How to get any location of image color data?

// =======================================================

var idsetd = charIDToTypeID ("setd");

var desc1197 = new ActionDescriptor();

var idnull = charIDToTypeID ("null");

var ref958 = new ActionReference();

var idChnl = charIDToTypeID ('channel');

var idfsel = charIDToTypeID ("FSC");

ref958.putProperty (idChnl, idfsel);

desc1197.putReference (idnull, ref958);

idT var = charIDToTypeID ("T");

var desc1198 = new ActionDescriptor();

var idTop = charIDToTypeID ('Top');

var idPxl = charIDToTypeID ("#Pxl");

desc1198.putUnitDouble (idTop, idPxl, 1096.000000); i details of entry data location

var idLeft = charIDToTypeID ("Left");

var idPxl = charIDToTypeID ("#Pxl");

desc1198.putUnitDouble (idLeft, idPxl, 2188.000000); i details of entry data location

var idBtom = charIDToTypeID ("Btom");

var idPxl = charIDToTypeID ("#Pxl");

desc1198.putUnitDouble (idBtom, idPxl, 1097.000000); i details of entry data location

var idRght = charIDToTypeID ('Rght');

var idPxl = charIDToTypeID ("#Pxl");

desc1198.putUnitDouble (idRght, idPxl, 2189.000000); i details of entry data location

var idRctn = charIDToTypeID ("Rctn");

desc1197.putObject (idT, idRctn, desc1198);

executeAction (idsetd, desc1197, DialogModes.NO);

// =======================================================

var idslct = charIDToTypeID ("TPCV");

var desc1199 = new ActionDescriptor();

var idnull = charIDToTypeID ("null");

var ref959 = new ActionReference();

var ideyedropperTool = stringIDToTypeID ("eyedropperTool");

ref959.putClass (ideyedropperTool);

desc1199.putReference (idnull, ref959);

var iddontRecord = stringIDToTypeID ("dontRecord");

desc1199.putBoolean (iddontRecord, true);

var idforceNotify = stringIDToTypeID ("forceNotify");

desc1199.putBoolean (idforceNotify, true);

executeAction (idslct, desc1199, DialogModes.NO);

// =======================================================

var idsetd = charIDToTypeID ("setd");

var desc1200 = new ActionDescriptor();

var idnull = charIDToTypeID ("null");

var ref960 = new ActionReference();

var idClr = charIDToTypeID ("Clr");

var idFrgC = charIDToTypeID ("FrgC");

ref960.putProperty (idClr, idFrgC);

desc1200.putReference (idnull, ref960);

idT var = charIDToTypeID ("T");

var desc1201 = new ActionDescriptor();

var idCyn = charIDToTypeID ("Cyn");

desc1201.putDouble (idCyn, 55.290000); i want to get data color, c =?

var idMgnt = charIDToTypeID ("Mgnt");

desc1201.putDouble (idMgnt, 54.510000); i want to get data color, m =?

var idYlw = charIDToTypeID ('Ylw');

desc1201.putDouble (idYlw, 69.410000); i want to get data color, y =?

var idBlck = charIDToTypeID ('b');

desc1201.putDouble (idBlck, 43.140000); i want to get data color, k =?

var idCMYC = charIDToTypeID ("CMYC");

desc1200.putObject (idT, idCMYC, desc1201);

var idSrce = charIDToTypeID ("out");

desc1200.putString (idSrce, "" "eyeDropperSample" "");

executeAction (idsetd, desc1200, DialogModes.NO);

I draw the Rectangle (1px x 1px)... I want to get anywhere the image color data, can be done in javascript? Please help meUntitled-2.jpg

This will only work if you make a selection:

#target photoshop
var doc = activeDocument;
doc.colorSamplers.removeAll();
var pt = [doc.selection.bounds[0],doc.selection.bounds[1]];
var sampleColor = doc.colorSamplers.add(pt);
alert('Cyan: ' + sampleColor.color.cmyk.cyan +'\n' +'Magenta: ' + sampleColor.color.cmyk.magenta +'\n' +'Yellow: ' + sampleColor.color.cmyk.yellow +'\n' +'Black: ' + sampleColor.color.cmyk.black);

Tags: Photoshop

Similar Questions

  • During the import of my camera or a file in Lightroom 5 my pictures are too exposed by 1-2 stops, while they are well exposed on the screen of the device. How to get the "right-exposed images on the screen?

    During the import of my camera or a file in Lightroom 5 my pictures are too exposed by 1-2 stops, while they are well exposed on the screen of the device. How to get the "right-exposed images on the screen?

    There is an option in your Lightroom preferences, under the general tab, "treat JPEG files next to raw in form of images". If you have this option is checked, then Lightroom will import and view your first two and JPEG files. You use the active D-lighting on your camera? If you are, you must disable this feature.

  • How to get LASTDAY for each month between data dates...

    Hi friend

    I have a doubt, how to get LASTDAY for each month between data dates...

    for ex:
    My contribution will be like this
    date = 01/12/2011
    To date = 14/04/2011

    And I need an output like
    31/01/2011
    28/02/2011
    31/03/2011

    is it possible to achieve through sql query in oracle
    Thanks in advance for all friends to help him

    Hello

    Something like this (assuming that the dates are originally VARCHAR2s):

    SQL> var dt_start varchar2(10)
    SQL> var dt_end varchar2(10)
    SQL> exec :dt_start := '12-01-2011'
    
    PL/SQL procedure successfully completed
    
    SQL> exec :dt_end := '14-04-2011'
    
    PL/SQL procedure successfully completed
    
    SQL>
    SQL> select last_day(
      2           add_months(
      3             trunc(to_date(:dt_start,'DD-MM-YYYY'),'MM'),
      4             level-1
      5           )
      6         ) as result
      7  from dual
      8  connect by level <= months_between(to_date(:dt_end,'DD-MM-YYYY'), to_date(:dt_start,'DD-MM-YYYY'))
      9  ;
    
    RESULT
    -----------
    31/01/2011
    28/02/2011
    31/03/2011
     
    

    If the dates are already of the date data type, simply remove the to_date function.

  • How to get the channels spot given colors and spot channels length

    File is CMYK format... channel spot color is CMYK we as a spot channel color is c100m50y20k5
    How to get the channel spot color data using javascript? c = ? m = ? y = ? k = ?
    howv to get your channel length n (not the CMYK channel) use javascript?  such as CMYK + spot n-channel 7 = 7

    Please help me

    #target photoshop

    var myDoc = activeDocument;

    var channel = myDoc.channels;

    var number = 0;

    for (var m = 0; m< channels.length;="" m++)="">

    If (channels [m] .kind == ChannelType.SPOTCOLOR) {the number ++}

    };

    Alert (the number + "spotchannels");

  • How to get bitmapData from an Image control

    Hello

    Can someone help me understand this. I know I can use the "embed" tag to get the MXML compiler to associate a .jpg file with a class and then create a BitmapAsset object - and exit at his 'bitmapData '.

    I am loading files from a server dynamically .jpg using the Image control. I don't think that the Image control has a property 'bitmapData '. How to get a BitmapAsset of an Image control?

    Those of you guys informed here searching to help noobs - ty much in advance.

    the Image control was a parameter called the content that you can access only if the crossdomain.xml allows...

    This parameter is a Bitmap and contains the Bitmap bitmapData class...

  • How to get the default path of the data of a table space file

    I used below the sql statement to create a table space:

    CREATE A TABLESPACE DATAFILE AAA BBB SIZE 10 M AUTOEXTEND OFF...

    Notice, I do not give a full path instead of a file name, and then ask questions relevant to tables

    get the full path of the data file, assume that it's path below:

    d:\oracle\...\BBB

    So I don't think that there is a default path that oracle can use it to create the data file. My question

    is how to get this default path before creating a table space.

    Thank you very much.

    Hello

    I did similar simulations for you, then it could be seen easily:

    SQL > Show parameter db_create_file_dest

    VALUE OF TYPE NAME

    ------------------------------------ ----------- ------------------------------

    db_create_file_dest chain

    SQL > SELECT NAME, VALUE OF V$ PARAMETER

    2 where lower (name) = "db_create_file_dest;

    NAME

    --------------------------------------------------------------------------------

    VALUE

    --------------------------------------------------------------------------------

    db_create_file_dest

    It has the value NULL. Then where my datafile is going?

    SQL > create tablespace TEST datafile 'test01.dbf' size 10 M;

    Created tablespace.

    SQL > select file_name

    2 of dba_data_files

    3 where nom_tablespace = 'TEST ';

    FILE_NAME

    --------------------------------------------------------------------------------

    /U01/app/Oracle/product/12.1.0/Db_1/DBS/Test01.dbf

    When you check the alert logs, it will not show you the location of the data file. It will tell you what exactly you ran.

    ..

    ..

    Completed: drop tablespace test whose content and data files

    create tablespace datafile 'test01.dbf' size 10 M TEST

    Completed: create tablespace TEST datafile 'test01.dbf' size 10 M

    ..

    ..

    You can not SQL user * more? Well, I would say that, when you run the CREATE TABLESPACE command, is where you run the command:

    SQL > select file_name

    2 of dba_data_files

    3 where nom_tablespace = 'TEST ';

    FILE_NAME

    --------------------------------------------------------------------------------

    /U01/app/Oracle/product/12.1.0/Db_1/DBS/Test01.dbf


    So, you should get the location of your data file. Alternatively, you can run the query in the parameter $ v so that you know your default data file location.

    I hope this helps.

    Thank you.

    Kind regards

    Gaetan

  • How to get the ip address of the data storage device

    Hi all

    I developed a project now and you need to distinguish a virtual machine is saved to the device local ESX or remote network storage device.

    I found the data store object in which the virtual machine resides by vi sdk, but could not find the address of the device that includes this data store.

    How to get the ip address of the coding data storage device, which includes the virtual machine? I need your help.

    Thank you in advance.

    How do you try to make a query. Storage devices provides a logic unit number no, there is no IP address for it.

    You can check the same for the storage on vCenter view

  • How to get out the year following the date

    Hi all

    I'm couldn't get out of the year to date.
    in my table it has been stored in varchar format on January 11, 2005
    If I want to display the year of the column, then
    I tried with year (to_date (' ' jan 11 2005 ', ' mm dd yyyy ' "))
    but I get an error then, how should I go out the year of the date_column

    thnks

    Hello

    Use RIGHT(DATE_COLUMN,4)

    Thank you
    Saichand.v

  • How to get the resolution linked image (in PPP/DPI) in Indesign CC2014?

    Hi all

    Is it possible to get the image linked in PPP/DPI resolution? I tried it by the following code snippet, but it always returns the value, 72 dpi.

    IImageCache * imageCache = nil;

    imageCache is Utils < ILinksUIUtils > ()-> QueryThumbnailForLink (iLink, iLinkResource);.

    if(!imageCache)

    continue;

    PMReal iResolution = imageCache-> GetResolution();

    Thanks in advance.

    I use the IImageAttributes::kPMTagXResolution or IEPSAttributes::GetTargetRes tag.

  • File adapter, how to get the location of the directory

    Hi '.

    I'm voting for the file from 3 different locations.

    C:\File\Location1
    C:\File\Location2
    C:\File\Location3

    Once the file is delivered in one of these directories
    the composite is able to start, I want to know inside the BPEL, which directory the file has been
    read, is there a function any or something that can tell me the location where the file are
    picked up...

    Please advice,

    Thank you
    Yatan

    Yatan,

    In the properties of the receive activity tab, you have an attribute named: jca.file.FileName
    In the value column, you can assign a variable that will contain the name of the directory.

    Arik

  • How to get an original RAW image after cropping and openness RAW file?

    Hello

    I have a Canon EOS 350 d camera and now PSE 9.  I have taken a few RAW images & imported in PSE 9 OK.  I know that the original RAW image is preserved after the change.  However, after cropping a picture BRUTE of the editor and then "Open" and "save under" a PSD or JPEG, I then close the image in the editor and the cropped image appears in the Organizer.  This is as it should be, I think.  If I then want to start from scratch on the original RAW image, it seems to me that I have to manually remove the modified version and the .xmp file in Windows Explorer, and then double-click the RAW file in Windows Explorer, which then open correctly in the editor of PES 9 of origin.  Is this possible to PSE 9?

    When you open the original camera raw image, go to the context menu

    and choose default Camera Raw, which resets everything except the crop, straighten,

    and rotatate parameters.

    To get rid of the culture and/or straighten the settings, click on and hold on to the crop tool and choose the option clear crop.

    To reset the settings of Image rotation, you have the back turn manually using the image rotation buttons.

    MTSTUNER

  • PS CC IMAC how to get back on an image

    Hello:

    I use cc on a MAC ps

    I need to reverse an image - not - turn so the subject standing in law appears on the left and the landscape on the right appears on the right - so my new image is a mirror of the original version.

    Thank you!!!

    If you want just the layer and not all layers - there are other layers, press cmd - T, right-click and select horizontal flip.

  • In Lightroom for mobile, how to get back to show images less.

    In the segmented view, sorted by year, it shows some pictures and the last of them was a sign + on this topic (with the number of other images) to show to the rest. Once I press on the + sign, show all of the photos for this year. That's very nice, but I can't go back to showing images less.

    Is there a way?

    That you can do to collaps (and expand) the segment is again a 2-finger vertical pinch gesture. I hope this helps. -Guido

  • How to get the transparent background image

    I'm doing white that surrounds the logo to blend in with the t-shirt which is the best way to do this?

    Screen Shot 2016-02-25 at 2.48.13 PM.png

    This work is best done with Photoshop.

  • How to get a torque wrench in labview data?

    I have a torque wrench N.I. and need to export data when you perform a calibration for (labview to) and get the program show me if the couple is correct or not.

    I don't know how to start... I really need support.

    an example would help.

    Thank you...

    Bruna

    OLA Bruna!

    Pelo pesquisei nao ha driver para Comunicação between seu torquimetro e o LabVIEW.

    E possible through communication-los MAS of da language VISA.

    Para ready, o fabricating information como os dados São quadrilha through reading of da porta series? Or seja, você saberia docks pinos chegam dados em, e qual e a configuracao Kanada, o cada bit represents, montarmos para an Informação completa?

    Sugiro busque essa Informação POI large adinataria parte do processo.

    Caso o manufacturer do seu torquimetro nao ofereca nenhuma Informação sober isso, you will find por conta experiencia.

    Minha suggestions using software um of monitoramento e of porta serial, ha several pela internet, basta dar pesquisada, como ha o link abaixo um exemplo:

    http://www.baixaja.com.br/downloads/Windows/development/debugging/free-serial-port-Monitor_837.html

    EU particularmente nunca utilizei, você pode procurar other alternatives also...

    Aqui voce conceitos bem interesting find sober Comunicação serial, caso você não muito bem image:
    http://zone.NI.com/DevZone/CDA/tut/p/ID/11390

    Bem como aqui:
    http://digital.NI.com/public.nsf/allkb/8B9F928887A0C77F8625769C004C13BA?OpenDocument

    Quando soubermos como dados São quadrilha ao computador, e estes qual a Kanada configuracao or seja quando for possible "montar' a reading bits back through Informação da porta, podemos iniciar com o LabVIEW.

    Como had disse voce usar tera a language VISA, voce find good exemplos da terms desse VI em:

    Help-> find examples-> Search-> VISA

    E complicated, logical problems pode entrar em let mas NAO!

    Quanto E an escrita of values not Excel, estou anexando um exemplo than skills os pontos simulado um sinal em um land, no seu caso basta trocar o 'Simulate Signal' pela sua entrada real.

    Espero poder Ajuda - la!

    Atenciosamente,

Maybe you are looking for