This ensures the user cannot raise the maximum sixel size, where width*height cannot be represented as an integer.
Note, we should consider moving all sixel width/height variables from int to size_t. But, since it doesn't make any sense with overly large
sixel images, clamping the max width/height is enough. Add a static_assert() that checks SIXEL_MAX_WIDTH * SIXEL_MAX_HEIGHT doesn't overflow.
Closes #2343
This ensures the user cannot raise the maximum sixel size, where width*height cannot be represented as an integer.
Note, we should consider moving all sixel width/height variables from int to size_t. But, since it doesn't make any sense with overly large
sixel images, clamping the max width/height is enough. Add a `static_assert()` that checks `SIXEL_MAX_WIDTH * SIXEL_MAX_HEIGHT` doesn't overflow.
Closes #2343