Flask-Images icon indicating copy to clipboard operation
Flask-Images copied to clipboard

On-demand resizing of images for Flask applications.

Results 17 Flask-Images issues
Sort by recently updated
recently updated
newest added

This PR fix #57 : I don't use `itsdangerous._compat` anymore: I directly use [hmac.compare_digest](https://docs.python.org/3/library/hmac.html#hmac.compare_digest) The merge and the deployment onto pipy would be greatly appreciated: I really like your module...

No need to call bash commands when we can use os.rename, this solution is safer and multiplatform

Flask-Images is not compatible with itsdangerous Version 2.0.0: https://itsdangerous.palletsprojects.com/en/2.0.x/changes/ I got this error when I tried to run my flask app: ``` Error: While importing 'app', an ImportError was raised:...

## Initial conditions: * Flask-Images==3.0.2 * Flask==2.2.2 ## Reproduction step Use the imgresizer on a valid image. EG: ``` http://localhost:5000/imgsizer/test.jpg?h=480&m=crop&v=Yy8dVw&w=640&s=xxxxxx ``` ## Observed Behavior The URL returns a 500 error....

Is it possible to tell flask-images to honor jpeg exif orientation? I have an application where users can upload images that are displayed resized by flask-images. But the exif orientation...

Hi, can you do this with send_from_directory?

https://github.com/python-pillow/Pillow/issues/2609 My jpeg image is loaded with `image.mode == 'L'`. The `resize` function override this mode to `RGBA` and it breaks Pillow. https://github.com/mikeboers/Flask-Images/blob/master/flask_images/core.py#L225 I just commented this `mode` override and...

Running my server from localhost and trying to link to an external file produces a ValueError. Is this type of usage allowed? src="{{resized_img_src('www.example.com/pics/mypicture.jpg' it throws an error: raise ValueError('path is...

bug

`IMAGES_PATH` seems to only work as a list, can someone at least put this in the docs. `IMAGES_NAME`, I can't for the life of me figure out what this does...

I now have flask_images working flawlessly for static images with the following code: ``` {{ url_for('images', filename='have-a-nice-day.jpg', width=50) }} ``` I now want to use it for my dynamic document...