강좌 / 팁

소프트웨어 레인미터로 아이콘배경색 모양 변경하기

2019.07.23 22:29

갑파니 조회:1629 추천:5

레인미터로 아이콘배경색이나 모양을 쉽게 만들 수 있습니다.

 

ba.jpg

 

예제로 첨부한 스킨은 위와 같습니다. 모양은 원 육각형등 다양하게 변경할 수 있습니다.

 

아래는 스킨의 내용입니다.


[FrostedGlass]
Measure=Plugin
Plugin=FrostedGlass
Type=none
Border=All
;Type Blur, Acrylic, and None
;Valid values are All, None, Left, Right, Top and Bottom.
;In order to mix and match the borders can you select a few of the sides by piping them together. e.g Border=Left | Right will create a border on only the left and right side of the skin and not on the top and bottom.

 

위에 부분은 도형의 채우기색을 투명값을 주었을때 흐림효과를 주는것입니다.

Type=none값만 보시면 됩니다.

Blur(조금 흐림), Acrylic(흐림), and None(흐림 효과 없음)

 

[MeterBg]
Meter=Shape
DynamicVariables=1
X=(14*#Scale#)
Y=(0*#Scale#)
Shape=Rectangle (3*#Scale#),(3*#Scale#),(50*#Scale#),(50*#Scale#), | Fill Color #color2# | StrokeWidth 0 | Stroke Color #color1# 

 

가장 위의 바탕스킨입니다.

Fill Color = 채우기색입니다.


[MeterBg2]
Meter=Shape
DynamicVariables=1
X=(0*#Scale#)r
Y=(70*#Scale#)r
Shape=Rectangle (3*#Scale#),(3*#Scale#),(50*#Scale#),(50*#Scale#),(4*#Scale#) | Fill Color #color2# | StrokeWidth 0 | Stroke Color #color1# 

 

2번째입니다.

X,Y 괄호뒤에r은 위에 바탕스킨에서 해당값만큼 이동하라는것입니다.

Shape=Rectangle (3*#Scale#),(3*#Scale#),(50*#Scale#),(50*#Scale#),(4*#Scale#)

에서 (4*#Scale#)은 사각형의 각진부분을 둥글게 해주는 값입니다. 값이 클수록 더 둥글어집니다.


[MeterBg3]
Meter=Shape
DynamicVariables=1
X=(0*#Scale#)r
Y=(70*#Scale#)r
Shape=Rectangle (3*#Scale#),(3*#Scale#),(50*#Scale#),(50*#Scale#),(4*#Scale#) | Fill Color #color2#,125 | StrokeWidth 1 | Stroke Color #color1#

 

3번째 스킨입니다.

StrokeWidth는 외곽선 두께입니다. 0이면 외곽선이 없는것입니다. 값이 클수록 두꺼워집니다.

Stroke Color는 외곽선 색입니다.

Fill Color #color2#,125에서 125는 투명도입니다. 1이면 완전투명입니다. 1~255사이에서 값을 주시면 됩니다.

 

[MeterBg4]
Meter=Shape
DynamicVariables=1
X=(0*#Scale#)r
Y=(70*#Scale#)r
Shape=Rectangle (3*#Scale#),(3*#Scale#),(50*#Scale#),(50*#Scale#),(4*#Scale#) | Fill Color #color2#,125 | StrokeWidth 3 | Stroke Color #color1# 

 

4번째 스킨입니다.

 

첨부된 스킨은 더블클릭하면 색을 조절할수 있는 세팅스킨도 포함시켜놓았습니다.

내용에서 보시면 아시겠지만 color1이 외곽선 색이고 color2가 채우기 색입니다.

예제 스킨은 첨부파일에 넣어두었습니다.

 

ExampleMeterShape.jpg

위에 내용에서 (14*#Scale#)이런식으로 한 이유는 마우스 휠로 편하게 크기를 조절하기위해 추가한 내용입니다.

아래에서 원하는 도형의 값을 확인 하실수 있습니다.

[Rainmeter]
Update=1000
DynamicWindowSize=1
AccurateText=1

[MeterRectangle]
Meter=Shape
X=2
Y=2
Shape=Rectangle 0,0,100,100 | Extend MyModifiers1
MyModifiers1=Fill Color 191,237,239,255 | StrokeWidth 4 | Stroke Color 46,115,31,255

[MeterRotatedRectangle]
Meter=Shape
X=25R
Y=14r
Shape=Rectangle 0,0,70,70 | Extend MyModifiers1, MyModifiers2
MyModifiers1=Fill Color 191,237,239,255 | StrokeWidth 4 | Stroke Color 46,115,31,255
MyModifiers2=Rotate 45

[MeterRoundedRectangle]
Meter=Shape
X=10R
Y=2
Shape=Rectangle 0,0,100,100,20 | Extend MyModifiers1
MyModifiers1=Fill Color 191,237,239,255 | StrokeWidth 4 | Stroke Color 46,115,31,255

[MeterRoundedX]
Meter=Shape
X=10R
Y=2
Shape=Rectangle 0,0,100,100,40,20 | Extend MyModifiers1
MyModifiers1=Fill Color 191,237,239,255 | StrokeWidth 4 | Stroke Color 46,115,31,255

[MeterRoundedY]
Meter=Shape
X=10R
Y=2
Shape=Rectangle 0,0,100,100,20,40 | Extend MyModifiers1
MyModifiers1=Fill Color 191,237,239,255 | StrokeWidth 4 | Stroke Color 46,115,31,255

[MeterOvalWide]
Meter=Shape
X=10R
Y=15r
Shape=Rectangle 0,0,100,70,50 | Extend MyModifiers1
MyModifiers1=Fill Color 191,237,239,255 | StrokeWidth 4 | Stroke Color 46,115,31,255

[MeterOvalTall]
Meter=Shape
X=10R
Y=2
Shape=Rectangle 0,0,70,100,50 | Extend MyModifiers1
MyModifiers1=Fill Color 191,237,239,255 | StrokeWidth 4 | Stroke Color 46,115,31,255

[MeterEllipse]
Meter=Shape
X=10R
Y=2
Shape=Rectangle 0,0,100,100,50 | Extend MyModifiers1
MyModifiers1=Fill Color 191,237,239,255 | StrokeWidth 4 | Stroke Color 46,115,31,255

[MeterLine]
Meter=Shape
X=0
Y=20R
Shape=Rectangle 0,0,858,2, | Extend MyModifiers1
MyModifiers1=Fill Color 191,237,239,255 | StrokeWidth 0

 

https://docs.rainmeter.net/manual/meters/shape/

에서 가져왔습니다.

번호 제목 글쓴이 조회 추천 등록일
[공지] 강좌 작성간 참고해주세요 gooddew - - -
179 소프트웨어| Utorrent 설치 안하고 포터블로 사용하기 [8] 가자™ 13713 2 03-01
178 소프트웨어| Internet Explorer에서 웹 페이지를 표시할 수 없습니다. [6] 오마르왕자 12988 4 02-21
177 소프트웨어| "마우스 우클릭 드래그+복사 기능 차단" 뚫어보... [15] YhK군 11518 8 02-18
176 소프트웨어| 다음카페 펌방지 해제 UserScript (수정) [24] 초월신 15406 3 02-18
175 소프트웨어| Vmware 8.0.2용 osx unlocker 입니다, [5] 오펜하이머 9797 4 02-17
174 소프트웨어| 3. 토렌트 메뉴얼 - 다운로드 [14] 공피 16402 7 02-07
173 소프트웨어| 2. 토렌트 메뉴얼 - 업로드 [11] 공피 10648 8 02-07
172 소프트웨어| 1. 토렌트 메뉴얼 - 설정 [19] 공피 16679 9 02-07
171 소프트웨어| 포토샵 [CS5] "영문 패치 하는 방법 " [17] 커피한사발 10968 1 02-01
170 소프트웨어| ThinApp 로 포터블 만들기 [21] 수박바나나 18363 4 01-30
169 소프트웨어| 정말 좋은 크롬 확장기능 [29] 윈도우찬양 12280 3 01-30
168 소프트웨어| Mozilla Firefox에서 트위터와 페이스북 부가기능 Yoono 사... [7] DuDu 6580 1 01-30
167 소프트웨어| 4GB 제한의 진실, 32비트 Windows (XP, Vista, 7)클라이언트 [32] haruka 18206 1 01-28
166 소프트웨어| 윈도우7 USER-PE 사용방법 - CASE 2 [9] 세리아 23855 3 01-21
165 소프트웨어| 윈도우7 USER-PE 사용방법 - CASE 1 [9] 세리아 34832 3 01-21
164 소프트웨어| 구글 크롬 유용한 확장기능 10개 -2- [5] APPCRASH 11820 3 01-20
163 소프트웨어| 크롬용 확장 프로그램 1개 추천 [14] 꼬마야 8686 3 01-20
162 소프트웨어| 크롬 몇가지 팁 [3] 꼬마야 8853 1 01-20
161 소프트웨어| USB키보드인채로 PLOP 사용하기 (USB 2.0 MODE + PE) [18] hazuki 48410 0 01-19
160 소프트웨어| 구글 크롬 유용한 확장기능 10개 [8] APPCRASH 11669 4 01-19
XE1.11.6 Layout1.4.8