Add hotline bling and megamind memes
This commit is contained in:
parent
2622ac9c43
commit
74edb650f6
34
configs/memegen/templates/hotline-bling/config.json
Normal file
34
configs/memegen/templates/hotline-bling/config.json
Normal file
@ -0,0 +1,34 @@
|
||||
{
|
||||
"font": "impact.ttf",
|
||||
"fill_color": [
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"stroke_color": [
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"stroke_width": 0,
|
||||
"zones": {
|
||||
"top": {
|
||||
"horizontal_align": "right",
|
||||
"horizontal_offset": -5,
|
||||
"vertical_align": "top",
|
||||
"vertical_offset": 75,
|
||||
"width": "45%",
|
||||
"max_line_height": 50,
|
||||
"line_spacing": 5
|
||||
},
|
||||
"bottom": {
|
||||
"horizontal_align": "right",
|
||||
"horizontal_offset": -5,
|
||||
"vertical_align": "bottom",
|
||||
"vertical_offset": -75,
|
||||
"width": "45%",
|
||||
"max_line_height": 50,
|
||||
"line_spacing": 5
|
||||
}
|
||||
}
|
||||
}
|
BIN
configs/memegen/templates/hotline-bling/template.png
Normal file
BIN
configs/memegen/templates/hotline-bling/template.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 107 KiB |
17
configs/memegen/templates/megamind/config.json
Normal file
17
configs/memegen/templates/megamind/config.json
Normal file
@ -0,0 +1,17 @@
|
||||
{
|
||||
"font": "impact.ttf",
|
||||
"fill_color": [255, 255, 255],
|
||||
"stroke_color": [0, 0, 0],
|
||||
"stroke_width": 2,
|
||||
"zones": {
|
||||
"top": {
|
||||
"horizontal_align": "center",
|
||||
"horizontal_offset": 0,
|
||||
"vertical_align": "top",
|
||||
"vertical_offset": 5,
|
||||
"width": "80%",
|
||||
"max_line_height": 80,
|
||||
"line_spacing": 5
|
||||
}
|
||||
}
|
||||
}
|
BIN
configs/memegen/templates/megamind/template.png
Normal file
BIN
configs/memegen/templates/megamind/template.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 166 KiB |
@ -151,7 +151,7 @@ def main() -> int:
|
||||
"--keep-case", help="Keep the case of the text", action="store_true"
|
||||
)
|
||||
ap.add_argument("--output", "-o", help="Output file path")
|
||||
ap.add_argument("--show", help="Show the image after creation", action="store_true")
|
||||
ap.add_argument("--no-show", help="Don't show the image after creation", action="store_true")
|
||||
ap.add_argument(
|
||||
"-v", "--verbose", help="Enable verbose logging", action="store_true"
|
||||
)
|
||||
@ -207,7 +207,7 @@ def main() -> int:
|
||||
if args.output
|
||||
else (
|
||||
DEFAULT_OUTPUT_DIR
|
||||
/ f"{args.template}-{datetime.now().strftime('%Y-%m-%d-%H-%M-%S')}.png"
|
||||
/ f"meme-{datetime.now().strftime('%Y-%m-%d-%H-%M-%S')}.{args.template}.png"
|
||||
)
|
||||
)
|
||||
output_path.parent.mkdir(parents=True, exist_ok=True)
|
||||
@ -216,7 +216,7 @@ def main() -> int:
|
||||
image.save(output_path)
|
||||
|
||||
# Show the image
|
||||
if args.show:
|
||||
if not args.no_show:
|
||||
subprocess.run(["xdg-open", str(output_path)])
|
||||
|
||||
return 0
|
||||
|
Loading…
x
Reference in New Issue
Block a user