Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

How to resize display image item?

935316May 13 2012 — edited May 16 2012
How to resize an image in display image item not in column?
I find a way to resize it in column which similar to this way

decode(nvl(dbms_lob.getlength(PLAYER_PIC),0),0,null,
'<img style="border: 4px solid #CCC; -moz-border-radius: 4px; -webkit-border-radius:
4px;" '||
'src="'||
apex_util.get_blob_file_src('P5_PLAYER_PIC',ROWID)||
'" height="75" width="75" alt="Player Image" title="Player Image" />')
detail_img

but when I try to implement it to display image item which I returned the image from the column, I cant resize it this way, or may be I used wrong syntax, can you please help me finding way to resize it with steps?
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jun 13 2012
Added on May 13 2012
8 comments
1,458 views