Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vmj-qt
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
vmj-qt
Commits
a17a4361
Commit
a17a4361
authored
Mar 16, 2015
by
Dan Pascu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Optimized chat inline images to avoid compression artifacts
parent
1255e956
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
chatwindow.py
blink/chatwindow.py
+3
-1
No files found.
blink/chatwindow.py
View file @
a17a4361
...
...
@@ -500,12 +500,14 @@ class Thumbnail(object):
image_format
=
str
(
image_reader
.
format
())
image_data
=
str
(
image_reader
.
device
()
.
readAll
())
else
:
file_format
=
str
(
image_reader
.
format
())
file_size
=
image_reader
.
device
()
.
size
()
image_size
=
image_reader
.
size
()
if
image_size
.
height
()
>
720
:
image_reader
.
setScaledSize
(
image_size
*
720
/
image_size
.
height
())
image
=
QPixmap
.
fromImageReader
(
image_reader
)
image_buffer
=
QBuffer
()
image_format
=
'png'
if
image
.
hasAlphaChannel
()
else
'jpeg'
image_format
=
'png'
if
image
.
hasAlphaChannel
()
or
(
file_format
in
{
'png'
,
'tiff'
,
'ico'
}
and
file_size
<=
100
*
1024
)
else
'jpeg'
image
.
save
(
image_buffer
,
image_format
)
image_data
=
str
(
image_buffer
.
data
())
instance
=
super
(
Thumbnail
,
cls
)
.
__new__
(
cls
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment