-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Create __init__.py * Update tags.py * Create 0 * Add files via upload * Delete meme_generator/memes/izumi_watch/images/0 * style: auto fix by pre-commit hooks * Update __init__.py * Update __init__.py * rename izumi to konata * replace image --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: meetwq <meetwq@gmail.com>
- Loading branch information
1 parent
17e8d39
commit ab014cc
Showing
3 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
from datetime import datetime | ||
from pathlib import Path | ||
|
||
from pil_utils import BuildImage | ||
|
||
from meme_generator import add_meme | ||
from meme_generator.tags import MemeTags | ||
from meme_generator.utils import make_png_or_gif | ||
|
||
img_dir = Path(__file__).parent / "images" | ||
|
||
|
||
def konata_watch(images: list[BuildImage], texts: list[str], args): | ||
frame = BuildImage.open(img_dir / "0.png") | ||
|
||
def make(imgs: list[BuildImage]) -> BuildImage: | ||
img = imgs[0].convert("RGBA").resize((270, 200), keep_ratio=True) | ||
return frame.copy().paste( | ||
img.perspective(((0, 1), (275, 0), (273, 202), (2, 216))), | ||
(50, 188), | ||
below=True, | ||
) | ||
|
||
return make_png_or_gif(images, make) | ||
|
||
|
||
add_meme( | ||
"konata_watch", | ||
konata_watch, | ||
min_images=1, | ||
max_images=1, | ||
keywords=["泉此方看"], | ||
tags=MemeTags.konata, | ||
date_created=datetime(2024, 8, 18), | ||
date_modified=datetime(2024, 8, 19), | ||
) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters