Skip to content

Commit

Permalink
Small update
Browse files Browse the repository at this point in the history
  • Loading branch information
KazukiPrzyborowski committed Nov 15, 2024
1 parent c31b2be commit 74a61e0
Show file tree
Hide file tree
Showing 19 changed files with 24 additions and 24 deletions.
2 changes: 1 addition & 1 deletion upcean/encode/binary.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def encode_binary_barcode(inimage, upc, resize=1, shiftxy=(0, 0), barheight=(48,
if(pilsupport and imageoutlib == "pillow"):
pil_addon_fix = 0
cairo_addon_fix = 0
elif((cairosupport and (imageoutlib == "cairo" or imageoutlib == "cairosvg")) or (svgwritesupport and cairosvgsupport and imageoutlib == "svgwrite") or (qahirahsupport and imageoutlib == "qahirah")):
elif((cairosupport and (imageoutlib == "cairo" or imageoutlib == "cairosvg")) or (svgwritesupport and cairosvgsupport and imageoutlib == "svgwrite") or (qahirahsupport and imageoutlib == "qahirah") or (wandsupport and imageoutlib == "wand")):
pil_addon_fix = 0
cairo_addon_fix = (9 * (int(resize) * barwidth[1]))
elif(svgwritesupport and imageoutlib == "svgwrite"):
Expand Down
2 changes: 1 addition & 1 deletion upcean/encode/codabar.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def encode_codabar_barcode(inimage, upc, resize=1, shiftxy=(0, 0), barheight=(48
if(pilsupport and imageoutlib == "pillow"):
pil_addon_fix = 0
cairo_addon_fix = 0
elif((cairosupport and (imageoutlib == "cairo" or imageoutlib == "cairosvg")) or (svgwritesupport and cairosvgsupport and imageoutlib == "svgwrite") or (qahirahsupport and imageoutlib == "qahirah")):
elif((cairosupport and (imageoutlib == "cairo" or imageoutlib == "cairosvg")) or (svgwritesupport and cairosvgsupport and imageoutlib == "svgwrite") or (qahirahsupport and imageoutlib == "qahirah") or (wandsupport and imageoutlib == "wand")):
pil_addon_fix = 0
cairo_addon_fix = (9 * (int(resize) * barwidth[1]))
elif(svgwritesupport and imageoutlib == "svgwrite"):
Expand Down
2 changes: 1 addition & 1 deletion upcean/encode/code11.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def encode_code11_barcode(inimage, upc, resize=1, shiftxy=(0, 0), barheight=(48,
if(pilsupport and imageoutlib == "pillow"):
pil_addon_fix = 0
cairo_addon_fix = 0
elif((cairosupport and (imageoutlib == "cairo" or imageoutlib == "cairosvg")) or (svgwritesupport and cairosvgsupport and imageoutlib == "svgwrite") or (qahirahsupport and imageoutlib == "qahirah")):
elif((cairosupport and (imageoutlib == "cairo" or imageoutlib == "cairosvg")) or (svgwritesupport and cairosvgsupport and imageoutlib == "svgwrite") or (qahirahsupport and imageoutlib == "qahirah") or (wandsupport and imageoutlib == "wand")):
pil_addon_fix = 0
cairo_addon_fix = (9 * (int(resize) * barwidth[1]))
elif(svgwritesupport and imageoutlib == "svgwrite"):
Expand Down
4 changes: 2 additions & 2 deletions upcean/encode/code128.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def encode_code128_barcode(inimage, upc, resize=1, shiftxy=(0, 0), barheight=(48
if(pilsupport and imageoutlib == "pillow"):
pil_addon_fix = 0
cairo_addon_fix = 0
elif((cairosupport and (imageoutlib == "cairo" or imageoutlib == "cairosvg")) or (svgwritesupport and cairosvgsupport and imageoutlib == "svgwrite") or (qahirahsupport and imageoutlib == "qahirah")):
elif((cairosupport and (imageoutlib == "cairo" or imageoutlib == "cairosvg")) or (svgwritesupport and cairosvgsupport and imageoutlib == "svgwrite") or (qahirahsupport and imageoutlib == "qahirah") or (wandsupport and imageoutlib == "wand")):
pil_addon_fix = 0
cairo_addon_fix = (9 * (int(resize) * barwidth[1]))
elif(svgwritesupport and imageoutlib == "svgwrite"):
Expand Down Expand Up @@ -756,7 +756,7 @@ def encode_code128old_barcode(inimage, upc, resize=1, shiftxy=(0, 0), barheight=
if(pilsupport and imageoutlib == "pillow"):
pil_addon_fix = 0
cairo_addon_fix = 0
elif((cairosupport and (imageoutlib == "cairo" or imageoutlib == "cairosvg")) or (svgwritesupport and cairosvgsupport and imageoutlib == "svgwrite") or (qahirahsupport and imageoutlib == "qahirah")):
elif((cairosupport and (imageoutlib == "cairo" or imageoutlib == "cairosvg")) or (svgwritesupport and cairosvgsupport and imageoutlib == "svgwrite") or (qahirahsupport and imageoutlib == "qahirah") or (wandsupport and imageoutlib == "wand")):
pil_addon_fix = 0
cairo_addon_fix = (9 * (int(resize) * barwidth[1]))
elif(svgwritesupport and imageoutlib == "svgwrite"):
Expand Down
2 changes: 1 addition & 1 deletion upcean/encode/code32.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def encode_code32_barcode(inimage, upc, resize=1, shiftxy=(0, 0), barheight=(48,
if(pilsupport and imageoutlib == "pillow"):
pil_addon_fix = 0
cairo_addon_fix = 0
elif((cairosupport and (imageoutlib == "cairo" or imageoutlib == "cairosvg")) or (svgwritesupport and cairosvgsupport and imageoutlib == "svgwrite") or (qahirahsupport and imageoutlib == "qahirah")):
elif((cairosupport and (imageoutlib == "cairo" or imageoutlib == "cairosvg")) or (svgwritesupport and cairosvgsupport and imageoutlib == "svgwrite") or (qahirahsupport and imageoutlib == "qahirah") or (wandsupport and imageoutlib == "wand")):
pil_addon_fix = 0
cairo_addon_fix = (9 * (int(resize) * barwidth[1]))
elif(svgwritesupport and imageoutlib == "svgwrite"):
Expand Down
4 changes: 2 additions & 2 deletions upcean/encode/code39.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def encode_code39_barcode(inimage, upc, resize=1, shiftxy=(0, 0), barheight=(48,
if(pilsupport and imageoutlib == "pillow"):
pil_addon_fix = 0
cairo_addon_fix = 0
elif((cairosupport and (imageoutlib == "cairo" or imageoutlib == "cairosvg")) or (svgwritesupport and cairosvgsupport and imageoutlib == "svgwrite") or (qahirahsupport and imageoutlib == "qahirah")):
elif((cairosupport and (imageoutlib == "cairo" or imageoutlib == "cairosvg")) or (svgwritesupport and cairosvgsupport and imageoutlib == "svgwrite") or (qahirahsupport and imageoutlib == "qahirah") or (wandsupport and imageoutlib == "wand")):
pil_addon_fix = 0
cairo_addon_fix = (9 * (int(resize) * barwidth[1]))
elif(svgwritesupport and imageoutlib == "svgwrite"):
Expand Down Expand Up @@ -477,7 +477,7 @@ def encode_code39extended_barcode(inimage, upc, resize=1, shiftxy=(0, 0), barhei
if(pilsupport and imageoutlib == "pillow"):
pil_addon_fix = 0
cairo_addon_fix = 0
elif((cairosupport and (imageoutlib == "cairo" or imageoutlib == "cairosvg")) or (svgwritesupport and cairosvgsupport and imageoutlib == "svgwrite") or (qahirahsupport and imageoutlib == "qahirah")):
elif((cairosupport and (imageoutlib == "cairo" or imageoutlib == "cairosvg")) or (svgwritesupport and cairosvgsupport and imageoutlib == "svgwrite") or (qahirahsupport and imageoutlib == "qahirah") or (wandsupport and imageoutlib == "wand")):
pil_addon_fix = 0
cairo_addon_fix = (9 * (int(resize) * barwidth[1]))
elif(svgwritesupport and imageoutlib == "svgwrite"):
Expand Down
4 changes: 2 additions & 2 deletions upcean/encode/code93.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def encode_code93_barcode(inimage, upc, resize=1, shiftxy=(0, 0), barheight=(48,
if(pilsupport and imageoutlib == "pillow"):
pil_addon_fix = 0
cairo_addon_fix = 0
elif((cairosupport and (imageoutlib == "cairo" or imageoutlib == "cairosvg")) or (svgwritesupport and cairosvgsupport and imageoutlib == "svgwrite") or (qahirahsupport and imageoutlib == "qahirah")):
elif((cairosupport and (imageoutlib == "cairo" or imageoutlib == "cairosvg")) or (svgwritesupport and cairosvgsupport and imageoutlib == "svgwrite") or (qahirahsupport and imageoutlib == "qahirah") or (wandsupport and imageoutlib == "wand")):
pil_addon_fix = 0
cairo_addon_fix = (9 * (int(resize) * barwidth[1]))
elif(svgwritesupport and imageoutlib == "svgwrite"):
Expand Down Expand Up @@ -475,7 +475,7 @@ def encode_code93extended_barcode(inimage, upc, resize=1, shiftxy=(0, 0), barhei
if(pilsupport and imageoutlib == "pillow"):
pil_addon_fix = 0
cairo_addon_fix = 0
elif((cairosupport and (imageoutlib == "cairo" or imageoutlib == "cairosvg")) or (svgwritesupport and cairosvgsupport and imageoutlib == "svgwrite") or (qahirahsupport and imageoutlib == "qahirah")):
elif((cairosupport and (imageoutlib == "cairo" or imageoutlib == "cairosvg")) or (svgwritesupport and cairosvgsupport and imageoutlib == "svgwrite") or (qahirahsupport and imageoutlib == "qahirah") or (wandsupport and imageoutlib == "wand")):
pil_addon_fix = 0
cairo_addon_fix = (9 * (int(resize) * barwidth[1]))
elif(svgwritesupport and imageoutlib == "svgwrite"):
Expand Down
2 changes: 1 addition & 1 deletion upcean/encode/ean13.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ def encode_ean13_barcode(inimage, upc, resize=1, shiftxy=(0, 0), barheight=(48,
if(pilsupport and imageoutlib == "pillow"):
pil_addon_fix = 0
cairo_addon_fix = 0
elif((cairosupport and (imageoutlib == "cairo" or imageoutlib == "cairosvg")) or (svgwritesupport and cairosvgsupport and imageoutlib == "svgwrite") or (qahirahsupport and imageoutlib == "qahirah")):
elif((cairosupport and (imageoutlib == "cairo" or imageoutlib == "cairosvg")) or (svgwritesupport and cairosvgsupport and imageoutlib == "svgwrite") or (qahirahsupport and imageoutlib == "qahirah") or (wandsupport and imageoutlib == "wand")):
pil_addon_fix = 0
cairo_addon_fix = (9 * (int(resize) * barwidth[1]))
elif(svgwritesupport and imageoutlib == "svgwrite"):
Expand Down
2 changes: 1 addition & 1 deletion upcean/encode/ean2.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def encode_ean2_barcode(inimage, upc, resize=1, shiftxy=(0, 0), barheight=(48, 5
if(pilsupport and imageoutlib == "pillow"):
pil_addon_fix = 0
cairo_addon_fix = 0
elif((cairosupport and (imageoutlib == "cairo" or imageoutlib == "cairosvg")) or (svgwritesupport and cairosvgsupport and imageoutlib == "svgwrite") or (qahirahsupport and imageoutlib == "qahirah")):
elif((cairosupport and (imageoutlib == "cairo" or imageoutlib == "cairosvg")) or (svgwritesupport and cairosvgsupport and imageoutlib == "svgwrite") or (qahirahsupport and imageoutlib == "qahirah") or (wandsupport and imageoutlib == "wand")):
pil_addon_fix = 0
cairo_addon_fix = (9 * (int(resize) * barwidth[1]))
elif(svgwritesupport and imageoutlib == "svgwrite"):
Expand Down
2 changes: 1 addition & 1 deletion upcean/encode/ean5.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def encode_ean5_barcode(inimage, upc, resize=1, shiftxy=(0, 0), barheight=(48, 5
if(pilsupport and imageoutlib == "pillow"):
pil_addon_fix = 0
cairo_addon_fix = 0
elif((cairosupport and (imageoutlib == "cairo" or imageoutlib == "cairosvg")) or (svgwritesupport and cairosvgsupport and imageoutlib == "svgwrite") or (qahirahsupport and imageoutlib == "qahirah")):
elif((cairosupport and (imageoutlib == "cairo" or imageoutlib == "cairosvg")) or (svgwritesupport and cairosvgsupport and imageoutlib == "svgwrite") or (qahirahsupport and imageoutlib == "qahirah") or (wandsupport and imageoutlib == "wand")):
pil_addon_fix = 0
cairo_addon_fix = (9 * (int(resize) * barwidth[1]))
elif(svgwritesupport and imageoutlib == "svgwrite"):
Expand Down
2 changes: 1 addition & 1 deletion upcean/encode/ean8.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ def encode_ean8_barcode(inimage, upc, resize=1, shiftxy=(0, 0), barheight=(48, 5
if(pilsupport and imageoutlib == "pillow"):
pil_addon_fix = 0
cairo_addon_fix = 0
elif((cairosupport and (imageoutlib == "cairo" or imageoutlib == "cairosvg")) or (svgwritesupport and cairosvgsupport and imageoutlib == "svgwrite") or (qahirahsupport and imageoutlib == "qahirah")):
elif((cairosupport and (imageoutlib == "cairo" or imageoutlib == "cairosvg")) or (svgwritesupport and cairosvgsupport and imageoutlib == "svgwrite") or (qahirahsupport and imageoutlib == "qahirah") or (wandsupport and imageoutlib == "wand")):
pil_addon_fix = 0
cairo_addon_fix = (9 * (int(resize) * barwidth[1]))
elif(svgwritesupport and imageoutlib == "svgwrite"):
Expand Down
2 changes: 1 addition & 1 deletion upcean/encode/itf.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def encode_itf_barcode(inimage, upc, resize=1, shiftxy=(0, 0), barheight=(48, 54
if(pilsupport and imageoutlib == "pillow"):
pil_addon_fix = 0
cairo_addon_fix = 0
elif((cairosupport and (imageoutlib == "cairo" or imageoutlib == "cairosvg")) or (svgwritesupport and cairosvgsupport and imageoutlib == "svgwrite") or (qahirahsupport and imageoutlib == "qahirah")):
elif((cairosupport and (imageoutlib == "cairo" or imageoutlib == "cairosvg")) or (svgwritesupport and cairosvgsupport and imageoutlib == "svgwrite") or (qahirahsupport and imageoutlib == "qahirah") or (wandsupport and imageoutlib == "wand")):
pil_addon_fix = 0
cairo_addon_fix = (9 * (int(resize) * barwidth[1]))
elif(svgwritesupport and imageoutlib == "svgwrite"):
Expand Down
2 changes: 1 addition & 1 deletion upcean/encode/itf14.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def encode_itf14_barcode(inimage, upc, resize=1, shiftxy=(0, 0), barheight=(48,
if(pilsupport and imageoutlib == "pillow"):
pil_addon_fix = 0
cairo_addon_fix = 0
elif((cairosupport and (imageoutlib == "cairo" or imageoutlib == "cairosvg")) or (svgwritesupport and cairosvgsupport and imageoutlib == "svgwrite") or (qahirahsupport and imageoutlib == "qahirah")):
elif((cairosupport and (imageoutlib == "cairo" or imageoutlib == "cairosvg")) or (svgwritesupport and cairosvgsupport and imageoutlib == "svgwrite") or (qahirahsupport and imageoutlib == "qahirah") or (wandsupport and imageoutlib == "wand")):
pil_addon_fix = 0
cairo_addon_fix = (9 * (int(resize) * barwidth[1]))
elif(svgwritesupport and imageoutlib == "svgwrite"):
Expand Down
2 changes: 1 addition & 1 deletion upcean/encode/msi.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def encode_msi_barcode(inimage, upc, resize=1, shiftxy=(0, 0), barheight=(48, 54
if(pilsupport and imageoutlib == "pillow"):
pil_addon_fix = 0
cairo_addon_fix = 0
elif((cairosupport and (imageoutlib == "cairo" or imageoutlib == "cairosvg")) or (svgwritesupport and cairosvgsupport and imageoutlib == "svgwrite") or (qahirahsupport and imageoutlib == "qahirah")):
elif((cairosupport and (imageoutlib == "cairo" or imageoutlib == "cairosvg")) or (svgwritesupport and cairosvgsupport and imageoutlib == "svgwrite") or (qahirahsupport and imageoutlib == "qahirah") or (wandsupport and imageoutlib == "wand")):
pil_addon_fix = 0
cairo_addon_fix = (9 * (int(resize) * barwidth[1]))
elif(svgwritesupport and imageoutlib == "svgwrite"):
Expand Down
2 changes: 1 addition & 1 deletion upcean/encode/plessey.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def encode_plessey_barcode(inimage, upc, resize=1, shiftxy=(0, 0), barheight=(48
if(pilsupport and imageoutlib == "pillow"):
pil_addon_fix = 0
cairo_addon_fix = 0
elif((cairosupport and (imageoutlib == "cairo" or imageoutlib == "cairosvg")) or (svgwritesupport and cairosvgsupport and imageoutlib == "svgwrite") or (qahirahsupport and imageoutlib == "qahirah")):
elif((cairosupport and (imageoutlib == "cairo" or imageoutlib == "cairosvg")) or (svgwritesupport and cairosvgsupport and imageoutlib == "svgwrite") or (qahirahsupport and imageoutlib == "qahirah") or (wandsupport and imageoutlib == "wand")):
pil_addon_fix = 0
cairo_addon_fix = (9 * (int(resize) * barwidth[1]))
elif(svgwritesupport and imageoutlib == "svgwrite"):
Expand Down
2 changes: 1 addition & 1 deletion upcean/encode/stf.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def encode_stf_barcode(inimage, upc, resize=1, shiftxy=(0, 0), barheight=(48, 54
if(pilsupport and imageoutlib == "pillow"):
pil_addon_fix = 0
cairo_addon_fix = 0
elif((cairosupport and (imageoutlib == "cairo" or imageoutlib == "cairosvg")) or (svgwritesupport and cairosvgsupport and imageoutlib == "svgwrite") or (qahirahsupport and imageoutlib == "qahirah")):
elif((cairosupport and (imageoutlib == "cairo" or imageoutlib == "cairosvg")) or (svgwritesupport and cairosvgsupport and imageoutlib == "svgwrite") or (qahirahsupport and imageoutlib == "qahirah") or (wandsupport and imageoutlib == "wand")):
pil_addon_fix = 0
cairo_addon_fix = (9 * (int(resize) * barwidth[1]))
elif(svgwritesupport and imageoutlib == "svgwrite"):
Expand Down
4 changes: 2 additions & 2 deletions upcean/encode/upca.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def encode_upca_barcode(inimage, upc, resize=1, shiftxy=(0, 0), barheight=(48, 5
if(pilsupport and imageoutlib == "pillow"):
pil_addon_fix = 0
cairo_addon_fix = 0
elif((cairosupport and (imageoutlib == "cairo" or imageoutlib == "cairosvg")) or (svgwritesupport and cairosvgsupport and imageoutlib == "svgwrite") or (qahirahsupport and imageoutlib == "qahirah")):
elif((cairosupport and (imageoutlib == "cairo" or imageoutlib == "cairosvg")) or (svgwritesupport and cairosvgsupport and imageoutlib == "svgwrite") or (qahirahsupport and imageoutlib == "qahirah") or (wandsupport and imageoutlib == "wand")):
pil_addon_fix = 0
cairo_addon_fix = (9 * (int(resize) * barwidth[1]))
elif(svgwritesupport and imageoutlib == "svgwrite"):
Expand Down Expand Up @@ -585,7 +585,7 @@ def encode_upcaean_barcode(inimage, upc, resize=1, shiftxy=(0, 0), barheight=(48
if(pilsupport and imageoutlib == "pillow"):
pil_addon_fix = 0
cairo_addon_fix = 0
elif((cairosupport and (imageoutlib == "cairo" or imageoutlib == "cairosvg")) or (svgwritesupport and cairosvgsupport and imageoutlib == "svgwrite") or (qahirahsupport and imageoutlib == "qahirah")):
elif((cairosupport and (imageoutlib == "cairo" or imageoutlib == "cairosvg")) or (svgwritesupport and cairosvgsupport and imageoutlib == "svgwrite") or (qahirahsupport and imageoutlib == "qahirah") or (wandsupport and imageoutlib == "wand")):
pil_addon_fix = 0
cairo_addon_fix = (9 * (int(resize) * barwidth[1]))
elif(svgwritesupport and imageoutlib == "svgwrite"):
Expand Down
4 changes: 2 additions & 2 deletions upcean/encode/upcavar.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ def encode_upcavar_barcode(inimage, upc, resize=1, shiftxy=(0, 0), barheight=(48
if(pilsupport and imageoutlib == "pillow"):
pil_addon_fix = 0
cairo_addon_fix = 0
elif((cairosupport and (imageoutlib == "cairo" or imageoutlib == "cairosvg")) or (svgwritesupport and cairosvgsupport and imageoutlib == "svgwrite") or (qahirahsupport and imageoutlib == "qahirah")):
elif((cairosupport and (imageoutlib == "cairo" or imageoutlib == "cairosvg")) or (svgwritesupport and cairosvgsupport and imageoutlib == "svgwrite") or (qahirahsupport and imageoutlib == "qahirah") or (wandsupport and imageoutlib == "wand")):
pil_addon_fix = 0
cairo_addon_fix = (9 * (int(resize) * barwidth[1]))
elif(svgwritesupport and imageoutlib == "svgwrite"):
Expand Down Expand Up @@ -594,7 +594,7 @@ def encode_upcaeanvar_barcode(inimage, upc, resize=1, shiftxy=(0, 0), barheight=
if(pilsupport and imageoutlib == "pillow"):
pil_addon_fix = 0
cairo_addon_fix = 0
elif((cairosupport and (imageoutlib == "cairo" or imageoutlib == "cairosvg")) or (svgwritesupport and cairosvgsupport and imageoutlib == "svgwrite") or (qahirahsupport and imageoutlib == "qahirah")):
elif((cairosupport and (imageoutlib == "cairo" or imageoutlib == "cairosvg")) or (svgwritesupport and cairosvgsupport and imageoutlib == "svgwrite") or (qahirahsupport and imageoutlib == "qahirah") or (wandsupport and imageoutlib == "wand")):
pil_addon_fix = 0
cairo_addon_fix = (9 * (int(resize) * barwidth[1]))
elif(svgwritesupport and imageoutlib == "svgwrite"):
Expand Down
2 changes: 1 addition & 1 deletion upcean/encode/upce.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ def encode_upce_barcode(inimage, upc, resize=1, shiftxy=(0, 0), barheight=(48, 5
if(pilsupport and imageoutlib == "pillow"):
pil_addon_fix = 0
cairo_addon_fix = 0
elif((cairosupport and (imageoutlib == "cairo" or imageoutlib == "cairosvg")) or (svgwritesupport and cairosvgsupport and imageoutlib == "svgwrite") or (qahirahsupport and imageoutlib == "qahirah")):
elif((cairosupport and (imageoutlib == "cairo" or imageoutlib == "cairosvg")) or (svgwritesupport and cairosvgsupport and imageoutlib == "svgwrite") or (qahirahsupport and imageoutlib == "qahirah") or (wandsupport and imageoutlib == "wand")):
pil_addon_fix = 0
cairo_addon_fix = (9 * (int(resize) * barwidth[1]))
elif(svgwritesupport and imageoutlib == "svgwrite"):
Expand Down

0 comments on commit 74a61e0

Please sign in to comment.