CKImage can display resource files as image. Do setting the following to display an image file (cgikit.png
) in ImagePage of Examples.
<番号リスト-1->move resources
directory to path enables displaying images.番号リスト-1->
resource
attribute of CKAppication.
<リストタイトル>move resources
directoryリストタイトル>
[localhost:/var/www/cgi-bin/Examples] user% mv resources ../../htdocs
<リストタイトル>set path of resources
directory (Example.cgi
)リストタイトル>
app = CKApplication.new app.web_server_resources = '../../htdocs/resources' app.run
<リストタイトル>set an image file name of file
attribute (ImagePage.ckd
)リストタイトル>
FileInResource : CKImage { alt = "File in resource direcory"; file = "cgikit.png"; }
This is an example to display static an image file. CKImage can display dinamically using with data
attribute.