Color Mapping Screen Shot

Made a screen shot of a portion of a web page containing black text (actually, Hebrew script) on a white BG. When selecting/copying, I found that the text is, itself, displayed as a graphic image.
With my pasted image in a new PS document, I would like to change white to transparent and black to another color.
Would you please provide or point me to a location giving the procedure for getting this done.
Already found advice to set the layer blending options to "Multiply". Tried this but that did not work. Pasted image was pure white with no text.

Have you tried printing a pdf from the site to get vector data?
Anyway, my recommendation regarding the image:
• Load selection by command-clicking a channel where the type is truly black (Edit: and the background is white)
• Invert Selection
• Create Solid Color Layer of intended new color

Similar Messages

  • How can i use this color for my Application Background ?? Screen Shot Attached

    Hi ,
    I can find only plain colors on to Color Picker , but this is line mixed color
    How can use this attached Color for my Applications Background Color .
    Please find the Screen Shot attached .
    please see the background  color

    Are you trying to apply a gradient background?
    In Flex 3 in Application tag:
    <?xml version="1.0"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
      backgroundColor="#666666"
      backgroundGradientColors="[#333333, #666666]">
    </mx:Application>
    In Flex 4 you need to set the backgroundColor and apply a skin for the gradient:
    -------------- mySkins/MyAppSkin.mxml -------------
    <?xml version="1.0" encoding="utf-8"?>
    <!-- containers\application\mySkins\MyAppSkin.mxml -->
    <s:Skin xmlns:fx="http://ns.adobe.com/mxml/2009"
            xmlns:mx="library://ns.adobe.com/flex/mx"
            xmlns:s="library://ns.adobe.com/flex/spark">
      <fx:Metadata>
        [HostComponent("spark.components.Application")]
      </fx:Metadata>
      <s:states>
        <s:State name="normal" />
        <s:State name="disabled" />
      </s:states>
      <!-- fill -->
      <s:Rect id="backgroundRect" left="0" right="0" top="0" bottom="0">
        <s:fill>
          <s:LinearGradient rotation="90">
            <s:entries>
              <s:GradientEntry color="0x333333" ratio="0" alpha="1"/>
              <s:GradientEntry color="0x666666" ratio=".66" alpha="1"/>
            </s:entries>
          </s:LinearGradient>      
        </s:fill>
      </s:Rect>
      <s:Group id="contentGroup" left="10" right="10" top="10" bottom="10">
        <s:layout>
          <s:VerticalLayout/>
        </s:layout>
      </s:Group> 
    </s:Skin>
    -------------- test.mxml -------------
    <?xml version="1.0"?>
    <!-- controls\button\PopUpButtonMenu.mxml -->
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/mx"
                   height="100%" width="100%">
      <s:SkinnableContainer skinClass="mySkins.MyAppSkin"
        width="100%" height="100%"/>
    </s:Application>
    If this post answers your question or helps, please mark it as such. Thanks!
    http://www.chikaradev.com
    Adobe Flex Development and Support Services

  • Screen shot of google map.  How do I do it?

    How do I take a screen shot of a google map?

    Same as you do any screen shot in OS X. Shift + Command + 4
    Keyboard Shortcuts

  • Screen shot colors look far different in InDesign and Photoshop.

    Screen shot colors look far different in InDesign than when I vew them in Photoshop. The two program's color settings are syncronized.

    You have a profile mismatch.
    In OSX your monitor profile is assigned to a screen capture. When you open it into PS the monitor profile will get discarded, preserved, or converted depending on what your CM Policy is set to in Color Settings. If you save the capture you get the option to include the profile or not. If you include the profile and place the file in ID you should get a match. If you paste into ID there's no embedded profile and ID's RGB Working space will be assigned.
    Here I've saved a capture with no profile and placed it an ID document with ProPhotoRGB assigned (Edit>Assign Profiles...):
    If I save with the profile embedded I get a match—or I can direct-select the screen capture on the page and use Object>Image Color Settings... and reassign the monitor profile without resaving:

  • How to populate the dropdown key values as shown in the below screen shot

    Hi
    i am trying to populate the drop down by key value for trader , for Trader we  have few values i need to populate the Those values in values columns . as shown in the below screen shot .

    Hi,
    Follow below steps
    Step 1 - Create basic wdp table
    Step 2 - Create context to store dropdown values Within your web dynpro application table
    Now you need to create a context node to store the dropdown values, but this needs to be within the context node of your table.
    For this example I will use fields CARRID and CARRNAME from structure SCARR to create the dropdown list within the table context.
    Choose the attributes to represent the id and the text values
    The finished context should now look like this
    Step 3 - Update context mapping within VIEW
    Within the Context tab of your view update the context node you have just modified (CARRIERS) right click and select 'Update Mapping'. Alternatively if this is a new context drag it from the right hand window and drop it onto the context node in the left window,
    Step 4 - Update table field
    Within the layout tab of the view, field the table field you want to replace with with a dropdown and remove the UI element associated with it
    Now insert new dropdownbyindex UI cell element
    Step 5 - Assign Dropdown Ui element to Context
    Click on your UI element within the Layout tab, you will now see all the properties for this element which can be changed. You now need to assign the field within the context which you want to be displayed in the drop down i.e. it will be the CARRNAME field within context element DROPDOWN_CARR. To do this simply click on the button at the end of the 'texts' property (the one with a yellow square and circle on it) and select the correct context field.
    Step 6 - ABAP code to populate dropdown list and set correct initial value
    Insert the following ABAP code into the appropriate place. For this example it will go within the WDDOMODIFYVIEW method of the view.
      Data: it_scarr type standard table of scarr, wa_scarr like line of it_scarr, context_node type ref to if_wd_context_node.  Data: it_ddcarr type STANDARD TABLE OF if_main=>element_DROPDOWN_CARR, wa_ddcarr like line of it_ddcarr, lr_element TYPE REF TO if_wd_context_element, ld_tabix type sy-tabix, ld_index type sy-index, it_carriers type STANDARD TABLE OF if_main=>element_CARRIERS, wa_carriers like line of it_ddcarr.  select * from scarr into table it_scarr. sort it_scarr by carrid.  * select * from scarr into table it_scarr. context_node = wd_context->get_child_node( name = 'CARRIERS' ).  * Get all rows of table and values stored in each cell currently displayed to user context_node->get_static_attributes_table( importing table = it_carriers ).  if sy-subrc eq 0. loop at it_carriers into wa_carriers. free lr_element. ld_tabix = ld_tabix + 1.  *     assign context_node to table context context_node = wd_context->get_child_node( name = 'CARRIERS').  *     assign lr_element to row of table lr_element = context_node->get_element( ld_tabix ).  *     assign data to dropdown of the row  context_node = lr_element->get_child_node( name = 'DROPDOWN_CARR'). context_node->BIND_TABLE( it_scarr ).  *     Set correct initial value read table it_scarr into wa_scarr with key carrid = wa_carriers-carrid. ld_index = sy-tabix. context_node->set_lead_selection_index( index = ld_index ).  endloop. endif.
    Step 6 - Save, Activate and Run
    Save and activate your abap web dynpro, now when you execute it you should see a drop down object similar to the following:

  • XI examples step by step screen shots

    hi experts,
    i am new in XI. i want to learn XI so any one plz help me how to create,how to install,connect,and SLD,ID,IR,ADAPTER,BPM,MAPPING plz send any documents for XI step by step examples with screen shots.it's really helpful for my carrier.
    thanks and regards,
    sapbbm.

    First start with this series of blogs compiled by  Sravya....
    /people/sravya.talanki2/blog/2006/12/27/aspirant-to-learn-sap-xiyou-won-the-jackpot-if-you-read-this-part-iii
    Following are the links to weblogs which will help to develop the basic scenarios.
    /people/prateek.shah/blog/2005/06/08/introduction-to-idoc-xi-file-scenario-and-complete-walk-through-for-starters - IDoc to File
    /people/ravikumar.allampallam/blog/2005/03/14/abap-proxies-in-xiclient-proxy - ABAP Proxy to File
    /people/sap.user72/blog/2005/06/01/file-to-jdbc-adapter-using-sap-xi-30 - File to JDBC
    /people/prateek.shah/blog/2005/06/14/file-to-r3-via-abap-proxy - File to ABAP Proxy
    /people/venkat.donela/blog/2005/03/02/introduction-to-simplefile-xi-filescenario-and-complete-walk-through-for-starterspart1 - File to File Part 1
    /people/venkat.donela/blog/2005/03/03/introduction-to-simple-file-xi-filescenario-and-complete-walk-through-for-starterspart2 - File to File Part 2
    /people/ravikumar.allampallam/blog/2005/06/24/convert-any-flat-file-to-any-idoc-java-mapping - Any flat file to any Idoc
    /people/arpit.seth/blog/2005/06/27/rfc-scenario-using-bpm--starter-kit - File to RFC
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1685 [original link is broken] [original link is broken] [original link is broken] [original link is broken] - File to Mail
    /people/jayakrishnan.nair/blog/2005/06/20/dynamic-file-name-using-xi-30-sp12-part--i - Dynamic File Name Part 1
    /people/jayakrishnan.nair/blog/2005/06/28/dynamic-file-namexslt-mapping-with-java-enhancement-using-xi-30-sp12-part-ii - Dynamic File Name Part 2
    /people/michal.krawczyk2/blog/2005/03/07/mail-adapter-xi--how-to-implement-dynamic-mail-address - Dynamic Mail Address
    /people/siva.maranani/blog/2005/05/25/understanding-message-flow-in-xi - Message Flow in XI
    /people/krishna.moorthyp/blog/2005/06/09/walkthrough-with-bpm - Walk through BPM
    /people/siva.maranani/blog/2005/05/22/schedule-your-bpm - Schedule BPM
    /people/sriram.vasudevan3/blog/2005/01/11/demonstrating-use-of-synchronous-asynchronous-bridge-to-integrate-synchronous-and-asynchronous-systems-using-ccbpm-in-sap-xi - Use of Synch - Asynch bridge in ccBPM
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1403 [original link is broken] [original link is broken] [original link is broken] [original link is broken] - Use of Synch - Asynch bridge in ccBPM
    /people/michal.krawczyk2/blog/2005/08/22/xi-maintain-rfc-destinations-centrally - Maintain RFC destination centrally
    /people/sravya.talanki2/blog/2005/08/18/triggering-e-mails-to-shared-folders-of-sap-is-u - Triggering Email from folder
    /people/sravya.talanki2/blog/2005/08/17/outbound-idocs--work-around-using-party - Handling different partners for IDoc
    /people/siva.maranani/blog/2005/08/27/modeling-integration-scenario146s-in-xi - Modeling Integration Scenario in XI
    /people/michal.krawczyk2/blog/2005/08/25/xi-sending-a-message-without-the-use-of-an-adapter-not-possible - Testing of integration process
    /people/michal.krawczyk2/blog/2005/05/25/xi-how-to-add-authorizations-to-repository-objects - Authorization in XI
    http://help.sap.com/saphelp_nw04/helpdata/en/58/d22940cbf2195de10000000a1550b0/content.htm - Authorization in XI
    /people/michal.krawczyk2/blog/2005/09/09/xi-alerts--step-by-step - Alert Configuration
    /people/michal.krawczyk2/blog/2005/09/09/xi-alerts--troubleshooting-guide - Trouble shoot alert config
    /people/sameer.shadab/blog/2005/09/21/executing-unix-shell-script-using-operating-system-command-in-xi - Call UNIX Shell Script
    /people/sravya.talanki2/blog/2005/11/02/overview-of-transition-from-dev-to-qa-in-xi - Transport in XI
    /people/r.eijpe/blog/2005/11/04/using-abap-xslt-extensions-for-xi-mapping - Using ABAP XSLT Extensions for XI Mapping
    /people/prasad.ulagappan2/blog/2005/06/07/mail-adapter-scenarios-150-sap-exchange-infrastructure - Mail Adaptor options
    /people/pooja.pandey/blog/2005/07/27/idocs-multiple-types-collection-in-bpm - Collection of IDoc to Single File

  • Screen shot help for withholding tds on advance?

    can someone please help urgently
    When the withholding tax type is mapped to vendor master record it gives an error saying that entries in table T0 59Z not existent.I need to develop screen shots for " advance to Vendor& TDS on advance"

    HEllo,
    Firstly please check in your customizing that you activated the
    extended withholding tax functionality by following this path in
    the IMG:
    financial accounting global settings
      -> Comapny code
        -> Activate the extended withholding tax
    Also, there is an additional field "W/H tax catagory" which should be
    optional in your account group settings. Please check this by using
      Transaction: OBD3
        -> Clicking the relevant account group
          -> Company code data
            -> W/H tax data.
    Please note that when you create/change vendor master data, if you
    navigate to the withholding tax screen, you have to FIRST enter the
    withholding TYPE. Additionally, you may enter a withholding tax CODE
    (defined for this withholding type), which is going to be proposed when
    posting an invoice for this vendor. If you first enter the withholding
    code without having entered the withholding TYPE, the foreign key check
    leads to the message 00058 you described in the problem.
    Have you check if the tax type exist in T059Z?
    REgards,
    REnan Correa

  • IDOC to FILE scenario With Screen shots

    CAN YOU PLEASE SEND US THE DETAILS OF IDOC to FILE scenario With Screen shots  and do  the needful for me

    Hi Surya,
    I thought i will just share a few basic thoughts that you need to take care while doing an IDOC to File Scenario. Just see if it helps you in anyways.
    While doing an IDOC -> XI -> File scenario, The Points to noted are:
    1. You don’t need a DT, MT or a message interface for the IDOC as it itself acts as the Message Interface.
    2. You import the IDOC and use the same in your mapping.
    3. In this configuration note that you don’t have a sender agreement as you don’t have a sender IDOC adapter.
    If it is that you wanted to send an IDOC from XI (File to IDOC) , then in this case:
    points 1 and 2 will remain, but the 3 will not. You will need a sender agreement for the file and a receiver agreement for the IDOC.
    IDOC -> File scenario ref:
    <a href="/people/prateek.shah/blog/2005/06/08/introduction-to-idoc-xi-file-scenario-and-complete-walk-through-for-starters scenario</a>
    File -> IDOC ref:
    <a href="/people/anish.abraham2/blog/2005/12/22/file-to-multiple-idocs-xslt-mapping to IDOC</a>
    To be able to trigger your IDOC from the SAP ISU system, you will have to set the partner profile in we20. Select your Business System (mostly under Logical system) and then create Outbound entries for whichever IDOC you want to trigger.
    You define your basic type also in your partner profile settings, Please go thru the following links to get a better idea about partner profile:
    http://help.sap.com/saphelp_nw04/helpdata/en/dc/6b833243d711d1893e0000e8323c4f/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/dc/6b7cd343d711d1893e0000e8323c4f/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/32/692037b1f10709e10000009b38f839/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/5e/b8f8bf356dc84096e4fedc2cd71426/frameset.htm
    Also, I would suggest that you go through this blog by michal if any issue arises,
    /people/michal.krawczyk2/blog/2005/03/29/xi-error--unable-to-convert-the-sender-service-to-an-ale-logical-system
    /people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions
    Also have a look at these forum threads...
    IDOC TO FILE SCENARIO
    idoc to file scenario
    I hope this helps.
    Regards,
    Abhy Thomas

  • Screen shots added to organizer when opened.

    This problem has just recently started.  When I open Elements 8.0, a box pops up saying "updating".  Then multitudes of screen shots are imported into the organizer.  They are mainly gif files and jpeg images of things like the GMail logo, CNN logo or a map.  The majority of them seem to be of websites I've visited.  I have made no changes to this program.  Does anyone have a fix to this problem?  Thanks, PhotoNonnie

    Sounds like you have a watch folder to your internet cache directory or higher.

  • Resizing Screen Shots for Print

    Hello,
    I have been tasked with capturing screen shots in order to print them in a manual. I used PrtScr and saved them as a .TIFF. I know there are problems with this kind of printing, and I was hoping to learn the "right way" since I will have to do this quite often.
    I have read in profession book and magazine printing articles that they re-create the screen shot because screen shots just don't print well, so I am not expecting miracles. I just want to get a process in place so these screen shots can look the best they can without re-drawing them or something.
    So when I opened the screen shots in Photoshop they are 96dpi and the pixel dimensions are 1122x871. I would like to reduce the pixel dimensions by 1/3 as they are too large, and increase the resolution, but I am pretty sure that won't do much. Plus the screen shot looks blurry and unsharp mask doesn't fix it much.
    Any help with this process would be appreciated.

    To me it seems a screen shot at 1100+ pixels and printed in a small manual could end up with the user interface elements printing so small that they could be difficult to see in the final print.  As an example, consider how big the menu being shown will be a print at, say, 4.5" width of both of these screens:
    Some other things to consider:
    Along the same lines as the above, you might want to turn up the Windows display scale factor.  Windows 7 provides settings in the Control Panel\Appearance and Personalization\Display dialog.  At 150% the characters and UI elements are made up of more pixels.
    Consider also turning off ClearType font smoothing as these will only make the letters in prints seem fringed with color - not normally a good visual.
    -Noel

  • Drawing a shape on top of a screen shot

    I am creating a visual tutorial. I have taken a screen shot and wish to draw a transparent oval on top of a portion of the screenshot to call attention to a certain action. I can not get the oval on top of the screenshot as an inline (moves with text) image. It would also be great to group the oval on the screen shot so it would remain in place.
    Thank you.

    Welcome to the Apple forums
    I'm not sure what your question has to do with Pages unless you are inserting the screenshot into Pages & then manipulating it.
    I think it would be easiest to do the annotating of the screenshot in Preview then save the image. If you then want to insert it into Pages it would be a single, uneditable image.
    To do it all in Pages you need to do the work with floating objects since you can't put one inline object on top of another. Use the wrap inspector to uncheck object causes wrap then insert a circle, change to color fill to none, resize/reshape it as desired, move it into position the select both the screenshot & the shape & go to Arrange > Group, cut or copy this grouped object, click to put the cursor in the body of your text where you want it to go & paste.

  • New monitor and now PSE7 is all messed up! screen shot

    I purchased a new Dell 2209wa monitor. Finally got the colors looking right. Looked at some of the pros pictures, and color looks great. My pictures look fine on my blog(look the same as my prints), and I have an ancient Microsoft Digital Image editing program that the pictures look fine in too. But in PSE7 they look horrible! Way green and yellow. They didn't look like this before.
     

    In step 5 of the instructions referenced by the tech note:
    a. What is the name of the display device shown?
    b. What are the profiles that are listed for that device?
    c. What happens when you select one of the profiles and cick Remove?  If there's an error, what is the precise message?
    A screen shot of what you see would be great.
    Windows Vista
    Click Start
    Collapse this imageExpand this image
    , and then type Color Management in the Start Search box.
    Click Color Management under Programs.
    In the Color Management dialog box, click the Devices tab, and then click the display that is experiencing the problem. For example, click Display: Generic PnP Monitor.
    Make sure that the Use my settings for this device check box is selected.
    In the Profiles Associated with this Device list, remove all the profiles that are listed in the box. To remove a profile, select the profile, and then click Remove. When this process is complete, the box will be empty and all the defective profiles will have been removed.
    Click Close.
    Note The default display profile association is now removed. The Windows Live Photo Gallery’s Viewer application will no longer use the defective profile and will now assume a display profile of sRGB when photos are displayed.

  • Grab doesn't take screen shot of selected area.

    Using Lion, Grab (screen shot) doesn't work like it used to. I select an area, Cmd-Shift-4, release mouse button. It "grabs" a shot of a different area.

    Can you just map the coordinates from your app to the screen coordinates? I think you can just use the getLocationOnScreen method of Component (and JFrame) to get the top left corner of your app and then just add the values to your Rectangle.

  • File to RFC Scenario screen shots

    Do any body is having simple File to RFC without using BPM screen shots or URLS please provide me

    Mclaren,
    If the mapping part is clear then u have to look for Adapter monitoring. Since the file is coming in ,  I suggest u to look for Receiver RFC Adapter. U can monitor the adapter , by chosing
    RWB - Component Monitoring( Component With status -All) Click Display
       - Choose adapter engine from component nodes.
      - In the bottom of the page click adapter monitoring/Component Monitoring(depends on ur SP)
    - In the list of adapters choose RFC and choose ur comm.channel and check the status of it.
    Best regards,
    raj.

  • Marking a Screen Shot

    I want to take screen shots with my iPhone (or iPad) and then place a mark on the image. Specifically I want to take screen shots of maps (Google Maps, Apple Maps - it does not matter) and then mark a specific location. The mark ideally would be a highlight or small circle. This of it has as a residential development map with a mark for a specific house or pot hole location. 

    To make a screen shot, hold down the sleep and home keys at the same time and release them.....like you'd depress a camera shutter. You'll see a flash of white and hear a camera noise. the image will be in your camera roll or 'recently added'
    To put graphics onto the image you'll need a photo editing program. There are several out there, some paid, some free. You'd need to look for one that works for you.

