Questions tagged [glow]
188 questions
2
votes
1 answer
How to add a glowing filter to an image
This is the effect I want (the 2nd one):
in photoshop
1) duplicate layer 2) reduce exposure of the new layer 3) add blur
4) blend mode linear dodge (add)
a programmer I knew achieved this effect long ago, he never told how to do it with code…

Andre
- 21
- 3
2
votes
0 answers
Glowing shader for PNG texture in Three.JS
I have arbitrary PNG with a silhouette. Could use it to texture plane in Three.js.
Transparency works fine. But I need to create dynamic glowing around given shape.
More likely, have to use a shader, but could find any reliable example with…

VVK
- 435
- 2
- 27
2
votes
1 answer
Simple HLSL glow/blur effect in DirectX9
I have been struggling for days to find any resources to help me write a simple glow/blur shader using High Level Shader Language and DirectX 9 Managed Libraries.
All I need to do is have an array of CustomVertex.TransformedColored vertices drawn as…

tbridge
- 1,754
- 1
- 18
- 35
2
votes
1 answer
Copying extracted tar.gz to a single file
I am trying to copy the extracted content of a tar.gz to a single file in go lang. I will have only text inside the files.
The following is my current code.
f, err := os.Open(fullpath)
if err != nil {
log.Panicf("Can not open file %s: %v",…

PiKaY
- 279
- 4
- 15
2
votes
1 answer
Trying to replicate glowing circle effect
I am trying to replicate the glowing effect of the circles in this game: http://hakim.se/experiments/html5/coil/
Currently I can draw a circle with:
canvas.drawCircle(Parameters);
However I have no idea how to make the circles emit that soft…

Foobar
- 7,458
- 16
- 81
- 161
2
votes
1 answer
How to make text glow
Having my self-written button control (TMyButton) derived from TCustomControl I want to add an ability to make glow effect for MyButton's caption. After long time in Goolge I understood that the best way to create glow is to draw text with specify…

Josef Švejk
- 1,047
- 2
- 12
- 23
2
votes
0 answers
Glow button on and off
I have two images which I want to fade between causing a glowing on and off effect. This should run all the time like an animation, not just when the button is pressed.
Here are the two images:
This was working well before but after some…

Travis Elliott
- 291
- 2
- 5
- 18
2
votes
2 answers
Glow effect using snap svg
I am trying to add a glow effect using snap SVG. Unlike raphael.js, I believe Snap doesn't support glow by default. However, there is a shadow effect. I tried to apply the shadow using set interval so that it mimics the behavior of a glow. But it is…

Thomas Sebastian
- 1,582
- 5
- 18
- 38
2
votes
1 answer
Android button with outer glow
I know this topic has been discussed yet but I didn't find really what I wanna do.
I have those buttons (screenshot at the bottom). Now I want to add a outer glow. Is there an other possibility to do this than saving it as .png in the drawable…

nilskober
- 188
- 2
- 12
2
votes
1 answer
How to "achieve" this glowing affect in android?
I am trying to do a background for listview items similar to this one. That blue line which indicates selected item has glowing affect on it. I want that:
What I am able to get is something like this:
I have been looking for a solution for about…
user3352135
2
votes
2 answers
Glow Animation Effect in CSS3/HTML5
Is there any possibility to create a similar animation glow effect on the buttons and other objects on the web without using Flash or GIF?

Edoras
- 319
- 2
- 4
- 14
2
votes
2 answers
OnTouch Apply glow effect to center of image
I have a image and I need to apply glow effect to center of the image using OnTouchListener
Something like this.
How can I achieve this effect? I have looked into examples where we can apply glow effect to outer part of the image.
We can achieve…

Goofy
- 6,098
- 17
- 90
- 156
2
votes
0 answers
Making imagebuttons glow on touch in android
I am making a launcher for android, where it is only usable in landscape. Half of the screen is buttons, not apps, but buttons, and half is simply some clocks and stuff. I want my buttons to glow for like for a second or something once i touch them,…

user1446632
- 417
- 2
- 9
- 24
2
votes
3 answers
CSS: glowing text with glow very wide and high
I'm investigating since some days box-shadow and text-shadow. I'm trying to gain the following effect. I want a glow come out from the text of the once hovered. Simple, this should be easy as I explored using text-shadow. Ok, but it works with…

Daniel Ramirez-Escudero
- 3,877
- 13
- 43
- 80
2
votes
1 answer
Transform with Raphael.js
I have drawn two paths. I have applied glow to one of them, when i transform the set only the path which doesn't has glow moves and the one with glow doesn't, instead the "glow" gets transformed. I want the path and glow to transform together. How…

rohan_vg
- 1,087
- 3
- 15
- 27