summaryrefslogtreecommitdiffstats
path: root/share/extensions/color_blackandwhite.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 18:24:48 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 18:24:48 +0000
commitcca66b9ec4e494c1d919bff0f71a820d8afab1fa (patch)
tree146f39ded1c938019e1ed42d30923c2ac9e86789 /share/extensions/color_blackandwhite.py
parentInitial commit. (diff)
downloadinkscape-12fc8abae6d434cac7670a59ed3a67301cc2eb10.tar.xz
inkscape-12fc8abae6d434cac7670a59ed3a67301cc2eb10.zip
Adding upstream version 1.2.2.upstream/1.2.2upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rwxr-xr-xshare/extensions/color_blackandwhite.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/share/extensions/color_blackandwhite.py b/share/extensions/color_blackandwhite.py
new file mode 100755
index 0000000..e5e65b2
--- /dev/null
+++ b/share/extensions/color_blackandwhite.py
@@ -0,0 +1,24 @@
+#!/usr/bin/env python
+"""To black and white"""
+
+import inkex
+
+
+class BlackAndWhite(inkex.ColorExtension):
+ """Convert colours to black and white"""
+
+ def add_arguments(self, pars):
+ pars.add_argument(
+ "-t", "--threshold", type=int, default=127, help="Threshold Color Level"
+ )
+
+ def modify_color(self, name, color):
+ # ITU-R Recommendation BT.709 (NTSC and PAL)
+ # l = 0.2125 * r + 0.7154 * g + 0.0721 * b
+ lum = 0.299 * color.red + 0.587 * color.green + 0.114 * color.blue
+ grey = 255 if lum > self.options.threshold else 0
+ return inkex.Color((grey, grey, grey))
+
+
+if __name__ == "__main__":
+ BlackAndWhite().run()