Hi,
Had a good look around but can't find the solution for this.
I have a classic report in Apex 5, and am rendering a blob image from table using: -
select sdf.file_id,
dbms_lob.getlength(sdf.STOCK_IMAGE) stock_image
from STOCK_DETAIL_UNALLOCATED sdu, stock_detail_files sdf
where sdf.licenceplate = sdu.licenceplate
and sdf.licenceplate = :P16_LICENCEPLATE
The stock_image column is defined as DISPLAY_IMAGE. This all works fine apart from the image being the wrong size, how do I control the height/width of this image?
Thanks,
Mike