Page 5 of 13

Re: FrostedGlass - Frosted glass effect in windows 10

Posted: August 17th, 2016, 4:09 pm
by balala
theAzack9, this would be a great plugin, but now I have a problem. Could I achieve somehow to blur not what I have behind the skin, but the images on the skin? This would be useful for me now.
Thanks.

Re: FrostedGlass - Frosted glass effect in windows 10

Posted: August 19th, 2016, 10:51 am
by theAzack9
balala wrote:theAzack9, this would be a great plugin, but now I have a problem. Could I achieve somehow to blur not what I have behind the skin, but the images on the skin? This would be useful for me now.
Thanks.
Sorry for a late answer...

The thing with the magic that is done in c++ is that it is all or nothing, so there isn't any way of choosing a part to blur. :/

Re: FrostedGlass - Frosted glass effect in windows 10

Posted: August 20th, 2016, 10:05 am
by balala
theAzack9 wrote:The thing with the magic that is done in c++ is that it is all or nothing, so there isn't any way of choosing a part to blur. :/
My question didn't relate to this.
I have the following code:

Code: Select all

[Rainmeter]
Update=-1
SkinWidth=120
SkinHeight=90

[BlurBehind]
Measure=Plugin
Plugin=FrostedGlass
BlurEnabled=1

[Meter]
Meter=Image
ImageName=#@#Whatever.png
X=10
Y=10
W=100
H=70
Now the parts of the skin uncovered by the image are blurring what I have behind them. I'd like to blur the image itself (which is part of the skin). Could I?
Thanks.

Re: FrostedGlass - Frosted glass effect in windows 10

Posted: August 20th, 2016, 3:48 pm
by theAzack9
balala wrote:My question didn't relate to this.
I have the following code:

Code: Select all

[Rainmeter]
Update=-1
SkinWidth=120
SkinHeight=90

[BlurBehind]
Measure=Plugin
Plugin=FrostedGlass
BlurEnabled=1

[Meter]
Meter=Image
ImageName=#@#Whatever.png
X=10
Y=10
W=100
H=70
Now the parts of the skin uncovered by the image are blurring what I have behind them. I'd like to blur the image itself (which is part of the skin). Could I?
Thanks.
It is probably possible, but not with this plugin, sorry.

Could you "pre-blur" the image and switch between the blurred and the non-blurred version? You can probably achieve the blur effect with something like ImageMagick.

Re: FrostedGlass - Frosted glass effect in windows 10

Posted: August 20th, 2016, 6:15 pm
by balala
theAzack9 wrote:It is probably possible, but not with this plugin, sorry.
Ok, that's exactly what I thought, too. Just asked, to be sure.
theAzack9 wrote:Could you "pre-blur" the image and switch between the blurred and the non-blurred version? You can probably achieve the blur effect with something like ImageMagick.
No, that's not a viable option, because I should have to blur some changing images (in a "slideshow" skin).
But thanks anyway for your reply.

Re: FrostedGlass - Frosted glass effect in windows 10

Posted: September 16th, 2016, 1:46 am
by Virginityrocks
Still haven't found a way to specify the blur regions X Y coordinates, or W H? :-(

Re: FrostedGlass - Frosted glass effect in windows 10

Posted: September 16th, 2016, 2:22 am
by Brian
This method will only set the blur to the entire skin window, there is no way at all to ever 'control' the blurring with this method.

The only work around I could see if you made a 'dummy' skin that you control its location and dimensions from another skin - but even this method would probably have some problems (like dragging the skin to a new location).

-Brian

Re: FrostedGlass - Frosted glass effect in windows 10

Posted: September 16th, 2016, 8:20 am
by theAzack9
Brian wrote:This method will only set the blur to the entire skin window, there is no way at all to ever 'control' the blurring with this method.

The only work around I could see if you made a 'dummy' skin that you control its location and dimensions from another skin - but even this method would probably have some problems (like dragging the skin to a new location).

-Brian
Hmmm, it could work by making hwnd's that always stays behind the skin, but i don't think that is a good idea at all. (plugin-wise) Though it would certainly be possible, but really hacky...

Re: FrostedGlass - Frosted glass effect in windows 10

Posted: September 16th, 2016, 12:09 pm
by balala
Brian wrote:The only work around I could see if you made a 'dummy' skin that you control its location and dimensions from another skin - but even this method would probably have some problems (like dragging the skin to a new location).
Yes, I thought to this, but from my point of view, it's hard to handle it, exactly for what you've described.
Thanks anyway.

Re: FrostedGlass - Frosted glass effect in windows 10

Posted: September 20th, 2016, 9:41 pm
by Virginityrocks
It's not a huge deal so long as you don't mind limiting the aesthetics to square windows. As long as the skin width and height are fixed, like in my case, it's fine.