diff --git a/jarvis/cogs/image.py b/jarvis/cogs/image.py index d711b5b..daac58b 100644 --- a/jarvis/cogs/image.py +++ b/jarvis/cogs/image.py @@ -71,7 +71,10 @@ class ImageCog(commands.Cog): file = cv2.imencode(".png", new_img)[1].tobytes() bufio = BytesIO(file) - await ctx.send(file=File(bufio, filename="resized.png")) + await ctx.send( + "New size: {}".format(convert_bytesize(len(file))), + file=File(bufio, filename="resized.png"), + ) def setup(bot):