9 lines
385 B
Smalltalk
9 lines
385 B
Smalltalk
accessing
|
|
avatarPicture
|
|
| response |
|
|
response := ZnClient new url: (self profileImageUrl); get; response.
|
|
response contentType = ZnMimeType imageJpeg
|
|
ifTrue: [ ^ (PluginBasedJPEGReadWriter gtFromBuffer: response contents) asElement ].
|
|
response contentType = ZnMimeType imagePng
|
|
ifTrue: [ ^ (PNGReadWriter gtFromBuffer: response contents) asElement ].
|
|
^ GtABContact new avatar |