Add support for shadows

This commit is contained in:
Quantum 2020-09-26 19:37:48 -04:00
parent a9b6711228
commit a46bfd7916
2 changed files with 46 additions and 0 deletions

View file

@ -3,6 +3,7 @@ import os
import sys import sys
import traceback import traceback
from win2xcur import shadow
from win2xcur.parser import open_blob from win2xcur.parser import open_blob
from win2xcur.writer.x11 import check_xcursorgen, to_x11 from win2xcur.writer.x11 import check_xcursorgen, to_x11
@ -13,6 +14,20 @@ def main() -> None:
help='Windows cursor files to convert (*.cur, *.ani)') help='Windows cursor files to convert (*.cur, *.ani)')
parser.add_argument('-o', '--output', '--output-dir', default=os.curdir, parser.add_argument('-o', '--output', '--output-dir', default=os.curdir,
help='Directory to store converted cursor files.') help='Directory to store converted cursor files.')
parser.add_argument('-s', '--shadow', action='store_true',
help="Whether to emulate Windows's shadow effect")
parser.add_argument('-O', '--shadow-opacity', type=int, default=50,
help='Opacity of the shadow (0 to 255)')
parser.add_argument('-r', '--shadow-radius', type=float, default=0.1,
help='Radius of shadow blur effect (as fraction of width)')
parser.add_argument('-S', '--shadow-sigma', type=float, default=0.1,
help='Sigma of shadow blur effect (as fraction of width)')
parser.add_argument('-x', '--shadow-x', type=float, default=0.05,
help='x-offset of shadow (as fraction of width)')
parser.add_argument('-y', '--shadow-y', type=float, default=0.05,
help='x-offset of shadow (as fraction of height)')
parser.add_argument('-c', '--shadow-color', default='#000000',
help='color of the shadow')
args = parser.parse_args() args = parser.parse_args()
@ -27,6 +42,9 @@ def main() -> None:
print('Error occurred while processing %s:' % (name,), file=sys.stderr) print('Error occurred while processing %s:' % (name,), file=sys.stderr)
traceback.print_exc() traceback.print_exc()
else: else:
if args.shadow:
shadow.apply_to_frames(cursor.frames, color=args.shadow_color, radius=args.shadow_radius,
sigma=args.shadow_sigma, xoffset=args.shadow_x, yoffset=args.shadow_y)
result = to_x11(cursor.frames) result = to_x11(cursor.frames)
output = os.path.join(args.output, os.path.splitext(os.path.basename(name))[0]) output = os.path.join(args.output, os.path.splitext(os.path.basename(name))[0])
with open(output, 'wb') as f: with open(output, 'wb') as f:

28
win2xcur/shadow.py Normal file
View file

@ -0,0 +1,28 @@
from typing import List
from wand.image import BaseImage, Image
from win2xcur.cursor import CursorFrame
def apply_to_image(image: BaseImage, *, color: str, radius: float, sigma: float, xoffset: float,
yoffset: float) -> Image:
opacity = Image(width=image.width, height=image.height, pseudo='xc:white')
opacity.composite(image.channel_images['opacity'], left=round(xoffset * image.width),
top=round(yoffset * image.height))
opacity.gaussian_blur(radius * image.width, sigma * image.width)
opacity.negate()
opacity.modulate(50)
shadow = Image(width=image.width, height=image.height, pseudo='xc:' + color)
shadow.composite(opacity, operator='copy_opacity')
result = image.clone()
result.composite(shadow, operator='difference')
return result
def apply_to_frames(frames: List[CursorFrame], **kwargs):
for frame in frames:
for cursor in frame:
cursor.image = apply_to_image(cursor.image, **kwargs)