-
-
Notifications
You must be signed in to change notification settings - Fork 28
Open
Labels
featureAdding a new tool to the pluginAdding a new tool to the plugin
Description
- Feature request.
Feature request
Currently the scaling metdata is not usable for pixel art, since smoothing is enabled by default. Instead you'd want to use the "Nearest neighbor" algorithm to prevent the art from becoming blurry.
My suggestion would be a global option to choose the scaling method (I doubt pixelart would be combined with regular art).
Workaround:
In the meanwhile for people bumping into this issue, you can use the following script to scale your images. (Requires imagemagick)
#!/bin/bash
for i in $(find -follow -iname "*.png"); do
convert $i -interpolate Nearest -filter point -resize 3000% $i
doneMetadata
Metadata
Assignees
Labels
featureAdding a new tool to the pluginAdding a new tool to the plugin