How to change the Tiff with black background

Hi all

Here, I have attached test.tif illustrates normal file in windows Explorer, I'm open to change in photoshop, it opens with a black background can one has encountered this problem before?

My thumbnails in windows Explorer

img1.jpg

My thumbnails of images in Photoshop CS2

img2.jpg

the original tiff image is here

http://www.4shared.com/photo/fTznyfQr/test.html

Thanks in advance

concerning

a you are the

OK follow these steps to get rid black background

1. open the image in Photoshop

2 panel open layers

3 hold down you control key and click on the Alpha (down in the Panel channel) channel, it will make a selection

4. press the button DELETE and if you are prompted choose fill with 'White '.

5. save

Paul

Tags: Photoshop

Similar Questions

  • How to change the Rectangles with buttons

    I'm working on this example that does not work correctly:

    public class test extends Application
    {
    
        private void init(Stage primaryStage)
        {
    
            Group root = new Group();
            primaryStage.setScene(new Scene(root));
    
            String pillButtonCss = DX57DC.class.getResource("PillButton.css").toExternalForm();
    
            // create 3 toggle buttons and a toogle group for them
            ToggleButton tb1 = new ToggleButton("Left Button");
            tb1.setId("pill-left");
            ToggleButton tb2 = new ToggleButton("Center Button");
            tb2.setId("pill-center");
            ToggleButton tb3 = new ToggleButton("Right Button");
            tb3.setId("pill-right");
    
            final ToggleGroup group = new ToggleGroup();
            tb1.setToggleGroup(group);
            tb2.setToggleGroup(group);
            tb3.setToggleGroup(group);
            // select the first button to start with
            group.selectToggle(tb1);
    
            //////////////////////////////////////////
    
            final VBox vbox = new VBox();
    
            final Rectangle rect1 = new Rectangle(300, 300);
            rect1.setFill(Color.ALICEBLUE);
            final Rectangle rect2 = new Rectangle(300, 300);
            rect2.setFill(Color.AQUA);
            final Rectangle rect3 = new Rectangle(300, 300);
            rect3.setFill(Color.AZURE);
    
            tb1.setUserData(rect1);
            tb2.setUserData(rect2);
            tb3.setUserData(rect3);
    
            group.selectedToggleProperty().addListener(new ChangeListener<Toggle>()
            {
                @Override
                public void changed(ObservableValue<? extends Toggle> ov, Toggle toggle, Toggle new_toggle)
                {
                    if (new_toggle == null)
                    {
                        //rect.setFill(Color.WHITE);
                    }
                    else
                    {
                        vbox.getChildren().addAll((Node[]) group.getSelectedToggle().getUserData());
                        //rect.setFill((Color) group.getSelectedToggle().getUserData());
                    }
                }
            });
    
    
            ///////////////////////////////////////////
    
    
            HBox hBox = new HBox();
            hBox.getChildren().addAll(tb1, tb2, tb3);
            hBox.setPadding(new Insets(20, 20, 260, 20));
            hBox.getStylesheets().add(pillButtonCss);
    
    
    
            vbox.getChildren().add(hBox);
            //vbox.getChildren().add(rect);
    
            root.getChildren().add(vbox);
        }
    
        @Override
        public void start(Stage primaryStage) throws Exception
        {
            init(primaryStage);
            primaryStage.show();
        }
    
        public static void main(String[] args)
        {
            launch(args);
        }
    }
    
    
    

    I want to create several Rectangles (or in which object or object) in which I want to store data. I want to spend the Rectangles (objects) that appear in front of the user by using the buttons. The example that I put in place does not work correctly. Can you tell me what is the right way to implement this?

    REF javafx 2 - How to change the Rectangles with buttons - stack overflow

    You have two problems:

    User data that assign you to each button switches are a node, not a [Node]. Thus, the cast will fail on line 43.

    When the selected toggle changes, you add another Rectangle to the vbox. You want to replace the rectangle that is in the vbox.

    Try

    vbox.getChildren () .setAll ((Node) group.getSelectedToggle () .getUserData ());

  • How to change the color of gray background around the real Web site design?

    Hello

    As the title suggests... I want to make white similar to the background of the real site, not gray. Please give me step by step instructions!

    See screenshot of the site that I built, for reference below.

    Thank you.

    grey background website.jpg

    For future interests... (Using Adobe Muse CC 2017) To change the background color of the workspace: Edit > Preferences > color theme. As in November 2016, there are 4 a options possible, all colors are different shades of gray.

  • How to change the Source with EditText text in my Script?

    Here is my code, actually, the thing is I want to change my myEditText text in my control panel:

    function myScript(thisObj) {
              function myScript_buildUI(thisObj) {
                        var myPanel = (thisObj instanceof Panel) ? thisObj : new Window("palette", "My Panel Name", [0, 0, 300, 300]);
    
                        res="group{orientation:'column', alignment:['fill', 'fill'], alignChildren:['fill', 'fill'],\
                                  myEditText: EditText{text:'EditText text'},\
                                  myButton: Button{text:'Button Name'},\
                        }"
    
                        //Add resource string to panel
                        myPanel.grp = myPanel.add(res);
                        
                        
                        var texto = myPanel.grp.myEditText.text.value
                        
                        var btn =  myPanel.grp.myButton
                        
                        
                        
                        btn.onClick = function (){
                            
                            app.project.item(2113).layer("TXT 1").property("Text").property("Source Text").setValue = texto
                            
                            }
                        
                        
                        
                        
    
    
                        //Setup panel sizing and make panel resizable
                        myPanel.layout.layout(true);
                        myPanel.grp.minimumSize = myPanel.grp.size;
                        myPanel.layout.resize();
                        myPanel.onResizing = myPanel.onResize = function () {this.layout.resize();}
    
                        return myPanel;
              }
    
    
              var myScriptPal = myScript_buildUI(thisObj);
    
    
              if ((myScriptPal != null) && (myScriptPal instanceof Window)) {
                        myScriptPal.center();
                        myScriptPal.show();
                        }
              }
    
    
              myScript(this);
    

    Something like this should work:

    function myScript(thisObj) { 
    
      var textStr = "";
    
      function myScript_buildUI(thisObj) {
    
      var myPanel = (thisObj instanceof Panel) ? thisObj : new Window("palette", "My Panel Name", [0, 0, 300, 300]);  
    
      res = "group{orientation:'column', alignment:['fill', 'fill'], alignChildren:['fill', 'fill'],\
      myEditText: EditText{text:'EditText text'},\
      myButton: Button{text:'Button Name'},\
      }"
    
      //Add resource string to panel
      myPanel.grp = myPanel.add(res);
    
      // I added the next two lines.
      textStr = myPanel.grp.myEditText.text;
      myPanel.grp.myEditText.onChange =  myPanel.grp.myEditText.onChanging = textStringUpd;
    
      myPanel.grp.myButton.onClick = function (){
    
      app.project.item(2113).layer("TXT 1").sourceText.setValue(textStr);
      //or tell the script to change the soureText property of the currently selected layer (remove the two slashes from the line below and add them to the line above)
      //app.project.activeItem.selectedLayers[0].sourceText.setValue(textStr);
    
      }
    
      //Setup panel sizing and make panel resizable
      myPanel.layout.layout(true);
      myPanel.grp.minimumSize = myPanel.grp.size;
      myPanel.layout.resize();
      myPanel.onResizing = myPanel.onResize = function () {this.layout.resize();}
    
      return myPanel;
    
      }  
    
      var myScriptPal = myScript_buildUI(thisObj);
    
      // I added this function.
      function textStringUpd() {
    
      textStr = this.text;
    
      }
    
      if ((myScriptPal != null) && (myScriptPal instanceof Window)) {
                myScriptPal.center();
      myScriptPal.show();
      }
      }  
    
    myScript(this);
    

    I've added comments to indicate the changes that I made

  • How to change the "open with...". "to the zip folder?

    On the accident when opening a zip file with another program after going to the screen 'Open with', I didn't know that the small box has been checked for "Always use the selected program to open this type of file".

    Now, whenever I try to open a zip file, it doesn't with a zip on the RECORD, as he used to. It opens in whatever program is selected to open it with.

    I don't know how to make my zip files open in a zip folder.

    HELP Please!

    See http://www.winhelponline.com/articles/105/1/File-association-fixes-for-Windows-Vista.html

    Download the fusion and reg fix zip file.

    I hope this helps. Microsoft® Security MVP, 2004-2009

  • How to change the fonts with JS?

    Hello

    I have some files using the font that I want to replace it with another, but fail to understand how to do this with scripts. It's probably something very simple, but I can't go anywhere...

    for example, files indd containing character using [MyOldFont] styles like font family - > how I itterate through all objects using a few references to the old font and replace [MyNewFont] as the family of fonts by the script?

    Thank you

    K.

    In the character styles, you say:

    If (myCharacterStyle.appliedFont is "Fonts X")

    myCharacterStyle.appliedFont = 'Font Y')

    and cela for all character styles and paragraph styles probably as well. Then maybe do a find/replace on the document to catch local applications of the police:

    app.findGrepPreferences = app.changeGrepPreferences = null

    app.findGrepPreferences.appliedFont = "Fonts X"

    app.changeGrepPreferences.appliedFont = "Fonts Y"

    app.activeDocument.changeGrep)

    Peter

  • How to change the Format of the light to dark in Adobe Flash Professional CS6?

    Hello, I was wondering how to change the light to dark background in flash professional. All the tutorials are telling me to go to the preferences of the user, but I can't find it anywhere!

    I look in general preferences, but I don't see it anywhere. I was wondering if there was another way to user preferences, or change the color format.

    Thank you.

    This setting is available in flash cc.

  • Change the background color of a region, I can only change the box with text

    Hello. First of all, sorry for my English.

    I created a new model of the region in my application and I want to change the entire background to silver color.
    After reading the forum, I tried this:

    body = background-color: Silver;

    in "attributes in Table form.

    It works, but only the area with text are silver. I want the entire region with a background silver, (like a scratch on the screen, with black labels).

    My region are copied from the region of breadcrump and there the next CEB code:

    < div class = 'wire of Ariane-region' id = "' #REGION_STATIC_ID # ' #REGION_ATTRIBUTES # > #BODY # < / div >"

    I also tried putting < body bgcolor = "gray" > in several places, but never with the same results.

    Another question. I created a theme in my themes of the workspace to play with it, but... where are the files of ccs? they are not in "/ i/themes"... .and as part of the apex I don't see a way to change the footer, and an other things I want to do.

    Published by: Andres Vilallave on February 15, 2012 16:14

    Andres Vilallave wrote:
    Yes!, it works...
    Well, I think I have more visual changes now... (God thank you...)

    Good.

    But I want to learn more about the themes...
    I would like to change the theme 4, "Topaz".
    As you say, I created a copy of the file ' i/themes/theme_4"as"i/themes/my_theme_4 ".

    I have said "+ are not... create new files there as these can be changed by future updates APEX. Create your own theme folder. + ", i.e. to use a different physical location, which is referenced by another virtual folder (depending on the architecture of the Web server used).

    Then I created a new theme based on theme4 in my workspace as "my"Topaz". "" My Topaz"" theme is now available in the repository of the theme in "custom themes.
    Now I can change the templates, etc., but the css files what, image files, etc., are My_Topaz to help? Are ¿where?.
    Guess as you say I need to link "" My Topaz"" theme in the my_theme_4 folder, by assigning files in the models of the apex, how can I I do this?

    The definition of header for each page template in the theme contains elements of binding that reference the URL of the CSS as style sheets:

      
      
      
      
    

    These must be changed to refer to the new URL CSS files:

      
    

    Notice that the page templates use conditional comments to provide additional style sheets with CSS hacks and fixes for broken Microsoft browsers.

    Some other models can also reference image etc. of localities in theme files (although this is less common in the APEX 4.0 + themes).

  • It is difficult to see how to change the color of the scrollbar in gray on gray background?

    It is difficult to see how to change the color of the scrollbar in gray on gray background?

    I think you should probably use an extension or theme to replace the default colors.

    If you are not interested in all the changes that might come with a new theme, is the next extension compatible with Linux?

    https://addons.Mozilla.org/firefox/addon/noiascrollbars/

  • How to change the background of the playlist window colors in iTunes

    The background color of my playlist 'window' in iTunes is black, which is difficult to read.  How to change the background of all the playlists to a light color.

    All the indications are that the selected background colors are random and cannot be changed. If someone knows a way to change them please let us know.

  • How do I reselect the type to change.  I have a text template that I want to, but when I try to select it with the text tool always creates a new text layer.  How to change the type of the layer in my registered design?

    How do I reselect the type to change.  I have a text template that I want to, but when I try to select it with the text tool always creates a new text layer.  How to change the type of the layer in my registered design?

    OK, Bob. This give a try.

    First, open a new file and make sure the background is white, not on Transparent that I suspect you have currently defined.

    Then, type your copy. Your layers panel will then look like the top of this picture...:

    and when you drag the text on the image layer, it will look like the lower part of the sample above.

    You can then position the text layer with the tool move

  • I NEED TO KNOW HOW TO CHANGE THE BACKGROUND COLOR OF MY INDEX FINGER. HTML PAGE

    I need to know how to change the background color of my page index.html on Dream weaver cs6.

    With CSS:

    {body

    background-color: #FF0000;

    }

    Nancy O.

  • How to change the background color of selection of the selected item in the drop-down box of choice?

    How to change the background color of selection of the selected item in the drop-down box of choice?

    By default, the selection background color like 'blue', but if I want it to be "yellow" for example, how should I do?

    Thank you

    The id is applied by (I think) the skin of the ChoiceBox class. You don't need to define.

    You must apply the css in an external style sheet. You can apply the external style sheet to any parent of the box of your choice, or on-site (the most usual way to do it).

    Example:

    import java.util.ArrayList;
    import java.util.List;
    
    import javafx.application.Application;
    import javafx.scene.Scene;
    import javafx.scene.control.ChoiceBox;
    import javafx.scene.layout.VBox;
    import javafx.stage.Stage;
    
    public class ChoiceBoxTest extends Application {
    
      @Override
      public void start(Stage primaryStage) throws Exception {
        primaryStage.setTitle("Example 2");
    
        final ChoiceBox choiceBox = new ChoiceBox<>();
    
        List tempResult = new ArrayList();
        for (int i = 0; i < 10; i++) {
          tempResult.add("Item " + i);
        }
        choiceBox.getItems().setAll(tempResult);
    
        VBox root = new VBox();
        root.getChildren().add(choiceBox);
        final Scene scene = new Scene(root, 300, 250);
        scene.getStylesheets().add("choiceBox.css");
        primaryStage.setScene(scene);
        primaryStage.show();
      }
    
      public static void main(String[] args) {
        launch(args);
      }
    
    }
    

    choiceBox.css:

    @CHARSET "UTF-8";
    #choice-box-menu-item:focused  {
     -fx-background-color: yellow ;
    }
    #choice-box-menu-item .label {
     -fx-text-fill: black ;
    }
    

    Post edited by: James_D

  • How to change the color of a scanned document writing and make the background transparent

    I'm a newbie using Photoshop elements 11 and tempting - without success so far - to edit a document, I have scanned so I can upload it to a custom fabric printing service. I already scanned a handwritten recipe in color .tif format (which seems black and white, because the original is written black on white background). I also resized the image of 14 "x 23". I need help is:

    1. I want to change the color from black to red writing (specifically in the hexadecimal code cd0303).

    "2. I also want to add a border of 2" wide solid color in the same red around the 14"x 23" the recipe image (so the final image will be 18 "x 27".

    3. I want to make the background transparent instead of white recipe and to make sure that the background remains transparent when I download the final image to .png format printing service so that only the red writing and the border will be printed on the fabric.

    I would appreciate directions to do these things. For reasons I don't understand, when I created a file empty and set the color of the background transparent, then tried to make the changes I want, somewhere along the way the background changes to black.

    Thank you very much!

    Digital dabbler

    Try this:

    1. Open your scanned document and do not forget that there is good contrast. The native scan may need help.
    2. Duplicate the background layer, then turn off the visibility of the background layer by clicking on the "eye" icon. Work on the background copy layer
    3. Download the magic wand out of the toolbox tool, tolerance set at 32 (may have to experiment with this value), uncheck the "contiguous"... Left-click on a substantive area white. Press DELETE on the keyboard. Press CTRL + D to get rid of the dotted moving line.
    4. Set your foreground on cd0303 color chip
    5. CTRL + left click on the thumbnail of the layer with the writing, then edit > fill selection > foreground color
    6. Press CTRL + D
    7. Go to Select >, then change stroke (outline) selection. Race position inside, fixed width of race based on
    8. Remove the background layer, and then save to the file format which preserves transparency.
  • How to change the background color of a single line

    Hi, OTN,.

    I use JDeveloper with ADF faces 11.1.1.2 in the view layer. My question is how to change the background color of a single line in af:table?.

    Hi idir Mitra
    You can use EL to bind column for example inlineStyle (#{row.id == null?' background-color: rgb (255,214,165);':'background-color:red'})})

    Cordially Abhilash.S

Maybe you are looking for