Cross Reference: color_desaturate.py
xref
: /
inkscape
/
share
/
extensions
/
color_desaturate.py
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
#!/
usr
/
bin
/
env
python
import
coloreffect
class
C(
coloreffect
.
ColorEffect
):
def
colmod
(
self
,r,g,b):
l = (
max
(r,g,b)+
min
(r,g,b))/
2
ig
=
int
(
round
(l))
return
'%02x%02x%02x'
% (
ig
,
ig
,
ig
)
c = C()
c.
affect
()