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.

Similar Messages

  • How do I remove extra profiles from color mangement in Print Module?

    How do I remove extra profiles from color mangement in Print Module?

    If you're talking about the "short list" then click on other and then uncheck the ones that you don't want displayed. If you're talking about the long list, then you will have to browse to the folder containing the profiles and then delete them manually.

  • 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 can I extract and save a color profile from an existing file?

    I've been give a tiff file with an embedded color profile from a customer. I want to be able to save that color profile for future use. I've tried various methods with no success.

    I've tried various methods with no success.
    And those were...? You need to be specific. Generally though one would simply install the profile file rather than jump hoops to extract it from an image, where it may be incomplete or lack other critical info like other profiles or specific printer or monitor information it may reference.
    Mylenium

  • How to assign a specific color profile to an image?

    I am in the process of submitting an image electronically.
    They want me to submit images that have the color profile "ISO Coated v2 ECI".
    My image has the color profile "Adobe RGB (1998)", according to File Info, and according to Preview.
    I have downloaded the color profile from eci.org and put them in /Library/Color Sync/Profiles.
    When I open the image in ColorSync Utility, I can see the profile under 'Profiles'.
    However, when I try to assign or match or apply the profile to the image in ColorSync, it does not "stick".
    With 'Match to Profile', I can select the profile (in the dropdown menu under 'Output'). But when I then save the image (using Save, Save As.., or Export..) it seems like it does not put that profile in the image, i.e., when I open the new image using Preview, I still get the "Adobe RGB (1998)" profile.
    Same with 'Apply Profile'.
    With "Assign profile", the profile I want is greyed out.
    I also tried Pixelmator, but that does not offer me the profile "ISO Coated v2 ECI".
    Am I missing something?
    Could some kind soul please shed some light on this?
    Or point me to the right web page or forum?
    All insights and suggestions will be highly appreciated.
    Best regards,
    Gabriel.

    Thanks for your response.
    But, first of all, the profile I want to "set" is not in that list in Preview.
    Second, I believe now that I don't need to just *assign* the profile, I need to *match* the image to it (the profile is an output profile).

  • 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.

  • HT5833 What happens if you remove a profile from ipad? Can you get it back?

    What happens if you remove a profile from iPad? Can you get it back?

    Hi Gumby694,
    You can only get the profile back if you plug into a computer that has the configuration profile in Apple Configurator or get the profile wirelessly from an MDM.
    Hope this answers your question.
    ~Joe

  • Where does Photoshop CS5 pull custom color profiles from?

    Photoshop CS5 is not seeing my new custom color profiles for my scanner when i try to "Assign profile" or "Convert profile". it sees my old profiles that I used in CS4. i have made sure to copy the profiles the following directories:
    /System/Library/ColorSync/Profiles/
    /Library/ColorSync/Profiles/
    myuseraccount/Library/ColorSync/Profiles/
    where else does CS5 pull color profiles from? By the way, those old color profiles DO NOT exist in the above directories. your help is greatly appreciated.
    I am running Photoshop CS5 12.0.1 x32 on mac os x 10.6.4.

    racso wrote:
    …do you know of anyway to reconcile these names because Apple does not.
    In all honesty, I've never had occasion to think about any such "reconciliation".  I've never re-named a profile's file name in the Finder, and in the few cases where I've run into a discrepancy there, I just make it a point to remember the internal name and forget about the other one. 
    Wo Tai Lao Le
    我太老了

  • Removing Color Cast with TIFF images?  (PSE 8)

    Hello,
    Hoping someone can help.  I'm trying to "remove color cast" with TIFF images and I'm not seeing the option as available.  It works fine when I try to use it with JPEG images.
    To be clear....I'm using PSE 8...after opening a picture (of course), on the top menu "Enhance", then "Adjust Color".  When I'm working with a TIFF image the option "Remove Color Cast" is not available/active.  It works fine with JPEG images.
    What am I missing?
    Thanks,
    Rich

    Alternatively if you want to keep the file at 16 bit click File >>Open As >>Camera Raw
    Then use the temperature and tint sliders to edit your tiff.
     

  • 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.)

  • Make color palette from an image

    Guess I didn't phrase the question right... will try again =
    I did a painting
    I want to do another painting using the full color palette from that image (usually swatches in Corel Painter which does this)
    No indexed color
    RGB or CMYK palette
    working with photoshop CS3
    the painting I did shown below
    publisher liked it - need to do more art using same colors - without picking them one at a time from the image

    I use both (Painter and Photoshop)...
    For some reason (and some of the beta testers involved in developing Painter have said this) Painter is not really stable... seems to suffer from a memory leak - meaning after a period of time it loses memory and will not even open an image it created (even with a boatload of Ram - which it can't seem to manage).
         The solution is to reboot. Also, even though I may work with Painter, I always do final color edits/setup for publication using Photoshop (including my 3D renders) -
         You are right about the capabilities of Painter, but Photoshop remains the big daddy of color work.
    Thanks for your explanations... I'm decidedly low-key tech...
         I doodle, paint, etc. I took up digital because I hated getting dog and cat hair in my paintings and the nightmare of revising (client edits) to airbrush work - and publishers are all digital, so I send them digital files - makes all of us happy
    Nate Owens: painter | illustrator | visionary's albums on Flickr

  • I use my own color profiles from Photoshop CS6/Mac Pro - how do I turn of Epson Artisan 837 printer color management?

    I use my own color profiles from Photoshop CS6/Mac Pro - how do I turn of Epson Artisan 837 printer color management?

    Choose Photoshop Manages Color in the CS6 print dialogue. At the top, click the Print Settings button and disable any color management settings for the printer.
    Edit: Correction, that's CS6 in Snow Leopard. In Mountain Lion, if you check the print settings, color management for the printer should automatically be disabled when using Photoshop Manages Color.

  • How do I remove cmyk profiles from a pdf. and keep it strictly 2 color process?

    My company is trying to outsource a booklet to an offset printing company. We are strictly digital printing, and I honestly have no experience with offset. In the past I would build the documents with the pantone colors that were needed in whatever software I was using to create it (Illustrator, Indesign), do my checks and fixes in Acrobat and send it to the printer, and it would get done. The current printer is having an issue with the files that I'm giving him. He says, that the files contain CMYK profiles, and has to strictly be 2 color process. The file is pointing to the correct spot colors, but it does still does contain the CMYK profiles, list I have no idea how to remove the CMYK profiles, I can convert them to RGB, but that doesnt help. How do I remove these profiles and make the PDF strictly use spot colors, or does this not make any sense, Honestly it doesn't to me.

    Honestly it does not to me either.
    You have a history of creating spot color files - but are using a new vendor...what I'm hearing from the vendor doesn't make sense
    ...do my checks and fixes in Acrobat and send it to the printer, ...
    Have you checked the PDF - verified that your Spot colors are Spots, not cmyk builds?
    The current printer is having an issue with the files that I'm giving him. He says, that the files contain CMYK profiles, and has to strictly be 2 color process.
    Communicate very clearly  - cmyk profiles or cmyk elements?
    To my limited knowledge, every file will have a profile - it's a moot element in spot color printing -

  • Removing color profile (if any) from over-exposed Canon 5D mov file's

    I am working with some footage from a cameraman's Canon 5D, they are in mov format, but I am having a problem when I import them to FCP (they look the same way when I play them in QT too).
    The color saturation is extremely high, and I know it was not filmed that way on set, I want to know if there is some color profile in the mov files that Canon 5D's record and if so how do I remove them?
    Basically everything looks way over-exposed and I know the 5D is not that poor of quality.

    Below is the FCP info from one of the video files:
    It appearently uses the h.264 codec for the video stream.
    I know that the picture was not over saturated during the shoot because we reviewed it then on set, but now it looks different.
    I even put both my arms on my camera guy's shoulder and looked him square in the eyes and told him that "the Canon 5D has a reputation for being over-exposed and over-saturated, I want under-exposed, make sure you pay attention to that and review every shot". (don't worry I was being nice to him, we're friends).
    I should mention one more thing, when I place the video in a sequence on FCP's timeline, sometimes when I apply affects to it and forget to render it, there is a moment when the video looks properly exposed and then goes back to looking over-exposed when I quickly run the scrubber over it and not let FCP a chance to display properly.
    So I know, or at least have reason to believe there is a color profile in there somewhere that is causing it to look over-exposed and over-saturated. I just can't get rid of 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

Maybe you are looking for

  • Unit testing with TLF

    While unit testing complex formating, I hit several problems. Below are simple tests that fail with an error. Does anybody know what is wrong with these tests? Thanks for any hints, Marc     public function test_apply_Link():void         var init:XML

  • Application iCal deleted - Impossible to download iCal on my MacBook

    Hi, I accidentally deleted the application iCal from my MacBook, and now it is impossible to download it again! I've been on the apple website and the only iCal available to download is iCal 1.5.5 but this version does not work because it is not comp

  • Debug_messages=yes runtime parameter in forms 11g

    Has anyone managed to run a form in 11g with the debug_messages=yes parameter turned on successfully? I've tried setting it in the developer preferences and in the url to no avail. If anyone has managed to get it working please share the details. Tha

  • TIFF and JPG Files Are Black?

    I have posted this question twice before but didn't get it resolved. I really need to get some help on this. I have some old projects that I use in the classroom while I am teaching. They are TIFF images and often have sound clips with them. I create

  • Scout not working

    Have recently installed the scout to perform memory profiling. When flash content is running on IE or FF, the scout is not showing any data. My colleague used the same scout installer and its working for him. My flash version is 11.5 and also have fl