Remove a background from an image

this seems so basic but I am just new to this and trying to create banners for my garden furniture websiteRemoving  . how do you remove the background from a lifestyle image so that the image looks like it is floating. thanks for your help.

I Googled "photoshop mask."
There are many tutorials out there. Here's one:
http://designshack.net/articles/graphics/a-complete-beginners-guide-to-masking-in-photosho p

Similar Messages

  • How do you remove the background from an image

    how do you remove the background from an image thathas a white background?

    First, change the background layer to a normal layer if needed, by dragging the padlock to the trash can.
    Then use the quick selection tool or magic wand tool to select your background.
    Now you can either delete the background, or click the icon at the bottom of the layers panel that looks like a circle inside a square. This icon will convert the selection to a mask.
    The advantage of the mask is, it is non-destructible. In that you can change your mind at any time. Whereas deleting pixels is permanent once you close the file and there is no duplicate files. (A way around this is to make a duplicate layer and hide it. But that does make the file larger.)

  • How do I completely remove a background from an image & keep it as a .jpeg?

    Hi , I already know how to remove backgrounds from images, and create a transparent background.  However, I need to be able to use the resulting image in another program  called Scratch.  And as far as I know, it does not accept  .tiff, .pgn, .psd or gifs.
    How do I completely remove that background so that it doesn't show up white in other programs when I save it as a .jpeg?

    Jpgs don't support transparency.  It looks like Scratch may support pngs and other formats, but the transparency may not come through.  From what I've read, you may have to use the transparency brush in Scratch to achive what you want.

  • I cannot remove embedded barcode from the image. Due to saving compression.

    Hi guys,
    I recreate a thread to prevent confusing on my previous one. Please only reply to this thread thanks.
    Ok, for a start I will give some general description about the application I made.
    I had some problem with the image being compressed while it is saved.
    Because saving an image will cause it to compress and had its pixel valued changed, I could not successfully remove the bardcode that is embedded inside a image(although some of the pixel value will be returned to original normally). I had placed my code below and will accept any opinion that will help me solve the removal of barcode problem.
    What my application does is actually very simple. It will take the pixel value of the area inside the image that will be embed with the barcode first, then it will take the pixel value of the barcode and use the formula (1-alpha * Image pixel value) + (alpha * barcode pixel value) = new pixel value which will contain the barcode that had been embedded inside. The formula works great but when I saved the image the pixel value will change due to compression. On the removal of barcode my application will read every pixel value from the image embedded with barcode (only the area with barcode embedded), then it will go on to read every pixel value of the barcode used for embedding and then use the formula (Embedded image pixel value - (alpha * Barcode pixel value) - (1 - alpha) = original pixel value. But due to the reason that compression will change some of the pixel inside the saved image to drop in its value, the result from the removal formula will be negative and hence caused my result image to become wierd as it will red colors instead of original color on some of its pixel. I tried saving under PNG format which people said to be lossless compression but the result is still the same.
    So I need to ask you guys for opinion or help me find the part where I actually did wrongly and caused the image pixel value to change.
    Thanks. Please proceed and read below for the codes that I used. It is messy and I will sort it out later.
    When alpha is set as 1 the barcode will appear to be overwrite onto the image. But when alpha is set as 0.1 the barcode will appear to be transparent and almost seems to be not there on the image when embedded.
    This is the code I used to retrieve image pixel when embedding:
    public static int[] getImagePixelValue(BufferedImage image, int x, int y){
              //Create an array to store image RGB value
              int[] imageRGB = new int[3];
              //Get height and width from input image
              int imageWidth = image.getWidth();
              int imageHeight = image.getHeight();
              //Get raw RGB value from image
              int imageValue = image.getRGB(x, y);
              //Convert image raw RGB value
              int imageRed = ((image.getRGB(x, y) >> 16) & 0xff);
              int imageGreen = ((image.getRGB(x, y) >> 8) & 0xff);
              int imageBlue = image.getRGB(x, y) & 0xff;
              //Input the converted RGB value into the array
              imageRGB[0] = imageRed;
              imageRGB[1] = imageGreen;
              imageRGB[2] = imageBlue;
              /*//Print out the pixel value to check
              System.out.println("Image red pixel: "+imageRGB[0]);
              System.out.println("Image green pixel: "+imageRGB[1]);
              System.out.println("Image blue pixel: "+imageRGB[2]);*/
              //Return image RGB value
              return imageRGB;
    }This is the code I used to retrieve barcode pixel for embedding:
    public static int[] getWatermarkPixelValue(BufferedImage watermark, int x, int y){
              //Create an array to store watermark RGB value
              int[] watermarkRGB = new int[3];
              //Get height and width from input watermark
              int watermarkWidth = watermark.getWidth();
              int watermarkHeight = watermark.getHeight();
              int watermarkValue = watermark.getRGB(x, y);
              //Convert watermark raw RGB value
              int watermarkRed = ((watermark.getRGB(x, y) >> 16) & 0xff);
              int watermarkGreen = ((watermark.getRGB(x, y) >> 8) & 0xff);
              int watermarkBlue = watermark.getRGB(x, y) & 0xff;
              //Input the converted RGB value into the array
              watermarkRGB[0] = watermarkRed;
              watermarkRGB[1] = watermarkGreen;
              watermarkRGB[2] = watermarkBlue;
              /*//Print out the pixel value to check
              System.out.println("Watermark red pixel: "+watermarkRGB[0]);
              System.out.println("Watermark green pixel: "+watermarkRGB[1]);
              System.out.println("Watermark blue pixel: "+watermarkRGB[2]);*/
              //Return watermark RGB value
              return watermarkRGB;
         }This is the code I used for merging the image pixel and barcode pixel to get the embedded pixel value:
    public static int[] getEmbeddedPixelValue(int[] imagePixelValue, int[] watermarkPixelValue, double alpha){
              //Create a object to hold embedded pixel value
              int[] embeddedRGBValue = new int[3];
              //Change image pixel value into double calculating equation
              double imgRedValue = (double) imagePixelValue[0];
              double imgGreenValue = (double) imagePixelValue[1];
              double imgBlueValue = (double) imagePixelValue[2];
              //Change watermark pixel value into double calculating equation
              double wmRedValue = (double) watermarkPixelValue[0];
              double wmGreenValue = (double) watermarkPixelValue[1];
              double wmBlueValue = (double) watermarkPixelValue[2];
              //Equation for embedding image and watermark together
              double embeddedRed = ((1.0 - alpha) * imgRedValue) + (alpha * wmRedValue);
              double embeddedGreen = ((1.0 - alpha) * imgGreenValue) + (alpha * wmGreenValue);
              double embeddedBlue = ((1.0 - alpha) * imgBlueValue) + (alpha * wmBlueValue);
              //Changing embedded value from double to int
              int embeddedRedValue = (int) embeddedRed;
              int embeddedGreenValue = (int) embeddedGreen;
              int embeddedBlueValue = (int) embeddedBlue;
              //input the embedded RGB value into the array
              embeddedRGBValue[0] = embeddedRedValue;
              embeddedRGBValue[1] = embeddedGreenValue;
              embeddedRGBValue[2] = embeddedBlueValue;
              //Return embedded pixel value
              return embeddedRGBValue;
         }This is the code where I used for the embedding process:
    else if(target == embedButton){
                   String xCoordinate = JOptionPane.showInputDialog(embedButton, "Enter coordinate X", "When you want to embed the watermark?", JOptionPane.QUESTION_MESSAGE);
                   String yCoordinate = JOptionPane.showInputDialog(embedButton, "Enter coordinate Y", "When you want to embed the watermark?", JOptionPane.QUESTION_MESSAGE);
                   int xValue = Integer.parseInt(xCoordinate);
                   int yValue = Integer.parseInt(yCoordinate);
                   int wCounter = 0;
                   int hCounter = 0;
                   //Create file object to be used in embedding and removing watermark
                   File inputImage = new File(imagePath);
                   File inputWatermark = new File(watermarkPath);
                   //Convert string into double for calculation of embedded pixel value
                   try {
                        alphaDouble = Double.valueOf(alphaValue).doubleValue();
                   catch (NumberFormatException nfe) {
                        System.out.println("NumberFormatException: " + nfe.getMessage());
                   try{
                        //Define selected image as testPic and make java read the file selected
                        BufferedImage image= ImageIO.read(inputImage);
                        BufferedImage watermark= ImageIO.read(inputWatermark);
                        BufferedImage testing;
                        //Get height and width value from the selected image
                        int imageWidth = image.getWidth();
                        int imageHeight = image.getHeight();
                        //Get height and width value from the selected barcode
                        int watermarkWidth = watermark.getWidth();
                        int watermarkHeight = watermark.getHeight();
                        int totalWidth = watermarkWidth + xValue;
                        int totalHeight = watermarkHeight + yValue;
                        //Use nested for loop to get RGB value from every pixel that the barcode will be embedded in the selected image
                        if(totalWidth <= imageWidth && totalHeight <= imageHeight){
                             for (int h = yValue ; h < totalHeight; h++){
                                  for (int w = xValue; w < totalWidth; w++){
                                       int[] imagePixelValue = getImagePixelValue(image, w, h);
                                       int[] watermarkPixelValue = getWatermarkPixelValue(watermark, wCounter, hCounter);
                                       int[] embeddedPixelRGBValue = getEmbeddedPixelValue(imagePixelValue, watermarkPixelValue, alphaDouble);
                                       setRed(image, w, h, embeddedPixelRGBValue[0]);
                                       setGreen(image, w, h, embeddedPixelRGBValue[1]);
                                       setBlue(image, w, h, embeddedPixelRGBValue[2]);
                                       wCounter++;
                                       if(wCounter == watermarkWidth){
                                            wCounter = 0;
                                            hCounter++;
                        else{
                             JOptionPane.showMessageDialog(embedButton, "The watermark cannot be embedded at the coordinates.");
                        tempImage = image;
                        imageIcon = new ImageIcon(tempImage);
                        labelImage.setIcon(imageIcon);
                        imagePanel.add(labelImage);
                        container.add(imagePanel, BorderLayout.CENTER);
                        setVisible(true);
                        System.out.println("Embedding completed");
                   catch(Exception errorEmbedding){
                        //If there is any error, the try and catch function will tell you the error
                        System.out.println("The following error occured: "+errorEmbedding);
              }This is the code I use to save the image that had been embedded with the barcode:
    else if(target == saveAction){
                   JFileChooser chooser = new JFileChooser();
                   FileNameExtensionFilter filter = new FileNameExtensionFilter("JPG & GIF Images", "jpg", "gif");
                   chooser.setFileFilter(filter);
                   chooser.setCurrentDirectory(new File("."));
                   int returnVal = chooser.showSaveDialog(getParent());
                   if(returnVal == JFileChooser.APPROVE_OPTION) {
                        String name = chooser.getSelectedFile().getAbsolutePath();
                        //Create a string instant to hold outputImage path name
                        String saveFile = chooser.getSelectedFile().getName()+"."+fileType;
                        //Create file output to decide what name will be used to save the file
                        File outputImage = new File(saveFile);
                        try{
                             //Save the file with the name used
                             ImageIO.write((RenderedImage) tempImage,fileType,outputImage);
                        catch(Exception errorSaving){
                             //If there is any error, the try and catch function will tell you the error
                             System.out.println("The following error occured: "+errorSaving);
                   else{
              }This is the code I used for removal process of barcode:
    else if(target == removeButton){
                   //Create file object to be used in embedding and removing watermark
                   File inputImage = new File("removalTesting.jpg");
                   //File inputWatermark = new File(watermarkPath);
                   //Used a defined barcode for testing of removing barcode from embedded image
                   File inputWatermark = new File("barcode.jpg");
                   /*//Convert string into double for calculation of embedded pixel value
                   try {
                        alphaDouble = Double.valueOf(alphaValue).doubleValue();
                   catch (NumberFormatException nfe) {
                        System.out.println("NumberFormatException: " + nfe.getMessage());
                   //Used a defined alpha value for testing of removing barcode from embedded image
                   //alphaDouble = 0.5;
                   //Create x and y value for the starting coordinates of barcode embedded in the embedded image
                   int xValue = 0;
                   int yValue = 0;
                   int wCounter = 0;
                   int hCounter = 0;
                   try{
                        //Define selected image as testPic and make java read the file selected
                        BufferedImage image= ImageIO.read(inputImage);
                        BufferedImage watermark= ImageIO.read(inputWatermark);
                        //Get height and width value from the selected image
                        int imageWidth = image.getWidth();
                        int imageHeight = image.getHeight();
                        //Get height and width value from the selected barcode
                        int watermarkWidth = watermark.getWidth();
                        int watermarkHeight = watermark.getHeight();
                        int totalWidth = watermarkWidth + xValue;
                        int totalHeight = watermarkHeight + yValue;
                        //Use nested for loop to get RGB value from every pixel that the barcode had been embedded in the embedded image
                        if(totalWidth <= imageWidth && totalHeight <= imageHeight){
                             for (int h = yValue ; h < totalHeight; h++){
                                  for (int w = xValue; w < totalWidth; w++){
                                       int[] imagePixelValue = getImagePixelValue(image, w, h);
                                       int[] watermarkPixelValue = getWatermarkPixelValue(watermark, wCounter, hCounter);
                                       int[] removedPixelRGBValue = getOriginalImagePixelValue(imagePixelValue, watermarkPixelValue, alphaDouble);
                                       setRed(image, w, h, removedPixelRGBValue[0]);
                                       setGreen(image, w, h, removedPixelRGBValue[1]);
                                       setBlue(image, w, h, removedPixelRGBValue[2]);
                                       wCounter++;
                                       if(wCounter == watermarkWidth){
                                            wCounter = 0;
                                            hCounter++;
                        tempImage = image;
                        imageIcon = new ImageIcon(tempImage);
                        labelImage.setIcon(imageIcon);
                        imagePanel.add(labelImage);
                        container.add(imagePanel, BorderLayout.CENTER);
                        setVisible(true);
                        System.out.println("Embedding completed");
                   catch(Exception errorEmbedding){
                        //If there is any error, the try and catch function will tell you the error
                        System.out.println("The following error occured: "+errorEmbedding);
              }Sorry if the codes are in a mess, I did not had the time to sort it out yet but most likely do it when I got the removal of barcode done.
    Follow this link to have a look of the result I see in my application when I got the barcode embedded into the image I selected:
    [http://img356.imageshack.us/my.php?image=beforeremovalresultmg2.jpg]
    Follow this link to have a look of the result I see in my application after I got the barcode removed:
    [http://img523.imageshack.us/my.php?image=removalresultmx4.jpg]
    As you can see from the link, after I remove the barcode from the image. Some of the pixel actually went back to normal in the barcode area when the the barcode is embedded into the image. But some pixel in the barcode area had its value changed due to compression when I save the image file I think.
    Anyone can help me find out the problem?
    Thanks.

    KamenRider wrote:
    I suspect the problem lies in the code when I save the image. Because people said that PNG was loseless compression but when I saved in PNG some of the pixel went back to normal while some did not. This is obviously the cause from changing of pixel value when I saved the image.You are almost certainly wrong. This is trivially easy to check. Print out the color of a certain pixel immediately before you save it. Open the saved PNG in your favorite image manipulation program and check the saved value of that same pixel. When you re-load the saved PNG, print out the color again. It should be unchanged.
    Thanks you for trying to help me spot the problem but the formula is correct. The alpha value i used in my application is used to set the transparency of the barcode that will be embedded in the image. Hence, when alpha = 1 the new pixel value should be the barcode value. ^^The formula isn't wrong, it's just not doing what you think it's doing. Remember that you're working with ints here, not floating point numbers, so they have finite precision. When you case from double to int, fractions are dropped. As morgalr pointed out, your formula is:
    (1-alpha * Image pixel value) + (alpha * barcode pixel value) = new pixel value You didn't show us the code for getOriginalImagePixelValue but I imagine it's:
    original pixel value = (new pixel value - alpha * barcode pixel value) / (1 - alpha)On a piece of paper, take alpha = 0.9, image pixel = 17 and barcode pixel = 100. Calculate out what you should get for new pixel value and then calculate what you should get for original pixel value. You will find they don't match.

  • How do I remove the background from a movie / sound problems

    Apologies, not really sure what I’m doing…
    How do I remove the background from a movie I made?
    I imported a QT movie at 368/272 pixels, but for whatever
    reason the HTML jumps up to 550/400.
    The movie is still 368/272 but there is a background border
    making it 550/400. Tried all sorts of settings in Publish but
    can’t get rid of it. Can I keep the movie (and controller)
    and not the background?
    I can get round it by changing the background colour, but
    surely there must be another way.
    Also: My QT file was fine but the .flv has a stuttering
    sound, any idea what could cause that?
    Thanks, and Thanks!

    If you want to remove a background and add a new one Photoshop Element for Mac makes it rather easy to do:
    OT

  • How can I remove people tags from MULTIPLE images in Organizer 13?

    How can I remove people tags from MULTIPLE images in Organizer 13?  The strategy for removing keyword tags does not work. It appears that keyword tags and People tags are considered something completely different in 13.  I highlight multiple images, right click, and under keyword tags it says there are no keyword tags. There does not appear to be an option for people or other tags. Can anyone help? It is going to take literally hundreds of hours for me to do this one photo one tag at a time.  ??

    Comp. 792 wrote:
    Hi, my linked images all have dashed lines at the bottom of the images. I searched for an answer and someone said to add:
    img a {text-decoration:none:}
    to the end of my CSS,
    That CSS is complete nonsense. The correct way to remove borders from around links is here: http://forums.adobe.com/thread/417110.
    If you want to get rid of dotted lines, they are almost certainly caused by the outline property. However, outlines around links are there for a reason: it provides a visual "you are here" clue to people who navigate the web with the keyboard, either through preference or because of disability. You shouldn't remove the dotted outline without providing a different visual clue.

  • Remove color profile from an image

    How to remove color profile from an image is it possible through any script?
    Manual Try - Don't Color Manage this Document: option is used to instruct Photoshop to remove an existing embedded profile but when I save the file, close and open it I still see a color profile in the embedded image.

    On the mac you could have sips do this (it may depend on the file type). You would loose the files creator if Photoshop was its last editor though.

  • Removing green background from videos (Chromakeying)

    Hi,
    I am currently trying to use JMF to remove green background from the videos I have recorded. I am trying to merge 2 videos ( 1 video in the background) and (this video w/green bacground removed in the foreground). Does merge.java from JMF do the job for the second part? Please help!!

    Merging works only with one video sitting on top of another, but the top video positioned on the top left corner. Is there some way to have the top video positioned in the center? I am using the merge.java file from the JMF solutions. Any way to remove the green/blue background of a video using Java codes? Or is there a freeware tool to do so and then have the java program call it?

  • I need to know how to remove the color background from an image PLEASE

    Hello, I'm trying to remove an image within an image so that the image removed stands alone as its own file.
    http://fc08.deviantart.net/fs47/f/2009/166/0/5/Straw_Hat__s_Flag_by_fenrir1992.jpg
    ^ So from that image, I'm trying to remove the black background so I only have the skull with hat image (and the bones behind it of course).
    The reason for this is because I want to use it on a shirt, and that black background image does not match the shade of black on the shirt.
    The file above is the image I wanted to use, with a size of 2874 x 2000. If anyone could show me how to do this I would greatly appreciate it

    Just use the MAGIC WAND TOOL, and select the black area(s). Hit the delete button... and you're done

  • How Do I: Remove White Background From a Non-Standard Sized PDF?

    Hello. Been a little while since I was last here.
    My issue is pretty simple. I am creating a PDF in Acrobat Pro X from MS-Word 2007. My document is landscaped half-page sized (US), so dimensions are: 8.5" wide, 5.5" high.
    When I attempt to print to PDF, the dimensions come out correctly, but there is a white background which is the size of a landscaped 8.5" x 11" sheet. Against this background, the 8.5" x 5.5" area is situated (nearly) centered vertically, but "right-justified" horizontally (see image). I need to find out how to fix this.
    Here's what I know:
    In MS Word:
    For "Page Setup" (under Page Layout tab):
    - under Margins tab, orientation is landscape;
    - under Paper tab, "Paper size" is "Custom size", with Width 8.5", Height 5.5" ;
    - No changes under Layout tab.
    For "Preferences" (under Acrobat tab)
    - under Settings tab, "Conversion Settings" are a custom setting ("Advanced Settings"), with "Default Settings" of Width 8.5 inches and Height 5.5 inches.
    When I Print > Adobe PDF:
    For "Properties" in Print window:
    - Under Layout tab, "Orientation" is "Landscape" ;
    - Under Paper/Quality tab, "Paper Source" is custom with Width 8.5" and Height 5.5".
    - Under Adobe PDF Settings tab, "Default Settings" is "High Quality Print (Custom)" with (Custom) being the settings I set under Acrobat > Preferences.
    - Also under Adobe PDF Settings tab, "Adobe PDF Page Size" is custom with Width 8.5" and Height 5.5".
    The result is pictured above.
    The last thing I did before posting this was run Help > Repair Acrobat Installation in Adobe X. Any suggestions? You can't do worse than I have.

    If you want to remove a background and add a new one Photoshop Element for Mac makes it rather easy to do:
    OT

  • I'm trying to remove the background from pictures and PDFs.

    Hello All, this is the 3rd or 20th time I've tried removing backgrounds. I install water equipment for a living and try to manage my website on my own. Each time my products change, my suppliers send me literature in PDF format. Sometimes I'm installing the equipment before I have the literature. I take pictures of every install I perform and would love to use my pictures without the dirty basement in the background.
    I've spent hours trying to work with just one picture. All that fine detail, erasing, and zooming in and out, then click! I lose it, or can't save it, or it just doesn't work. I've watched tutorials, and watched it done right in front of me (on a PC) at my print shop. I thought I'd ask this community, because I've had 100% luck on here everytime.
    So, can I use the same software to remove images from PDFs and backgrounds from pictures? Which do you recommend? I have Adobe Photoshop CS2 and Adobe ImageReady CS2. I also have Gimp that I downloaded for Mac. Since I've never been successful with any of them, I'm not sure which one is wasting my time.
    Thank You,
    Steve

    Extracting images and removing backgrounds can be very complicated. There are many different techniques and methods for doing it: the trick is finding the right one for the image you're working on. Every image is different and what may work for one may not work for another. You can do all of the basic techniques in Photoshop CS2, though it's a little easier in newer versions. I'd recommend going through as many online tutorials on image extraction as you can tolerate. There are hundreds of them. (While I find him annoying to listen to, Russell Brown has made some excellent tutorials on the subject. Try this one to start.
    While it is possible to edit an image embedded in a PDF, you really need Acrobat Pro  to do it. Acrobat sends the image to Photoshop, where it can be edited, and then Photoshop sends it back to Acrobat after you're done. Or you can save it as a separate file. In the 20+ years I've used Adobe's stuff, I've never done that. It's usually much easier to do a screen capture of the image and then work on that copy. (There are some sizing and magnification issues involved with this, however.)
    In Photoshop, pay particular attention to Quick Mask mode, learn how masking works, how to make a selection based on a color range, how to use the Pen Tool to make a path that can be used as a selection, and how to save and load selections. Getting a clean extraction takes a lot of practice and it's almost never quick or easy, but it's worth the effort to learn how to do it well.

  • Cutting out an image/ removing a background​/ editing an image

    With Sprout by HP you can remove objects from their backgrounds, also called extracting, cutting, or masking.
    You simply select the image to create a preview, choose the part of the image you want to keep, and choose the part of the image you want to discard.
    You can also zoom in or out to get more control over what you select.
    You can check out How to Remove the Background with Sprout by HP to read more about this function.
    I work for HP, supporting the HP Experts who volunteer their time and technical knowledge to help others.

    In Photoshop use File > Save for Web & Devices and choose the GIF or the PNG format.
    Note that the PNG has two versions, 8 bit  or 24 bit.
    Check the tranparency checkbox.
    PNG (24 bit) provides the best result but also the largest file size.
    miss marple

  • How to remove "Blue filter" from multiple images in the History Panel

    I am using Lightroom 4.3 on Windows 7 pc.  I have a collection with approximately 650 images.  I was working in the collection and had all the images selected.  Somehow I inadvertently must have hit a keyboard shortcut that effected all the images.  All of the images are negatively effected and they now look terrible.  When I go to the History Panel, all the images have "blue filter" as their most recent entry.  If I select one image and go back to the step before the "blue filter" everything looks fine  again.  My problem is I have this effect in 650 images.  When I try and do the change in one image and then synch to the rest, I don't know what box to check to remove this "blue filter" that has been added to all the images.  I know I can do them one by one, but with 650 images, it's a long and tedious process.  Any way I can remove the "blue filter" from multiple images in a collection?
    Thanks,
    Matthew Kraus

    If you’ve just done it, then an Undo operation would reverse things on all the images, I think.  But if it took you a while to see the problem, then you might have done something to cancel the undoability.
    Isn’t Blue Filter a built in LR preset that modifies the HSL settings:  http://kb2.adobe.com/community/publishing/924/cpsid_92473.html
    Open the HSL panel and step back into History on one of the affected images so the effect of the Blue Filter preset has been undone and notice what HSL sliders change, and then if the 650 images DON’T already have any HSL adjustments you should be able to sync JUST the pre-Blue-Filter HSL adjustments (perhaps all zeros) to the other 650 images.

  • How to remove this background from Photoshop please help?

    This is what I have. http://img89.imageshack.us/img89/1681/xdzj.png
    CS6
    I used the magnetic and polyganol lasso tool to remove sections, after I drew a section, I pressed enter and then backspace, which made the section turn gray. But now it's just gray, on the same layer, and I can't do anything about it. I wanted an empty background under the image.
    I can't use the magic selection tool because it DOES NOT select around the image properly (it selects INSIDE of the image) not where I cropped it out. And the magic selection tool is crappy. It leaves zig zagged white spots so why would I use that. I cropped the entire thing out, and now I can't even see it without the background? What the F**king* F**k?

    You are indeed looking at the transparency, there is nothing below that layer.  Your Layer panel only shows your one layer.
    The circles you created (with the eraser, I guess?) show the checkered scheme that denotes the transparency.
    Without knowing what exact version of Photoshop, of your OS and platform (the screen shot shows Windows) I can't even begin to guess how you got the gray in there: some option in a tool somewhere, the paint bucket even…?
    You can embed images in your posts by using the little camera icon in the Reply Editor of the forum's web interface.

  • Question about setting the background from an image over the internet.

    Hello ,
    If I want the background of my panel to be set from an image over the internet directly do I just add that URL right away like this :
    protected final static String imagePath = "http://www.engr.wisc.edu/2010/background.jpg";
       icon = new ImageIcon(AuthScreen.imagePath);
            JPanel panel = new JPanel(){
                protected void paintComponent(Graphics g)
              Dimension d = getSize();
              g.drawImage(icon.getImage(), 0, 0, d.width, d.height, null);
              super.paintComponent(g);
              };instead of this :
    protected final static String imagePath = "d:\\javaapps\\bg.jpg";cuz I did that but it isnt working .
    Thanks.

    I don't see how, try it out:
    import java.awt.*;
    import java.awt.image.*;
    import java.net.URL;
    import javax.swing.*;
    import javax.imageio.*;
    public class ForumJunk{
      ForumJunk(){
        JFrame f = new JFrame("Forum Junk");
        JPanel p = new MyJPanel();
        f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        f.add(p);
        f.pack();
        f.setVisible(true);
      public static void main(String[] args) {
        new ForumJunk();
      class MyJPanel extends JPanel{
        BufferedImage bi = null;
        MyJPanel(){
          try{
            bi = ImageIO.read(new URL("http://www.kodiakfishingbc.com/Editor/assets/chris03resize.jpg"));
            this.setPreferredSize(new Dimension(bi.getWidth(), bi.getHeight()));
          }catch(java.io.IOException e){
            System.out.println(e.toString());
        public void paintComponent(Graphics g){
    //      super.paintComponent(g);
          ((Graphics2D)g).setBackground(Color.green);
          g.clearRect(0, 0, bi.getWidth(), bi.getHeight());
          g.drawImage(bi,0, 0, this);
          super.paintComponent(g);
    }

Maybe you are looking for

  • Runtime Error in JTable with JTableModel Implementation

    Hi, I tried to do a JTable (named "table) in my program, with an implementation of JTableModel, called DataContent (obj named "dc"). Now if I try to change dc's data and refresh the table in the window by doing a "table.setModel(dc);", my programm gi

  • Display output of ref cursor in sql developer

    Hi, I am writing following procedure. create or replace procedure test_output( arg_like in varchar2, cv_results in out sys_refcursor) is Type sys_refcursor is ref cursor; begin open cv_results for select * from claim_status where status_id like 'arg_

  • Compatibilidade do SAP em Netbooks com Windows 7 Starter Edition

    Instalei o SAP em um netbook HP com Windows 7 Starter Edition, ao tentar executar o SAP Logon não abre a tela de logon com usuario e senha. Existe alguma incompatibilidade? Este netbook não está ingressado no dominio da rede, pois trata-se de um equi

  • Make Safari thumbnails permanent in the dock?

    When I have a Safari window minimized, it appears as a thumbnail on the right side of the Dock.  But when I click on it to make the window appear again on the screen, the thumbnail disappears.  Which means that I can't just use the thumbnails in the

  • SCCM Client R2 CU3 in OSD

    Our base image was created using SCCM build and capture. I created the base image using sccm client 2012 SP1 ( 5.00.7804.1300). Now, we recently upgraded to SCCM 2012 R2 CU3 and we would like to update our deployment production task sequence with the