You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use a mix of pixel art and non-pixel art in my wallpaper collection.
As you know, this requires changing the filter depending on whether it is pixel art or not,
as pixel art images would look blurry when not using Nearest and other images would likely also look bad when using Nearest Neighbor filtering on them.
Because of this, I started renaming all my pixel art images to start with "pixel-" and wrote a small script that selects the correct filter accordingly:
While this does work well, it means I need to manually go through (new) gifs to name them correctly.
I thought it would be cool to automatically detect whether the image file is pixel-art and then select the filter according to that.
I have some ideas how this detection can be accomplished, but with this issue, I mostly want to check if there's interest in adding this to swww.
I thought a --filter auto option would be nice. It would detect if an image is pixel art and would use Nearest in that case and Lanczos3 otherwise.
Let me know what you think!
The text was updated successfully, but these errors were encountered:
Interesting. Generally speaking, I want the daemon to remain as simple as possible because it is a long-running program that can hog resources for a very long time. But, I do not mind more complexity in the client program. Since the client is the one who reads the images, I guess we could try integrating this in swww if you manage to make it work.
Hey there,
I use a mix of pixel art and non-pixel art in my wallpaper collection.
As you know, this requires changing the filter depending on whether it is pixel art or not,
as pixel art images would look blurry when not using Nearest and other images would likely also look bad when using Nearest Neighbor filtering on them.
Because of this, I started renaming all my pixel art images to start with "pixel-" and wrote a small script that selects the correct filter accordingly:
While this does work well, it means I need to manually go through (new) gifs to name them correctly.
I thought it would be cool to automatically detect whether the image file is pixel-art and then select the filter according to that.
I have some ideas how this detection can be accomplished, but with this issue, I mostly want to check if there's interest in adding this to swww.
I thought a
--filter auto
option would be nice. It would detect if an image is pixel art and would use Nearest in that case and Lanczos3 otherwise.Let me know what you think!
The text was updated successfully, but these errors were encountered: