
Finished the drawing above about 6 months ago, ripped up a scanner in order to get it scanned in somewhat, that still left some distortions in place, and needs a remake. The tough part was the top part of this, seemed like everything wanted to reject patching it together, figured out finally that there was a segment of it that for some reason was 150dpi, not 300, or 300 and not 600 depending on the folder, but somehow the original source was 50%. Should have noticed it sooner, and anyways, done now.
Second issue today fixed/found, WordPress loves to compress images, in order to make it stop you have to edit the themes functions.php file (in “Theme Editor” click on Theme Functions (function.php) on the right-hand side) and then add this at the end:
add_filter( 'big_image_size_threshold', '__return_false' ); add_filter('jpeg_quality', function($arg){return 100;});