thomasdn
thomasdn
> Hi @thomasdn, could you add this as a new commit to #438 ? I'll try :-)
Not sure if this worked? Did you receive the updated pull request? https://github.com/saimn/sigal/pull/438
I have been playing around with this a bit. It seems that if I add .heic to img_extensions, then it fails in the following places: The first immediate plate the...
I think I *almost* fixed this using pyheif. This is the code change I made to image.py: --- venv2/lib/python3.7/site-packages/sigal/image.py 2021-07-07 11:49:55.452187776 +0200 +++ sigal/image.py 2021-07-10 14:39:09.921711241 +0200 @@ -48,6 +48,8...
That does seem like an easy way to Just Fix it. Hopefully that'll work. Not sure if it will solve the issue with filenames/thumbnails, though? Will these still have to...
> Hmm, for thumbnail extensions I don't remember exactly the status, ~there was an issue about this~ (#421)... There is still some confusion in the code between urls and filenames...
I have tried replacing: from PIL import Image as PILImage With: from PIL import Image as PILImage from pyheif_pillow_opener import register_heif_opener register_heif_opener() In image.py and gallery.py. The hope what that...
Hi, Could this be solved by having a Format class that describes an image format. Each format has a name, e.g. JPEG, PNG, etc. and a list of extensions which...
I second @Christian-Schulz suggestion to generate a static noise layer for the entire image. Such layer could be generated by using a hash of the original image as seed. In...
Seconded!