2022-04-10 00:31:10 +00:00
|
|
|
accessing
|
|
|
|
avatarPicture
|
2023-07-27 01:52:32 +00:00
|
|
|
| response profileImgFile|
|
|
|
|
profileImgFile := self profileImageFile.
|
|
|
|
profileImgFile exists
|
|
|
|
ifTrue: [ ^ (ImageReadWriter formFromFileNamed: profileImgFile fullName) asElement ].
|
2022-04-10 00:31:10 +00:00
|
|
|
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 ].
|
2022-04-10 00:31:10 +00:00
|
|
|
response contentType = ZnMimeType imagePng
|
2022-05-14 23:17:34 +00:00
|
|
|
ifTrue: [ ^ (PNGReadWriter gtFromBuffer: response contents) asElement ].
|
|
|
|
^ GtABContact new avatar
|