mirror of
https://github.com/swaywm/sway.git
synced 2026-04-26 06:46:26 -04:00
Remove split-border-image contrib script
This commit is contained in:
parent
0c337629cf
commit
f899377863
1 changed files with 0 additions and 22 deletions
|
|
@ -1,22 +0,0 @@
|
|||
#!/usr/bin/env python
|
||||
|
||||
from PIL import Image
|
||||
import os
|
||||
import sys
|
||||
|
||||
fi = Image.open(sys.argv[1])
|
||||
image_dir = os.path.dirname(os.path.abspath(sys.argv[1]))
|
||||
size = int(sys.argv[2])
|
||||
|
||||
# Split into images ordered as follows:
|
||||
# 012
|
||||
# 7 3
|
||||
# 654
|
||||
fi.crop((0, 0, size, size)).save(os.path.join(image_dir, "0.png"))
|
||||
fi.crop((size, 0, fi.width-size, size)).save(os.path.join(image_dir, "1.png"))
|
||||
fi.crop((fi.width-size, 0, fi.width, size)).save(os.path.join(image_dir, "2.png"))
|
||||
fi.crop((fi.width-size, size, fi.width, fi.height-size)).save(os.path.join(image_dir, "3.png"))
|
||||
fi.crop((fi.width-size, fi.height-size, fi.width, fi.height)).save(os.path.join(image_dir, "4.png"))
|
||||
fi.crop((size, fi.height-size, fi.width-size, fi.height)).save(os.path.join(image_dir, "5.png"))
|
||||
fi.crop((0, fi.height-size, size, fi.height)).save(os.path.join(image_dir, "6.png"))
|
||||
fi.crop((0, size, size, fi.height-size)).save(os.path.join(image_dir, "7.png"))
|
||||
Loading…
Add table
Add a link
Reference in a new issue