Socialmetrica/Socialmetrica.package/NitterUser.class/instance/avatarPicture.st

9 lines
385 B
Smalltalk
Raw Normal View History

accessing
avatarPicture
2022-05-14 23:17:34 +00:00
| response |
response := ZnClient new url: (self profileImageUrl); get; response.
response contentType = ZnMimeType imageJpeg
2022-05-14 23:17:34 +00:00
ifTrue: [ ^ (PluginBasedJPEGReadWriter gtFromBuffer: response contents) asElement ].
response contentType = ZnMimeType imagePng
2022-05-14 23:17:34 +00:00
ifTrue: [ ^ (PNGReadWriter gtFromBuffer: response contents) asElement ].
^ GtABContact new avatar