キャンバスにグラフィック画像を表示する正しい方法は何ですか?私はオブジェクトaImageを持っています:
(ImageReader fromFile: 'clockface.jpg') image.
GUIBuilder(新しいキャンバス->インストール)を介して、ClockWindowという新しいクラスを作成しました。
(...)superclass: #{UI.ApplicationModel}(...)
およびメソッドの初期化:
initialize
|img gc|
img:=(ImageReader fromFile: 'clockface.jpg') image.
img convertForGraphicsDevice: Screen default.
gc := ScreenGraphicsContext new.
img displayOn: gc.
gc displayOn: self.
しかし、エラーが発生しました:messageNotUnderstood:representImage:anImage forMedium:medium in line: "img displayOn:gc。"