Home Artists Posts Import Register

Content

Most are cropped for vertical 9:21 aspect. Feel free to use www.saucenao.com to find less edited versions of your favorites.  

Most found on www.pixiv.net which is direct from the artists. 

Files

Z Reviews Backgrounds

Store photos and docs online. Access them from any PC, Mac or phone. Create and work together on Word, Excel or PowerPoint documents.

Comments

Anonymous

Weeb heaven!

Anonymous

One Drive, we tango once more.......

Anonymous

I'll be in my bunk

Anonymous

Heres a quick bash (linux) script to sort the images into folders based on their resolutions - you can tidy further from there - works on OSX too. You need ImageMagick, if you're on OSX, look at www.brew.sh, once you have brew installed, "brew install imagemagick". Make sure all the images are in a single folder, drop this script into the same folder and run it from there. It'll run through each image and make a directory that matches the WxH of the image, and move the image into it. It was just so I had a quicker way to split the images that are portrait aspect from landscape aspect. #!/bin/bash for f in * ; do echo "$f" DIM=`identify -format "%[fx:w]x%[fx:h]" "$f"` mkdir $DIM mv "$f" $DIM done