How to create image slice with transparent background without white halo around?

Hi, I want to make slice image with transparent background. I set the slice option background color to my background color. But when the image is on my html page set against the same background color, it has white halo around:
How can I get rid of the white halo?
I need the slice image to have transparent background and not have a color background because it's going on a rollover button with the background change. I don't want it to look like this on rollover:

>it looks to me like you built it with that "halo" to start with.
No, I didn't put in the halo myself. The shape is a character from the Webdings font. It's set to some darker fill color and set on a transparent background. Photoshop put the white halo there after "Save For Web".
> Make your graphic on a transparent background and Save for Web
I did exactly that, see:
I set the slice background to my color. I try the Matte option and come out the same with white halo.
It seems I'm not making Photoshop antialias to my background color, instead Photoshop just antialias to white.
What else do I need to do?

Similar Messages

  • How to create typography jpg with transparent background?

    I am creating jpg artwork of typography to place on WIX.com and need to create the jpg with transparent background behind the font. Any suggestions that work?

    You're welcome.. If this solves the problem, be sure to mark the solving answer correct. This makes it easier for other users to find solutions for similar issues.
    Benjamin

  • Motion how to create 3d effect with a background and one primary object

    motion how to create 3d effect with a background and one primary object

    … like that?
    http://youtu.be/yOht1GJpEm4

  • How to I move gif with transparent background to jpg background?

    I am using the Master Squite CS 5.5 trail on Windows XP Pro with SP3.  I am not a Photoshop expert, but have done a fair amount for work with iit.
    I am trying to build some headers for websites and I know how to combine JPG images and text to ceate a header image.
    Now I have a couple of logos that I got in JPG format, converted them to GIF and made the backgrounds transparent.
    The "Move" tool doesn't seem to allow me to drag and drop a GIF image with a transparent background onto a JPG header background.  I tried converting the JPG header background to a GIF image too, but it won't let me move the transparent image to this background.
    I really need to get this to work somehow to create the professional look I want.
    Thanks!

    Your mistake is in assuming you need GIF anywhere in the process.
    Try this instead:  Paste your logo JPEG over the background as a separate layer, then remove the pixels you want to be transparent by either Deleting them or Masking them.
    -Noel

  • How to export animated gif with transparent background and glow effect?

    I've been having issues lately with creating animated gifs in flash. I finally figured out a way to export a gif with a transparent background but I'm now having an issue with it again because I'm using a glow effect. When the gif is exported the glow effect changes into a very poor quality and becomes less of a glow and more like a solid color. I've even exported a png sequence from flash and put it into photoshop then created a gif from there but I'm still having the same issue. Is there anyway I can properly export this in gif form so the quality is the same as when I test it in flash?
    I've provided an image of what my issue looks like and the settings (I've messed around with the settings and this is the best I can come up with) . This is in photoshop but the result is similar in flash. The left one is what it originally looks like and the right is what it will look like after exporting. As you can see as I said before the glow changes into more of a solid color kind of like a border. Any help would be greatly appreciated, thanks in advance!

    A GIF is limited to 256 colors while a glow effect likely wants to tie up thousands (let's just say 'lots') of variations of tone.

  • How to make animations float with transparent background

    I am taking a graduate course in adv. web design for an ed
    tech program at a university. Neither my instructor nor anyone else
    in my class knows how to get Flash animations to have a transparent
    background, or even if this is possible. On behalf of us all, I am
    wondering if it is possible to create a Flash animation without a
    background--or with a transparent background, and then superimpose
    it onto a web page so that the web page's background shows through
    all but the animated part. We are using Flash 8. If it is possible,
    can someone please tell us how to do it? I have seen web pages
    where the animations float over the web page. Are these animations
    made with Flash or with another program? Thank you!

    Yes, it's easy, but haven't done it for a while, and not
    since all the new ActiveX stuff on MS IE requires Java Script to
    make the dotted outline go away.
    To do it well takes a combination of Flash with the
    publish-settings HTML Window Mode set to Transparent Windowless,
    and tightly-designed CSS with your animation positioned in a div
    that lies or overlays the exact place on the HTML page where you
    want it. You can even have it scale to the entire visible window,
    which can be quite cool. I did one for the holidays with snow
    falling over an HTML page. It can block lnks from working, though,
    so you can have the div (and animation) disappear when the
    animation is done.

  • Extract part of image & save with transparent background

    What is the best way to extract part of an image & save it with a transparent background?  I had hoped to the extracted images in 2 different ways.
    Firstly just to paste into another image.
    Secondly I'd like to try to open both the extracted item as well as the whole original photo in different video editing programs including Premiere Elements & sony Vegas.  What is the best  way to do this?

    Here's what you could do.
    First make sure you have both images open in editor
    1. Open the image and select the area using the magnetic lasso/quick selection tool.
    2.  Select Layer -> New -> Layer Via Copy
    3. Now in the layers palette, right click the layer and select 'Dulicate Layer'
    4. In the duplicate layer dialog, in document - select the other image, where you would like to paste the image to.
    5. You and ajust the poition of the pasted area/resize it using the move tool or transform tool (Ctrl + T).
    6. Save the image with a new name
    If you simply want to save the image with transparency (after step #2) - you may -
    > hide the previous layer and Save the image as a png/gif so transparency is presereved.
    Hope that helps.
    When you have teh saved documents you can open them up in different editors.
    Regards,

  • How to read a picture with Transparent Background?????

    i read a png file - a picture with transperent back ground - with READ PNG File and display it in my program using a Draw Flattened Pixmap function.
    i get a very dark background- black coulour- in the picture created.
    How can i resolve this problem???
    Please give your suggestions
    Many thanks in advance
    RENN
    Kudos always welcome for helpful posts

    continue discussion here

  • Creating a text with transparent background using javax.media.j3d.Raster

    Hi, I'm trying to display a text in Java3D using the Raster but I'm not sure to make the background of the text transparent. Does anyone have any ideas.
    Here's my code for creating the Raster image:
    private javax.media.j3d.Raster getRaster(String str, boolean rotate) {
    // Create an empty raster.
    javax.media.j3d.Raster raster = new javax.media.j3d.Raster();
    // Get a font metrics.
    Font font = new Font("Times", Font.PLAIN, 12);
    FontMetrics fm = getFontMetrics(font);
    // Calculate the raster size.
    int width = SwingUtilities.computeStringWidth(fm, str) + 6;
    int height = 18;
    // Create an BufferedImage.
    BufferedImage image = new BufferedImage(width,
    height,
    BufferedImage.TYPE_INT_BGR);
    // Draw the input string on the BufferedImage.
    Graphics2D g2d = (Graphics2D) image.getGraphics();
    g2d.setFont(font);
    g2d.setColor(Color.WHITE);
    g2d.drawString(str, 3, 14);
    // Set the BufferedImage to the raster.
    raster.setImage(new ImageComponent2D(ImageComponent2D.FORMAT_RGB, image));
    raster.setSize(width, height);
    raster.setType(javax.media.j3d.Raster.RASTER_COLOR);
    raster.setCapability(javax.media.j3d.Raster.ALLOW_IMAGE_WRITE);
    raster.setCapability(javax.media.j3d.Raster.ALLOW_SIZE_READ);
    return raster;
    Thank you for your help.

    Hi,
    If you create a new transparent imge you can put a color fill layer below the text layer and either turn off  the layer visiblity for the color fill layer (eye beside the color fill layer in the layers panel)
    or delete the color fill layer before saving the file as a transparent png.

  • How to create Image gallery with mouse move effect

    Hello frndz
                    Please give me any link or flash file which explain how to apply mouse move efect on images of gallery.
    i mean image sof gallery simply move with mosue direction and stop on mouse stop.its very urgent please help me  out
    Thanks and Regards
         Vineet osho

    Try this:
    http://help.adobe.com/en_US/ActionScript/3.0_ProgrammingAS3/WS5b3ccc516d4fbf351e63e3d118a9 b90204-7d00.html

  • How to draw a box with transparent background ?

    Hi there,
    I want to do an effect where after I display the text, there will be drawing effect where it draws a rectangle around the text ?
    During the days of Final Cut Express, I bought plugins from LiveType, it has effects to do this.
    But dow to I do this now in FCPX ?
    Thanks

    Thanks Jim,
    It is a good tips that LiveType still works on Maverick !
    Now I gotta ransack my store room to look out for the LiveType dvd/disc ...
    Motion ? I thought Motion is very difficult to learn ... more difficult than After Effects ?
    Ok, i better look out for some tutorials on Motion then ... Motion can integrate with FCPX ?
    I just checked, the Motion that I have is Ver 5.0.7 (got this as a birthday gift). Is this compatible with Maverick ?
    Thnaks
    Jim Wanamaker wrote:
    A couple of thoughts. Livetype still works in Mavericks although I don't know about your plugins. You would have to try them. Obviously you can not send a livetype project to FCP X, but you could design your title and export it and then import to FCP X. That should work although you couldn't make any changes in FCP X. A second thought is to use Motion if you have it. You can easily create a title in Motion to do what you want by opening a title template, add and format text. Then add a bezier shape for your rectangle and use the write on behavior. Very simple to do.

  • Video with Transparent background

    Hi I am trying to create a video through Adobe Premiere Elemements 10 that has a transparent background.
    I need it to be in .FLV, .SWF or .MP4 format.
    I have created the alpha etc but i think i am not exporting it correctly.
    Can anyone explain the steps for creating the video with transparent background and how to export it for those file types please?
    thanks.

    I've not used the software, as I said a quick google threw it up. From looking at their further screens (http://www.increditools.com/flash_video_studio/features.php#flash8alpha) and (http://www.increditools.com/flash_video_studio/samples.php#flash8alpha) a probable workflow would be to create an original in PRE against your green screen and export this as DV (for standard resolution) or HDV (for HiDef). Once in the Flash software it is probably then just a case of using an eyedropper to turn your green screen transparent.
    However your best option would be to install it and play around. Looking at their FAQ, similarly to the PRE trial, it installs as a trial version that will place a watermark across your finished video.
    If you do try it out please be sure to post back here about its effectiveness - it may help others.
    Cheers,
    Neale
    Insanity is hereditary, you get it from your children

  • How to save transparent background images to have transparent background thumbnails with Photoshop 2014?

    In old versions of Photoshop there was a feature that made thumbnail images have a transparent background.  I'm a CC member using Photoshop 2014 on a MacBook Pro running OS X 10.9.4 and every thumbnail of a transparent background image I've created in Photoshop 2014 appears on my desktop with a solid white box background that has a thin black outlined box inside of it.  How do I save the transparent background images I've created in Photoshop 2014 so they will appear on my desktop as thumbnails with a transparent background?   I'd like to continue to be able to replace the default background-less folder icon that that appears on files with transparent background thumbnails to customize my files as I use to do with older versions of Photoshop.

    If your layered document has a Photoshop background layer it visibility need to be set off when saving a PNG or Gif file for Photoshop background layers do not support transparency.
    Thumbnail may be a bit more complicated than you think. I do not use Lightroom, and only occasionally use the bridge.  I believe Lightroom and Bridge  keep thumbnails they develop for image files  in their library databases and caches.  Other programs do not have acces to  these.  RAW Files and Image files have Jpeg previews stored in then.  I believe most application use these previews jpeg to create thumbnails.  Jpeg format does not support transparency.
    Icon on the desktop are not always thumbnails some are embedded icons in application modules other are icon in dll these may well have transparency. However image file on the desktop have generated thumbnails.  However you can create a shortcut for an image png file and create a icon with a transparent background for the png file and change the shortcut's icon for the png file to the transparent ico file you created for it.
    Also many Photoshop release ago an Adobe module created Thumbnails for image files in Windows File explorer and most likely system file dialog. Adobe stopped supporting that stating Microsoft changes how windows works.
    Today I use FastPictureViewer Codec Package to generate image thumbnails for image files including RAW and PSD files in File Explorer and system file dialogs.
    I don't use a Mac don't know what available for your Mac.

  • How to use/create icons with transparent background ?

    I would like to use icons with transparent background on JButtons, but I can't find how to do it. Until now, I've been using the ImageIcon class to create icons from GIF images. These images were created with MSPaint (sorry, I don't know what I could have used instead of that). Here is how I create my buttons :
    bPencil = new JButton(new ImageIcon("Pencil.GIF"));What could I do to make the background transparent and/or what software could I use instead of M$Paint ?
    P.S. : sorry if my question seems silly, but I'm a newbie in Java coding...

    Transparent images are GIF (256 colours) and PNG (true-colour, half transparency).
    You can store the image with your code, *.class files. You then even can deliver all inside a clickable, executable .jar file.
    This kind of usage is called "resource," and hence use getResource like this:
        java.net.URL imgURL = getClass().getResource("pencil.gif");
        ImageIcon icon = null;
        if (imgURL != null) {
            icon = new ImageIcon(imgURL, description);
        }You can use paths.
    There exist versions of MSPaint that easily loose their transparent colour on saving.
    For GIFs try internet palettes, or try to save as PNG (recent version).
    Start with a transparent image from elsewhere.

  • How to insert image with transparent background?

    I have several logos saved at .GIFs with transparent backgrounds that I would like to import into my dashboard, but it seems that the image component only supports JPEG.  Is there a way to import images while maintaining their transparency?

    Well, you CAN insert GIFs or other image formats.  But I have yet to figure out a way to take a GIF with a transparent background and import it into my Xcelsius while preserving the transparency.  The transparent background always just defaults to white.
    This is a crucial feature as I have some logos I want to use that are circular.  But if I can't give them a transparent background, it drastically limits their placement options.
    I know that flash does support transparency, so am I missing something here?

Maybe you are looking for

  • US\European Power Converter

    I just recently purchased a Macbook laptop, as well as a Jensen (model no. JEN50) Foreign volatage converter for when I am in Germany (or any other part of Europe). It says that it converts 220-240V AC to 110 - 120V AC. Got it at BestBuy for $15. Now

  • Optimized Supplier Spend Reporting based on SAP NetWeaver MDM

    SAP NetWeaver MDM can help you a lot when it comes to aggregating and consolidating supplier data for global spend reporting. For more information about how this can be achieved, watch this [demo|http://www.sdn.sap.com/irj/scn/elearn?rid=/library/uui

  • JTree, drag n drop, easy or hard?

    I have rapidly looked at some examples and some old threads about Drag�n�drop in general and more specific for JTree�s. A quick (maybe to quick?) conclusion is that there is a lot of code for doing this. What I want to do is to move nodes in one sing

  • What are the ROLES & Responcibilites of a SAP Tester

    Hi, I would like to know the roles and responcibilites of a SAP tester what kind of things will do by Manual Testing as well as Automation Testing by using ECATT Thankyou

  • OSB Branch Problem

    Hi there, I have created a set of Business Services backed by SOAP services and then Proxy Services for each (3). The three Proxy Services are then configured in a new "Wrapper" Proxy Service which uses one of the Request Parameters to do a Branch. T