How to make a Transparence Background GIF Animated??

Hi,
How to make a Transparence Background GIF Animated??
Any Special Pro software do i need like Photoshop ?
Posible to use Keynote or something like that?
Thanks

See my response to your other topic in this forum.
OT

Similar Messages

  • PS 6.1, how to make a white background transparant?

    how to make a white background  transparent?

    Select the white background with Magic Wand tool.  Hit Delete.  Transparent background is denoted by the checkerboard pattern on your document.
    Nancy O.

  • How to make a trasnparent background in Motion

    I am just making a Lower Third and I want to be able to bring it into FCP and place it on top of my existing timeline. I dont want to export FCP to Motion because I already chroma keyed my "stuff" in FCP. How do I make a transparent background for Motion? Hm!! Any other suggestions would be nice too !

    I think you may be mis-interpreting what the blend mode does.
    If you apply the screen blend mode to the fire clip in Motion without anything below it, and view transparent in the viewer, you'll notice that the blacks in the fire clip don't disappear. It's waiting to blend it's values with a clip below it. If no clip is below it, then nothing visual happens. If you place a colored solid below, then you'll see the effect of the blend mode.
    FCP handles composite modes differently. If you do the same thing in FCP, the blacks WILL disappear from the fire clip even though there is nothing below it. Perhaps that is why they are called "composite" modes in FCP, and "blend" modes in Motion.
    Finally, a Motion clip is like a QT clip. It can contain, video, audio, tc, and transparency info. A blend mode is not technically transparency information. Besides, in the example that you give me, the blend is between the fire and the text clip. Not between the motion project file and FCP clip in the timeline.
    How ever the Motion project looks in Motion is how it'll look in FCP (with the exception of Motion Blur).

  • How to make a white background Transparent

    I would like to to select the blocks and enclosed data to copy and paste in a poster, leaving out the white background.  In other words make the white background transparent. 
    This is just a plain low res jpg.
    This seems like it would be pretty easy but not for me.  Is there a tutorial that could guide me through this?
    Thank you for any guidance you can give me.

    I'm probably not being clear about what I'm trying to do.  Here's a typical poster.  I use the magnetic lasso to select an image, copy and paste it resulting in this.
    This time it's to be a team picture with small head shots of each player, action photos in the background, similar to this.  I can do all that but I wanted the tournament chart to lay on top of the background with just the boxes and enclosed info showing.  I know I can use the magnetic lasso or the poly lasso but I don't have enough patience for that.

  • How do I add Music to Gif Animations?

    If I make a gig animation in Image Ready, the only way I know how to add sound is to do it through Premiere Elements. The problem is it compresses the image so much it's unwatchable.
    Any Idea where I'm going wrong?

    Right, well I'll explain what I want to do and maybe you or someone out there can kindly suggest what I need.
    I have been making animations in Imageready, as that's what I have and know how to use (sort of). I put my company name on photos of eg: exotic cars and animate them for screensavers, or mobile phone viewing etc. They work fine and are nice and clear.
    I then got the idea of adding sound, eg: engine noises to bring them to life and have been struggling to find a way of turning them from gifs to av files. The only program I have which allows me to upload a gif is Premiere Elements.
    Any suggestions please?

  • Anyone know how to make an "Index Transparent" gif

    I have successfully made transparent PNGs and GIFusing an Alpha transparency but now I need to make images which would be the same as ueing fireworks / Photoshop to make a colour transparent. i.e. indexed transparency.
    Does anyone know how to do this.
    My code is as follows :
    // configure all of the parameters
    String text = "ABC abc XYZ xyz ["+ new Date()+"]";
    String font_file = "./tst/Maiandb.TTF";
    font_file = request.getRealPath(font_file);
    float size = 30.0f;
    Color background = Color.white;
    Color color = Color.black;
    Font font = Font.createFont(Font.TRUETYPE_FONT, new FileInputStream(font_file));
    font = font.deriveFont(size);
    buffer = new java.awt.image.BufferedImage(1,1,java.awt.image.BufferedImage.TYPE_INT_RGB);
    Graphics2D g2 = buffer.createGraphics();
    g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
    java.awt.font.FontRenderContext fc = g2.getFontRenderContext();
    java.awt.geom.Rectangle2D bounds = font.getStringBounds(text,fc);
    // calculate the size of the text
    width = (int) bounds.getWidth();
    height = (int) bounds.getHeight();
    // prepare some output
    buffer = new java.awt.image.BufferedImage(width, height, java.awt.image.BufferedImage.TYPE_INT_ARGB);
    g2 = buffer.createGraphics();
    g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
    g2.setRenderingHint(RenderingHints.KEY_ALPHA_INTERPOLATION, RenderingHints.VALUE_ALPHA_INTERPOLATION_QUALITY);
    g2.setFont(font);
    // actually do the drawing
    Color transparent = new Color(0, 0, 0, 0);
    g2.setColor(transparent);
    g2.fillRect(0,0,width,height);
    g2.setColor(color);
    g2.setComposite(AlphaComposite.SrcOver);
    g2.drawString(text,0,(int)-bounds.getY());
    File file = new File ("./jsp1/tst/fred1.gif");
    com.gif4j.light.GifImage gifImage = new com.gif4j.light.GifImage();
    com.gif4j.light.GifFrame gifFrame = new com.gif4j.light.GifFrame(buffer);
    gifImage.addGifFrame(gifFrame);
    GifEncoder.encode(gifImage, file);Thanks in advance

    ^^EDIT^^
    System admins updated iMac to OS X Mountain Lion (10.8.4).

  • How to make white part of gif file transparent?

    I have an icon and I would like to change the color of its white part by changing the background color. If I could set the white part to be transparent I could do this. Any ideas how this can be done?

    If you know Adobe Photoshop or Macromedia Fireworks or somethin like that, you can do it easily just by deleting the parts of the image which you don't want. By default it will make those parts transparent. Remember this can only be possible in GIF format.
    For a new image just open a new file in PhotoShop, there you will get options for the color of background, set it to transparent and start drwing in the area. The parts on which you won't make any drawing will be transparent.
    Note: Don't try to fill transparent areas with white, as it will loose its transparency.
    [email protected]

  • How to make a BufferedImage background transparent?

    I try to draw an image from a BufferedImage to a JPanel, which the original image background is transparent, but when I draw on the JPanel, its background becomes black color. How can I make it transparent?
    My code is something like this:
    img = Toolkit.getDefaultToolkit().getImage("tiger.gif");
    try {
    MediaTracker tracker = new MediaTracker(this);
    tracker.addImage(img, 0);
    tracker.waitForID(0);
    } catch (Exception e) {}
    int width = img.getWidth(this);
    int height = img.getHeight(this);
    bImage = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
    bImageG2D= bImage.createGraphics();
    bImageG2D.drawImage(img, 0, 0, null);
    public void paintComponent(Graphics g) {
    Graphics2D g2 = (Graphics2D)g;
    g2.drawImage(bImage, 0, 0, null);
    Thanks for the help!

    Nekot,
    It would be a great help if you can share your code of 'transparent bufferedimage' with me. I have been trying to create a transparent gif since long. Now I think I can create a transparent bufferedimage and display it.
    Thanks,
    Riddhi.

  • How to make a fullscreen background changeable?

    Hello,
    I am working on a site where I have made a fullscreen background image, which scale with the size of the browser window.
    I would like to make it change to a new pic ( also fullscreen ) when clicking links. Any suggestions how to do this?
    This is how the image is made fullscreen:
    body {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-attachment: fixed;
    background-image: url(bg4.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    i would like to make it changeable with links looking something like this:
    Thank in advance - im looking forward to hear your ideas.
    Anna

    In the following example I have mixed and matched using an input button, an anchor and a paragraph. The anchor element has a class to show the use of a class instead of an ID. I have also left the array out of the equation.
    <!DOCTYPE HTML>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Untitled Document</title>
    <style>
    body {background: red;}
    </style>
    </head>
    <body>
    <input id="clickblue" type="button" value="blue">
    <a class="clickgreen" href="#">green</a>
    <p id="clickyellow">yellow</p>
    <script src="http://labs.adobe.com/technologies/spry/includes_minified/SpryDOMUtils.js"></script>
    <script>
    Spry.$$("#clickblue").addEventListener("click", MyClickBlue, "false")
    function MyClickBlue() {
        Spry.$$("body").setStyle("background-color: blue");
    Spry.$$(".clickgreen").addEventListener("click", MyClickGreen, "false")
    function MyClickGreen() {
        Spry.$$("body").setStyle("background-color: green");
    Spry.$$("#clickyellow").addEventListener("click", MyClickYellow, "false")
    function MyClickYellow() {
        Spry.$$("body").setStyle("background-color: yellow");
    </script>
    </body>
    </html>
    Gramps

  • How to make a fixed background image in Dreamweaver CC

    I'm trying to make my background image fixed so when I scroll down in Dreamweaver CC it stays completely still, could someone please tell me how to do that?

    You've got a lot of code that you don't need.  And I'm very dubious about the file:/// path to your image.  Are you working in a Defined Local Site Folder?  The image path should be pointing to your site, not files:/// on your local hard drive.
    body {
    background:#000 url(concept_watch_dogs___wallpaper_1366x768_by_mackintosh141-d6led76.jpg) no-repeat center center fixed;
    Nancy O.

  • How to Make a Silent Background Application

    How can I make an application running in background, with no window.

    Give this a shot:
    http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/dis
    play/NativeWindow.html?filter_flex=4.1&filter_flashplayer=10.1&filter_air=2#
    visible
    At the bottom of this forum post appears to be some code that might also do
    what you want:
    http://forums.adobe.com/thread/689399
    This post might also help:
    http://www.actionscript.org/forums/showthread.php3?t=208566
    andy

  • Collage: How to make the white background invisible?

    In the print module of LR5 my collages all include the white background when I export them. Does anyone have a link they could point me to that explains how to turn this off? Everything I have researched does not address this specificly.
    Thanks so much,
    Ashley

    You can make the background any color but not transparent. If you need a transparent background, for putting images on a web page or blog; you need to make the collage in Photoshop, Photoshop Elements or similar editing software.

  • Spherical Photo Gallery how to make a transparent background

    http://www.flashandmath.com/flashcs4/spheregallery/index.html
    http://www.flashandmath.com/flashcs4/spheregallery/spherical_gallery.zip
    I am pretty new to the world of flash, a flash newbie.
    Please check link above my question is related to making this sphere gallery.
    I am trying to make the background transparent, and i can , when i make it transparent
    the navigation for the sphere doesnt let me navigate throught the pictures.
    If you look at the code i made it transparent by removing the drawboard function or the fills in the function.
    As i said when i do this the navigation seems non functional.
    if download link does not work try the other at the top.

    Hi,
    Since you had written event handlers on 'board' and board is transparent (without drawBoard function), there will be no events triggered and navigation is not possible. Workaround is to create board with fill = minimum alpha value (0.01).
    board.graphics.beginFill(0x0, 0.01);
    Let me know if you need more information.
    Regards,
    Karthikeyan R.

  • How to make a transparent background in a PNG file

    I would like to make a PNG image with a transparent background instead of the white background. See this link for the image:
    http://www.drifterandthegypsy.com/wp-content/uploads/2012/11/lookatthebrightside_11.jpg
    I have a very old Photoshop program Photoshop 7.
    I tried clicking on Save for Web and selecting PNG-24 and checking the transparent box but it didnt work.

    Hi,
    Try something like the following:
    (click on the screenshots below for larger views)
    1. Select the Magic Wand and set the same settings in the tool options bar as shown below.
        Click on the white area outside the yellow circle with the magic wand tool.
    2. Go to Select>Modify>Expand and enter 1
    3. Go to Edit>Cut
    4. Go to Image>Trim and check Transparent Pixels
    5. Go to File>Save For Web and choose PNG-24 with Transparency checked

  • How to make a proper lightsaber with animation.

    I just done shooting a film and I'd like to make it a Starwars look-alike. So I want to know; how do you make a beautiful lightsaber that follows a certain source of movement.
    I've tried to use the Neon Rectangle tool and made me a lightsaber, though it wont move at all.
    I've tried to move it pr. frame but it just move it in all the frames. I've tried to use the Motion Trail tool but it just wont work proper.
    Please help me

    There is a far easier way - get hold of the "lazer" FCP plugin from Virtix... set your in and out points frame by frame and away you go!
    I did this recently and just used sound fx from the web... here, have a look yourself!
    http://www.youtube.com/watch?v=EkdenJtEy1s
    k

Maybe you are looking for