Oracle Apex 5.0 - Display static image

廉价感情. 提交于 2019-12-03 21:12:26

You still need to use html. Try:

<img src="#APP_IMAGES#test.jpg" alt="image">

There are several options to display an image. But if you want to use an item to display one, you can use an item of the type "Display Image".
In the "Settings" for this item you get a few options on where the image should come from:

  • Image URL stored in Page Item Value
  • BLOB Column specified in Item Source
  • BLOB Column returned by SQL statement

You'd use the BLOB columns when working with images coming from the database, but here you can just use the "Image URL" option.

All you need to do then is to specify the URL in the item's source.

Obviously there are other methods too. You could indeed just generate the HTML yourself, for example.

use

<img src="#APP_IMAGES#flow.png" alt="image"> 

in label. Remember to upload the image in shared components

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!