-
Notifications
You must be signed in to change notification settings - Fork 75
/
TestCAvatar.py
69 lines (58 loc) · 2.3 KB
/
TestCAvatar.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Created on 2019年7月26日
@author: Irony
@site: https://pyqt5.com https://github.com/892768447
@email: 892768447@qq.com
@file: TestCAvatar
@description:
"""
from PyQt5.QtCore import QSize
from PyQt5.QtWidgets import QWidget, QHBoxLayout
from CustomWidgets.CAvatar import CAvatar
__Author__ = 'Irony'
__Copyright__ = 'Copyright (c) 2019 Irony'
__Version__ = 1.0
class Window(QWidget):
def __init__(self, *args, **kwargs):
super(Window, self).__init__(*args, **kwargs)
layout = QHBoxLayout(self)
# 没有头像
layout.addWidget(CAvatar(self))
# 路径错误
layout.addWidget(CAvatar(self, url='test.jpg'))
# 本地三种尺寸头像
layout.addWidget(CAvatar(
self, shape=CAvatar.Circle, url='TestData/example-1.jpg', size=CAvatar.SizeSmall))
layout.addWidget(CAvatar(
self, shape=CAvatar.Circle, url='TestData/example-2.jpg', animation=True))
layout.addWidget(CAvatar(
self, shape=CAvatar.Rectangle, url='TestData/example-3.jpg', size=QSize(48, 48)))
# 本地gif, 不支持animation
layout.addWidget(CAvatar(
self, shape=CAvatar.Circle, url='TestData/example-1.gif'))
# 网络头像
layout.addWidget(CAvatar(
self, shape=CAvatar.Rectangle,
url='https://www.thiswaifudoesnotexist.net/example-1000.jpg', size=CAvatar.SizeSmall))
layout.addWidget(CAvatar(
self, shape=CAvatar.Circle, animation=True,
url='https://www.thiswaifudoesnotexist.net/example-1001.jpg'))
# 假装路径错误
layout.addWidget(CAvatar(
self, shape=CAvatar.Rectangle,
url='https://www.thiswaifudoesnotexist.net/example.jpg'))
# 加载网络gif
layout.addWidget(CAvatar(
self, shape=CAvatar.Rectangle, size=CAvatar.SizeLarge,
url='https://n.sinaimg.cn/tech/transform/761/w404h357/20190923/d71b-iewtena6804980.gif'))
if __name__ == '__main__':
import sys
import cgitb
sys.excepthook = cgitb.enable(1, None, 5, '')
from PyQt5.QtWidgets import QApplication
app = QApplication(sys.argv)
w = Window()
w.show()
sys.exit(app.exec_())