Commit 7d7749a8 authored by narugo1992's avatar narugo1992
Browse files

dev(narugo): add image for squeeze_with_transparency, test skip

parent f4ddc739
Loading
Loading
Loading
Loading
+14 −0
Original line number Diff line number Diff line
from PIL import Image

from imgutils.operate import squeeze_with_transparency
from plot import image_plot

if __name__ == '__main__':
    image = Image.open('jerry_with_space.png')

    image_plot(
        (image, 'origin'),
        (squeeze_with_transparency(image), 'squeezed'),
        columns=2,
        figsize=(7, 4),
    )