Maybe you are looking for

  • How do I set up an Apple TV with a corporate network?

    Hi all, I am aware that there are a lot of resources around that explain how to create a Configuration Profile for connecting an Apple TV to a corporate wireless network, and I think I understand them. But the issue I am struggling with is how to get

  • Problem in sending XML input as String in BPEL

    Hi, We have a BPEL flow (assign, invoke, assign) which takes an XML input as String. <RegisterCustomerOnVAS><CustomerID>100</CustomerID><MSISDN>9999999</MSISDN><CustomerName>sanjeev</CustomerName><customerInfo>new user</customerInfo></RegisterCustome

  • USB SuperDrive install to 2008 iMac 7,1

    I went out and bought a USB Superdrive. Got home all excited ... plugged it in ... NOTHING ... and by NOTHING ... I mean NOTHING ???????? CAN ANYONE HELP ... ???? PREVIOUS HISTORY OF PROBLEM STARTED .... Drive not working ... see below. I have an iMa

  • Problem logging off windows 7 on AD domain - Sound Card issue New model iMac 2011

    I am looking for help for a strange problem we have on our new 21.5inch iMac computers (mid-2011 model), Our whole IT team have worked for a week to find solutions and we have exhausted all of our ideas. Please note we have an identical setup on our

  • JVM Error 517 cause?

    Hey, quick question. Yesterday after turning my phone on i got that JVM Error 517 message, after looking on here i found a solution to fix it (you brainy people!), turned out it had no software so its all fixed now, my question is what causes it? I w