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
It'd be nice to have this as the default - maybe generating images with a "1 block" margin like so (1px border added to clarify margin);
This does raise the issue of "how do we scale images" now, as currently if you ask for a 512x512 image then we draw blocks of (512/8)x(512/8), which wouldn't be possible if a margin is added.
Alternatively we could discard the outer 1 block border like so, which does avoid the issue of scaling;
The issue now is that we've discarded over 40% of the source image by removing the surrounding 28 blocks! 😱
The text was updated successfully, but these errors were encountered:
It'd be nice to have this as the default - maybe generating images with a "1 block" margin like so (1px border added to clarify margin);
This does raise the issue of "how do we scale images" now, as currently if you ask for a 512x512 image then we draw blocks of (512/8)x(512/8), which wouldn't be possible if a margin is added.
Alternatively we could discard the outer 1 block border like so, which does avoid the issue of scaling;
The issue now is that we've discarded over 40% of the source image by removing the surrounding 28 blocks! 😱
The text was updated successfully, but these errors were encountered: