summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjaseg <git@jaseg.de>2024-06-22 13:44:50 +0200
committerjaseg <git@jaseg.de>2024-06-22 13:44:50 +0200
commit780de94e320b4acbb47ed3c5c1f16fe1dad23e99 (patch)
tree31e880ebe5fb1318ae024d7918c0da845ae9158f
parent351ba0a77a5187f66102fcfb2b2c3991de30c5e5 (diff)
downloadbarcode-780de94e320b4acbb47ed3c5c1f16fe1dad23e99.tar.gz
barcode-780de94e320b4acbb47ed3c5c1f16fe1dad23e99.tar.bz2
barcode-780de94e320b4acbb47ed3c5c1f16fe1dad23e99.zip
Increase default font size
-rw-r--r--barcode_gen.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/barcode_gen.py b/barcode_gen.py
index c8d16bb..34e5b81 100644
--- a/barcode_gen.py
+++ b/barcode_gen.py
@@ -71,7 +71,7 @@ class Tag:
@click.option('-h', '--height', type=float, default=20, help='Bar height in mm')
@click.option('-t/-n', '--text/--no-text', default=True, help='Whether to add text containing the data under the bar code')
@click.option('-f', '--font', default='sans-serif', help='Font for the text underneath the bar code')
-@click.option('-s', '--font-size', type=float, default=10, help='Font size for the text underneath the bar code in points (pt)')
+@click.option('-s', '--font-size', type=float, default=12, help='Font size for the text underneath the bar code in points (pt)')
@click.option('-b', '--bar-width', type=float, default=1.0, help='Bar width in mm')
@click.option('-m', '--margin', type=float, default=2.0, help='Margin around bar code in mm')
@click.option('-c', '--color', default='black', help='SVG color for the bar code')