Trying to create transparent background on line art image

I have an image that's black line are over a white background. I'm wanting to make that background transparent, and then lay it over another image so that only the dark lines show.
I've tried making the background of the line art image transparent, and then Placing that image on top of the other image, but it came in with a white background. I'm looking for the full photoshop version equivalent of where you could select the background color, and set it to transparency.
Also, give I have the line art image already placed on the background image, if there's a way to change the transparency of that image, that would be even better.
I'm going by instructions on the support page "Change the background color of a document", but I'm not sure where it is I open the Fonts window.
Any help on this will be greatly appreciated.
d

If you want to create a blank file with transparent background, go to File>new>blank file, then select "transparent" under Background Contents,
If you open an image with a white background, the Background layer is a locked layer. Duplicate the background layer; it will titled background copy layer
Now, shut off the visibility of the background layer. Then, access the magic wand tool, click on a white area, and hit delete on the keyboard. On this tool''s option bar, you will have to check or unckeck contiguous, depending on the configuration of background/foreground interface. The tolerance setting may have to be adjusted for optimal results. The checkerboard pattern denotes transparency.
If you save your file, be sure to select a file type that supports transparency.

Similar Messages

  • Im trying to make a simple 360 rotation for a 3d logo in CC 2014 but when i tried to create the 1st key frame the image when out axis

    im trying to make a simple 360 rotation for a 3d logo in CC 2014 but when i tried to create the 1st key frame the image when out axis

    I find that if you have multiple 3d object  they must be merged into a single 3d layer their positions reset to align to the same axises then sized and positioned along them. The layer should then be able to be animated well around an axis like the y axis. Here a Sphere, Cylinder and ring. http://www.mouseprints.net/old/dpr/McAssey-CC.mp4

  • Creating transparent backgrounds in Keynote for export as titles in FCP

    I am creating titles in Keynote and exporting them into Final Cut. I was wondering if anyone knows how to make transparent backgrounds so I can overlay the titles on videos. I have tried "include transparency" but have been unsuccessful. I haven't found any help files to address this situation.
    Many thanks

    1. make sure your slide background is set to NONE, no color, no image
    no nothing
    2. Check the Include Transparency check box when you choose the
    QuickTime export
    3. Choose Custom from the formats pop-up
    4. Click the Settings button
    5. Choose Animation or PNG from the pop-up (it probably says Sorenson)
    6. Choose Millions of Colors+ from the depth pop-up
    Make any other quality or frame settings, and export it. You SHOULD get
    a movie that has a transparent background.

  • How to create transparent background video?

    I'm trying to add some filters to some some imported text files from Photoshop, but they don't work so well so I need to import them as transparent video files. So, how do I export the text as a ProRes file from FCP with a transparent background so I can re-import it and add the video filters?
    I've tried fiddling around with the alpha channels but the background always seems to be black.

    You don't export the files as a ProRes clip.
    Place your text on a transparent background and export from PS as .tiff or .png stills. They will composite automatically. You can set the default length required in FCP's User Preferences...
    You must do this before you import the files.

  • Creating transparent background

    In previous versions of PhotoShop, under Help, there was a wonderful walk-thru that would take us step-by-step thru the process of creating a path file.
    Has this option been moved, or removed?
    I'm now using CS3. I believe this nice option was there two versions ago.

    Dunno what the info at the link says, but how you go about getting a transparent background is often predicated by how that image will be used: print, web, video, games, some or all of those output destinations?

  • Combining 100 pngs with transparent background, vertically into one image PSE9

    As the question suggests,
    In PSE9 is it possible to combine 100+ PNG files (with identical dimensions & transparent background) into a single PNG file where the images are stacked vertically? and without trimming/cropping the transparent part of the image! I want to retain the exact original image dimensions so that they all stack neatly and precisely. 
    So far what I've tried is opening up the 100 PNG files in PSE9, create a new document with transparent background using the same width as the individual files and the height set to the individual file height multiplied by 100. (i.e. original image is 36 x 120 so the new file will be 36 x 12000) Then I get stuck! Whenever I drag a single file into the newly created document, it seems to be cropped to the image edges and no longer retains it's original height and width. Not to mention that hand dragging 100 files seems like a long-winded way of doing things... My automate button seems to be greyed out (so no contact sheet?) and I can't find any other automated process.
    Any help would be greatly appreciated,
    Thanks
    N.
    PSE 9 on Win 7

    Please compare the resoultion of the two documents too. And a better way of arranging the layers would be to use distribute option in the move tool. You can find more about the move tool at http://helpx.adobe.com/photoshop-elements/using/moving-copying-selections.html#main-pars_h eading_0
    Thus your workflow would be:
    Create a new document with the required dimension.
    Use File>Place to place all your png files on the created document as layers
    Use distribute option in move tool
    A still better workflow would be to use put all the files in a folder and write an ExtendScript to read the files and place them as layers on the document of said dimension

  • Loading transparent background gif on an image

    Hello everyone! I am trying to load a transparent background gif([http://www.aoml.noaa.gov/hrd/tcfaq/graphics/animehurr.gif]) on another image (which is a map). My way is adding two JPanels, each of them will load an image as an ImageIcon, however, the gif will display its transparent background as white. So, I googled the problem, it seems someone has a similar problem([t-681840]). I think the background area is not transparent due to the wrong container under the image, but I have no clue to make it right. I appeciated anyone can post a comment, or give me some advice.
    I attach my code as following.
        jPanel1 = new JPanel();
        getContentPane().add(jPanel1);
        jPanel1.setBounds(12, 10, 647, 358);
        ImageIcon iconMap = new ImageIcon("C:\\1\\com\\lfhsolutions\\trackthis\\images\\Map.JPG"); 
        JLabel label1 = new JLabel(); 
        label1.setIcon(iconMap);  
        jPanel1.add(label1);  
        this.getContentPane().add(jPanel1);
        setVisible(true);
        jPanel2 = new JPanel();
        getContentPane().add(jPanel2);
        jPanel2.setBounds(330, 200, 50, 46);
        ImageIcon iconHurricane = new ImageIcon("C:\\1\\com\\lfhsolutions\\trackthis\\images\\hurricane1.gif");
        JLabel label2 = new JLabel();
        label2.setIcon(iconHurricane);
        jPanel2.add(label2);
        this.getContentPane().add(jPanel2);
        setVisible(true);

    Sorry if my code bothers u, camickr !
    I am a noob for java and thie forum. I am not quite sure how a SSCCE should look at, but I will post code as below.
    import java.awt.BorderLayout;
    import java.awt.Canvas;
    import java.awt.Image;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.List;
    import javax.swing.GroupLayout;
    import javax.swing.ImageIcon;
    import javax.swing.JButton;
    import javax.swing.JComponent;
    import javax.swing.JLabel;
    import javax.swing.JMenu;
    import javax.swing.JMenuBar;
    import javax.swing.JMenuItem;
    import javax.swing.JOptionPane;
    import javax.swing.JPanel;
    import javax.swing.JTextArea;
    import javax.swing.JTextField;
    import javax.swing.LayoutStyle;
    import javax.swing.WindowConstants;
    import javax.swing.SwingUtilities;
    public class NewJFrame1 extends javax.swing.JFrame {
      //Set Look & Feel
      try {
       javax.swing.UIManager.setLookAndFeel("com.jgoodies.looks.plastic.Plastic3DLookAndFeel");
      } catch(Exception e) {
       e.printStackTrace();
    private JPanel jPanel2;
    private JPanel jPanel1;
    * Auto-generated main method to display this JFrame
    public static void main(String[] args) {
      SwingUtilities.invokeLater(new Runnable() {
       public void run() {
        NewJFrame1 inst = new NewJFrame1();
        inst.setLocationRelativeTo(null);
        inst.setVisible(true);
    public NewJFrame1() {
      super("Hurricane Tracker to Oil and Gas Producers");
      initGUI();
    private void initGUI() {
      try {
       setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
       getContentPane().setLayout(null);
        jPanel1 = new JPanel();
        getContentPane().add(jPanel1);
        jPanel1.setBounds(12, 10, 647, 358);
        ImageIcon iconMap = new ImageIcon("C:\\1\\com\\lfhsolutions\\trackthis\\images\\Map.JPG"); 
        JLabel label1 = new JLabel(); 
        label1.setIcon(iconMap);  
        jPanel1.add(label1);  
        this.getContentPane().add(jPanel1);
        setVisible(true);
        jPanel2 = new JPanel();
        getContentPane().add(jPanel2);
        jPanel2.setBounds(330, 200, 50, 46);
        ImageIcon iconHurricane = new ImageIcon("C:\\1\\com\\lfhsolutions\\trackthis\\images\\hurricane1.gif");
        JLabel label2 = new JLabel();
        label2.setIcon(iconHurricane);
        jPanel2.add(label2);
        this.getContentPane().add(jPanel2);
        setVisible(true);
       pack();
       this.setSize(806, 549);
      } catch (Exception e) {
       e.printStackTrace();
    }}

  • How do you set a transparent background when adding an image?

    I've added a block arrow image to a slide in Captivate 4. I enabled Transparent background and selected white as the color within the Image properties. This used to work when I added the same image in Captivate 3. However, in Captivate 4, when I publish, the image displays with a white background. Though it is transparent in priview mode and on the slide iteself when i have the project open. Any ideas on what else I could do to make the image background transparent?

    Hi there
    Transparent background should still work in Captivate 4 just as it did in Captivate 3.
    There are a couple of reasons it may not do what you are expecting.
    The background isn't truly the color it appears to be. For example, it may APPEAR to be solid white (or another color) but in reality it's hundreds of varying shades of the color. This happens a lot with JPEG images.
    If the image is PNG format, I've seen Captivate become confused. Especially if the PNG already has a transparent background. So you may need to edit the image and save in a different format.
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • I'm trying to create a slide show with the images in my selected order, not alphabetically and not r

    This is the third time I've tried this, none of this stuff works

    Make a Collection for the images you want in the slideshow and then re-arrange them there.

  • Mono line art image reproduction

    My book has about 150 scanned B/W line drawings which I have as TIFF files, 1 bit per pixel. Currently these are CCITT Fax 4 compressed, making them small, less than 100kb/page. I am submitting an Indesign-generated PDF of the book to a digital book printer. Q: Does the presence or absence of compression in the image files before placement in the book have any bearing on the image data within the PDF produced by Indesign? I am unsure whether I need to switch to an uncompressed format (about 10x more data) to avoid production problems on the digital printer.

    Actually this is a slighly daft question as I can just check the PDF files sizes, but any observations or experiences on this subject are welcome. The output device is a 'Nipson Varypress'.

  • I am trying to create an responsive HTML5 output, but images are not showing up.

    When I preview my output, the images are note showing up. It is simply the blank outline of the image with the little image icon in the top left corner.
    As it is compiling I see the message "Warning: Image maps are not converted to relative size". Is there something in the setting that I need to change, or is that even the problem?

    Can you check your output folder: are the images copied to your output? If they are missing, are the images listed in the Project Manager pod in RoboHelp?
    The warning is unrelated. Since image maps work with pixel coordinates, you can't simply make them responsive. You are probably using an image map in your project. This is causing the warning. It is not a problem since the image map will still work. But if the image map is very large, it may give a bad experience on smaller screens. You may have to decide whether to change or remove the image map if you want to support mobile.

  • Best File Format For Online Line Art?

    I thought the conventional wisdom was that all line art for the screen should be saved as GIFs, all photographic line art should be saved as JPEGs.
    Then PNGs came along and offered an alternative to GIFs.
    I've been exploring this because I've been having a problem when exporting line art from Illustrator 8 as a PNG and opening it in Fireworks MX, where it appears washed out.
    I did a bit of research among comic strip artists -- the art I'm exporting from Illustrator is a comic strip -- and came up with conflicting results.
    Dilbert seems to save black and white line art as GIFs, e.g. http://dilbert.com/comics/dilbert/archive/images/dilbert2008611230313.gif
    ... But its Sunday colored strips seem to be saved as JPEGs, e.g. http://dilbert.com/comics/dilbert/archive/images/dilbert2008040261966.jpg
    Meanwhile Donnesbury seems to save colored comic strips as GIFs, e.g. http://images.ucomics.com/comics/db/2008/db080406.gif
    Any thoughts, suggestions?
    Thanks.

    I assume your line art is drawn as vector art in Illustrator, correct?
    As far as I'm concened, the "best file format for online line art" would be .swf, because it would retain its scaleable vector nature, and the Flash Player is most likely embedded in any reasonably recent computer's browser.
    But a little simple experimentation would be in order regarding file size. SWF (as exported from Flash, not necessarily AI) is very efficient. But the complexity of the line art could still make a given image require more bandwidth as .swf than as a rasterized version.
    The former conventional-wisdom regarding PNG is the old "not supported in older browsers" saw. I see even Firworks's online help still says:
    > However, not all web browsers can view PNG graphics.
    Personally, I think its way past time to stop cow-towing to outdated browsers and use PNGs anyway. So if it were me, and the nature of my line art required rasterization for online use, I would use PNG for its obvious advantages. But then, my livlihood is not affected by some minority of outdated web viewers not being able to view my PNGs.
    I would think that whatever color problems you are having in getting your AI files exported to PNG can be worked out with a little investigation/experimentation. (PNG supports color management profiles, so that alone may be your problem, and may be easily fixed in your workflow.) GIF is by definition limited to a subset of colors. JPEG is by definition a lossy compression format. So there are certainly precise color-accuracy issues with those overused formats, too.
    But again, that's just me. What little I do in web graphics that would involve this issue doesn't really affect my livelihood. Lowest-common-denominator compatibility may be more important to you.
    > Gilbert seems to...
    > Doonsbury seems to...
    The two images are very close to the same size (132K & 125K). They both include contone grads. Between JPEG and GIF, I would expect JPEG to more consistently yield acceptable results. Since GIF is limited to an 8-bit lookup table, I would expect aberations such as unwanted banding to be more likely in GIF if the artwork contains many colors and alot of highly-rendered shading.
    Since you specify
    line art, though, that would rule out contone fills, and you could use GIF with a very small color table.
    On the other hand, you do not specify whether you want to use transparency in your line art images. If you do, PNG would be far superior, because it supports true alpha transparency. In a GIF, if you can only make one particular color transparent. So even with line art, if the line art is antialiased at all, you'll have the ugly halos so commonly seen in GIFs when displayed on a wrong-colored background.
    The only functional "advantage" that I see in GIF over PNG is its multi-image capability, for quick & dirty frame-by-frame animation. My personal animation efforts focus entirely on Flash/SWF, and use scripted animation whenever possible to avoid frame-by-frame. But I recognize the simplicity convenience of animated GIFs for web banners and those (often-annoying) moving icons and such.
    JET

  • PSE 7  Need to transparent the background of a line art logo and name

    PSE7  How do I make the background transparent behind a line art logo (a lily and my name)?  There used to be a tutorial about a line art map in black and white, but I can't find it.  Thanks.

    There are several ways. One way:
    1. Select>All
    2. Edit>Copy
    3. add a black color solid fill layer
    4. alt (option) click on the layer mask in the layers panel
    5. Edit>Paste (your pasting into the layer mask)
    6. Filter>adjustments>invert (invert the layer mask) Ctrl(cmd)-I
    That gives your logo on transparency (the logo will be black, so if you want to change the color, you clip a color fill layer)
    transparent:
    on color:
    layers:
    color changed (solid color clipped ) Layer>Create Clipping Mask
    Message was edited by: R_Kelly

  • Anyone have experience using high-res files (eg line art) in Aperture?

    As I found at http://discussions.apple.com/thread.jspa?threadID=1741287&tstart=0 it seems that Aperture will choke on files over a certain size. I'll grant, I tried something that is outside the scope of Aperture---I tried using it to store a workflow starting with a scan rather than a photo. The scan is higher resolution than most digital photos (as line art must be).
    Does anyone have any experience with high-resolution photos or scans? I'm talking over a hundred MB, possibly upwards of a gigabyte. These are precisely the sort of files that I want to create lower-res versions for specific applications and have them be linked to the master file.

    I tried to use Aperture with my line art scans in the early versions of Aperture, but gave it up because Aperture did not seem to handle the file size.
    Instead I use another workflow for my artwork, Bridge, Photoshop, Illustrator and Version Cue in combination with Extensis Portfolio. This is a very pleasing solution for me and I would recommend it to others to try out as well.
    For me, Aperture is used for managing and adjusting my photographs.
    Regards
    Paul K

  • Converting photo to line art?

    I have Photoshop Elements 5.0 and want to know if there is a way to take a photograph and convert it into a line art image. I have tried a combination of a few different filters and have not been able to get the results I am looking for. Any thoughts?

    It is not easy, and works best if image does not have a great deal of texture. Try this:
    Open image
    Duplicate background layer
    Filter>other>High pass. Want small radius
    Filter>sketch>Notepaper. Try image balance=25, Grain=0, Relief=0
    Filter>adjustments>threshold. Work slider to get black & white image
    Use pencil tool to get rid of stray pixels

Maybe you are looking for

  • Opening and closing stock report

    Hi, i have to develop  a report in abap of stock (Opening and closing stock) with each material, plant, business area & monthly date wise. I got some fields from mseg like material number, plant, business area but i didnt get fileds like opening stoc

  • Why I can no longer save videos (*.flv) from my cache folder?

    Well, I don't speak English. I'm sorry. Até o Firefox 3.6.16 eu conseguia salvar um vídeo (*.flv), do Youtube por exemplo, a partir da pasta cache. Por que não posso mais fazê-lo no Firefox 4.0? A partir disso, desinstalei o Firefox 4.0, voltei para

  • How to lock targetserver execution in job scheduling

    Hi, I've a SAP System with a central instance and two application servers. I would set authorizations so that users when they schedule their jobs (example in SM37), the field target server is locked and set to a particular application server. Any ide

  • How to make the basic graphics frame VerticalJustification as bottom align?

    Hi: In indesigne CS3 script, how to make the basic graphics frame VerticalJustification as bottom align? Thanks in advance.

  • Nokia n8-00 does not support dvr remote H264Midlet

    Hello to everybody. My name is Michael and I own the n8 model which I discover that dvr remote doesn't work in my shop cameras as other and chipper phones do, like androids. The program that the security company gave me is H264Midlet from Symbian(DVR