Skip to content

Commit

Permalink
#1699 only use icon for small squarish rectangles
Browse files Browse the repository at this point in the history
git-svn-id: https://xpra.org/svn/Xpra/trunk@18926 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Mar 31, 2018
1 parent ded30b5 commit 5cd256d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/xpra/codecs/webp/encode.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,8 @@ def compress(image, int quality=50, int speed=50, supports_alpha=False, content_
cdef Py_ssize_t pic_buf_len = 0
cdef WebPConfig config
cdef WebPPreset preset = DEFAULT_PRESET
if width*height<8192:
#only use icon for small squarish rectangles
if width*height<=2304 and abs(width-height)<=16:
preset = PRESET_SMALL
preset = CONTENT_TYPE_PRESET.get(content_type, preset)
cdef WebPImageHint image_hint = CONTENT_TYPE_HINT.get(content_type, DEFAULT_IMAGE_HINT)
Expand Down

0 comments on commit 5cd256d

Please sign in to comment.