About 396,000 results
Open links in new tab
  1. How to add transparency to a background image? (HTML + CSS)

    May 27, 2020 · The trick to using RGBA in a background image is to use two parallel rgba() functions inside a linear-gradient(). Since rgba() returns a color value, it can be utilized as two …

  2. Transparent background in a Tkinter window - Stack Overflow

    root.image = PhotoImage(file=pyloc+'\startup.gif') label = Label(image=root.image) label.pack() the image displays fine, but with the grey window background instead of transparency. Is there …

  3. How to use PIL to make all white pixels transparent?

    Dec 17, 2019 · I'm trying to make all white pixels transparent using the Python Image Library. (I'm a C hacker trying to learn python so be gentle) I've got the conversion working (at least the …

  4. Transparency for images in Visual Basic .net? - Stack Overflow

    1 If you want the controls behind the PictureBox to show, ie. you want your image displayed with a transparent background, try drawing straight on the form itself. Back in the days of VB6 we …

  5. html - CSS background-image-opacity? - Stack Overflow

    Jul 31, 2011 · Related to How do I give text or an image a transparent background using CSS?, but slightly different. I'd like to know if it's possible to change the alpha value of a background …

  6. Create transparent image in opencv python - Stack Overflow

    How can I initialize fully transparent image with width and hight in openCV python? EDIT: I want to make a effect like in Photoshop, having stack of the layers, all stacked layers are initially …

  7. Making text background transparent but not text itself

    Don't use opacity for this, set the background to an RGBA-value instead to only make the background semi-transparent. In your case it would be like this.

  8. How can I get a transparent background in ImageJ/Fiji

    Mar 14, 2018 · I tried already the threshold function and set the black areas to NaN but after reopening the image the corners were still black. I also tried making a selection and clear …

  9. How do you set pixels to be transparent in a .GIF or .PNG file in ...

    May 23, 2012 · Open the file gif/png with the Visual Studio Editor In the properties window select a format that supports the alpha channel i.e. 32bpp BGRA Using the eraser tool now will set …

  10. How do I make a semi transparent background? - Stack Overflow

    Jan 25, 2011 · Using rgba to create transparent color masks - that doesn't exactly explain how to do so with background images. My solution works for background images or color backgrounds.