Please scale them before posting so we don't see them blurry... (Warning: this will overwrite the images, make a copy)
mogrify -filter point -resize 800%x800% ob*.gif
The crying ones are identical so here's just one
This shall be the community where we discuss, share, make and learn from each other how to draw the little pictures and game assets we all love.
Rules
To make it easy to identify original content, mark original content with [OC] in the post title.
If it is not your art, please credit the creator out of respect for their efforts.
Critizise art in a constructive manner and only when asked for.
Consider adding a copyright license hint to your post, if you are fine with people sharing your work.
This community is about enjoying art and appreciating artists, please do not post generated images here
Resources
Please scale them before posting so we don't see them blurry... (Warning: this will overwrite the images, make a copy)
mogrify -filter point -resize 800%x800% ob*.gif
The crying ones are identical so here's just one
Thank you so much! I wasn't sure why this is happening.
When images are scaled up in browsers or apps to fill the screen, they usually use bilinear filtering or interpolation, which works well with photos but blurs pixel boundaries. By scaling up the pictures beforehand using the nearest-neighbor (blocky) method to a multiple of the original resolution (here 8x), you reduce or eliminate the blurring. The command works on Linux if you have ImageMagick installed, for Windows you also need to add magick
in front IIRC. You can use convert
instead of mogrify
to avoid overwriting the original images but you then need to specify an output filename at the end, for example ob%01d.png
for a counter of multiple filenames.