図形描画(画像ファイルの読み込み)

画像ファイルの読み込み、表示のサンプル

画像ファイルの読み込み

require('color')
gra = f_Graphics()
x = "C:\\Users\\Public\\Pictures\\Sample Pictures\\Desert.jpg"
img = gra:loadImageFromFILE(x)
cw = f_GetClientWidth()
ch = f_GetClientHeight()
gra:DrawImage(img, 0, 0, cw, ch)
 
comments powered by Disqus