Displaying an image that stored in DB

Hi all intermedia professionals:
I have a table that has a column that holds images ( BLOB datafile ).
I want to know how I can display the image
in Browser directly.
Thanks for your answers
Shahram

There is a sample code available on OTN for loading and retrieving images through a web browser:
http://otn.oracle.com/products/intermedia/
Go to "Sample Code" and click "Load rich media content with a browser".

Similar Messages

  • Download/Display the image files stored at KM location: J2EE application

    Hi All
    Please let me know how to download/Display the image files stored at KM location on portal using J2EE application. Thanks.
    Best Regards
    P M

    You can use a servlet to deliver the image data to the <img tag, which allows you to get the data from something other than a file on the server (e.g. store the image data as a session attribute with a generated attribute key, the key being given in the serlvet's query string).

  • Lines displayed in images that have been "sliced"

    Safari displays lines between sections of an image that have been "sliced" where a aprt of the image may be used with linking to other pages of that website or other url's. The header on the following site:
    http://www.mcruz.com/MCI-AboutUs.asp and contents pages of this site: http://www.apomessiah.com/guidepost1Summary.asp for a couple of examples.
    Is there a way to turn it off???

    This sounds as if you would try to import the images a 2nd time.
    But you say you  want to develop them.
    So make sure that your import dialog is no longer open, and that you access the images from library module, left-hand panel e.g. folders or collections.
    Then select one image and go to develop module, e.g. via pressing letter d as shortcut.
    Cornelia

  • Displaying an Image that's NOT inline

    Hi,
    We have Oracle Portal Version: 9.0.2.3.0B
    When we upload images they ALWAYS display inline EVEN if we choose "Link That Displays Item In Full Browser Window" or "Link That Displays Item In New Browser Window".
    For some reason these settings are ignored.
    Now i realize that i could upload it as a type:FILE which i'm sure will be the solution offered. But that's not the point as i'd prefer to use the type:IMAGE that Oracle makes available. Not only that, i need to create a new item type based on the Image type.
    Am i doing something wrong here? Do i have to triple-click or quadruple-click to enable these settings? :-) Or are they just presented to tease us? Or,..is it a bug?

    Chris -
    Check the properties for the region the image items are shown in. On the Attribute/Style tab make sure the Displayed Attributes area does not have "image" in it anywhere. I.e. if you want the display name, ensure only "display Name Link" is there and not "Display Name and Image Link" which is the default.
    Whatever attributes are listed here will show if they exist for the item type ... and let's face it - an image item definitely has an image attribute :)
    Hope this helps,
    Candace

  • How to display only images that do not have a map location assigned

    I just upgraded to PSE 11.  So far so good.  I am running Windows 7 64-bit, SP1.
    I'd like to find out how to search for all of my photos that do not have a map location assigned to them. 
    Is there a way to do this?  It may be built in, but so far I have not been able to figure it out.
    Thank you.
    Message title was edited by: Brett N

    Hi,
    I think that if you select the Places view, the images shown are the ones that you have already placed. If you then click on Add Places (at the bottom) the filmstrip across the top shows the images that haven't been placed.
    If you then place one of those images, a small icon appears in the filmstrip until you next close that window (click on Done).
    Hope that helps
    Brian

  • I bought an Ipod touch Used, I connected to my PC and I wanted to restore it, but the restoration could not be completed, since my PC does not recognize my iPod or iTunes. On the iPod screen displays an image that says I need to connect the device to iTun

    I bought an Ipod touch Used, I connected to my PC and I wanted to restore it, but the restoration could not be completed, since my PC does not recognize my iPod or iTunes. On the iPod screen displays an image thatsays I need to connect the device to iTunes.

    http://support.apple.com/kb/TS1538
    There have been some problems accessing pages on the Apple web site.  If the hyperlink gives you a "We're sorry" message, try again.

  • FF 5 on mac is no longer displaying background images that are defined in style sheets. This has woeked correctly for years with older versions.

    The problem occurs both in safe mode with all add-ons turned off and in normal mode with add-ons active. I see the missing images error on most sites using style sheets including Mozilla.

    Make sure that you allow pages to choose their colors and that you haven't enabled High Contrast in the Accessibility settings.
    * Firefox > Preferences > Content : Fonts & Colors > Colors : [X] "Allow pages to choose their own colors, instead of my selections above"
    See also http://support.apple.com/kb/HT1343#odd10

  • Why does PAL camera (using PCI-1407) display an image that is 640x480?

    I am using a PCI-1407 and a PAL format camera. The images acquire properly and are saved as 768 x 576 using MAX, but the image is displayed as 640 x 480 in a CWIMAQViewer window (using VB).
    Can anybody help me out?
    Thanks!

    Have you tried resizing or panning the window. several of our shipping example have the window sized for RS-170 images sizes
    A. Talley
    Applications Engineering
    National Instruments

  • LOV with images that originate from a BLOB in table

    Hello,
    i am using APEX ver. 4.2.1.00.08, with Oracle 11g R2. (11.2.0.3.0 + Patch 15), under Windows 7 64 bit. I have a table that stores images, that has the following desc:
    Name Data Type
    ID NUMBER(*,0) NOT NULL
    FILE_NAME VARCHAR2(1024 CHAR) NOT NULL
    MIME_TYPE VARCHAR2(100 CHAR) NOT NULL
    CONTENT_TYPE VARCHAR2(100 CHAR) NOT NULL
    FILE_SIZE NUMBER(*,0) NOT NULL
    VERSION NUMBER(*,0) NOT NULL
    PAYLOAD BLOB(4000) NOT NULL
    SERVER_ONLY VARCHAR2(1 CHAR) NOT NULL
    CODE VARCHAR2(200 CHAR) NOT NULL
    LAST_UPDATE_DATE DATE
    I need to build a LOV from this table, that instead of the name, it displays the image that is store in PAYLOAD field. I need this LOV to be displayed/used as a Select List in a Form.
    Can this be done ?
    i have tried this up to now, with no success, as the source for the LOV:
    SELECT gi.ID,
    decode(nvl(dbms_lob.getlength(gi.payload),0),0,null,
    '<img style="border: 4px solid #CCC; -moz-border-radius: 4px; -webkit-border-radius: 4px;" '||
    'src="'||
    apex_util.get_blob_file_src('P41_PAYLOAD', gi.id)||
    '" height="75" width="75" alt="General Image" title="General Image" />')
    IMAGE
    FROM GENERAL_IMAGE gi
    ORDER BY gi.CODE ASC
    What is displayed unfortunately, is just the text in the combo box (select list).
    Any idea if i can achieve this ?
    TIA

    Dionyssis wrote:
    i am using APEX ver. 4.2.1.00.08, with Oracle 11g R2. (11.2.0.3.0 + Patch 15), under Windows 7 64 bit. I have a table that stores images, that has the following desc:
    I need to build a LOV from this table, that instead of the name, it displays the image that is store in PAYLOAD field. I need this LOV to be displayed/used as a Select List in a Form.
    Can this be done ?Not using a select list. The content model for the elements<tt>option</tt> elements that comprise the select list only allows them to contain text, not other HTML elements like <tt>img</tt>. (APEX also escapes the LOV labels which is why you see the HTML code when the item is rendered.)
    Any idea if i can achieve this ?It might be feasible using a Pop-up LOV, but if you want something displayed directly in the page you'll need to find a plug-in or create some kind of custom component. For the latter useful building blocks would be a dynamic list, hidden item, dynamic action(s), and some CSS.

  • Noob / how to display an image?

    Hello,
    I'm just trying to display an image thats on my local drive, the class is /src/main.java, and the picture is located at /src/image/flower.jpeg
    The window appears, but no picture?
    import java.awt.*;
    import javax.swing.*;
    public class Main extends JFrame
    public Main()
    setSize(500,500);
    JPanel panel = new JPanel();
    panel.setBackground(Color.CYAN);
    ImageIcon icon = new ImageIcon("flower.jpg");
    JLabel label = new JLabel();
    label.setIcon(icon);
    panel.add(label);
    this.getContentPane().add(panel);
    setVisible(true);
    public static void main (String[] args) // no args expected
    new Main();
    } // end main
    } // end class ImageDisplay
    thanks from a noob

    Some advices.
    1. Avoid extending a class, except you need to change extended class behavior or need to put object of your class to some base-class container. In other ways - use association as much, as possibly.
    2. Never perform any of Swing operation in other Thread, than Event-Dispatch Thread (EDT). To put code running in Event-Dispatch Thread, use the SwingUtilities.invokeLater();
    3. Time-consuming tasks must be put off EDT. Use EDT as only "update UI" thread.
    So, your program should looks like this:
    import java.awt.*;
    import javax.swing.*;
    public class Main implements Runnable
        private ImageIcon icon;
        private JFrame jf;
        public Main(){
            icon = new ImageIcon("flower.jpg");
        public void run() {
            jf = new JFrame("Picture viewer");
            jf.setSize(500,500);
            JPanel panel = new JPanel();
            panel.setBackground(Color.CYAN);
            JLabel label = new JLabel();
            label.setIcon(icon);
            panel.add(label);
            jf.setContentPane(panel);
            jf.setVisible(true);
        public static void main (String[] args) {// no args expected
            Main main = new Main();
            SwingUtilities.invokeLater(main);
        } // end main
    } // end class ImageDisplay

  • How to read local large JPEG files and display into Images Tile

    Hi all,
    I can read the local multiple files by FLEX/AIR FileListEvent
    and loader to read the large JPEG files but cannot display them
    into a TileList. Since it is a number of images files, how can I
    put them into a thumbnail TileList.
    Please kindly advise.
    Regards,
    Billy

    1. So I would like to know which is the {color:#3366ff}best way to load local images in ImageView{color}.I'm no expert, but is there a reason that you are using Swing to do the loading?
    2. secondly, currently the system displays all images only after the completion of creating all images. {color:#3366ff}How to display images as and when they are created.{color} So that the user has a feeling that the images are loading.JavaFX Image class let you display a lightweight placeholder, and you can bind the progress to some kind of visual indicator. I don't think you can display an image that is partially loaded.
    def PATHS: String[] = [
        "C://Ariel Atom//ariel-atom-1.jpg",
        "C://Ariel Atom//ariel-atom-2.jpg",
        "C://Ariel Atom//ariel-atom-3.jpg",
        "C://Ariel Atom//ariel-atom-5.jpg"
    function getImage(path: String): Image {
        Image {
            url: "file:///{path}"
            backgroundLoading: true
    Stage {
        title: "Image Tiles"
        width: 1024
        height: 800
        scene: Scene {
            content: [
                Tile {
                    columns: 2
                    tileWidth: 400
                    tileHeight: 400
                    content: for (i in [0..3]) {
                        ImageView {
                            image: getImage(PATHS)

  • Displaying the image stored in Blob column

    Hi all,
    I'm trying to print the report with an image. I've stored the image in a Blob column and the format of the image is Jpg.
    I'm using the Reports 10g(10.1.2.0.2). When I'm trying to print the report, I'm getting an error Rep-62203. I want to know whether there are any settings which i need to set to display the image item. I mean to say that are there any registry settings.
    Regards,
    Alok Dubey
    Edited by: Alok Dubey on Dec 1, 2008 12:55 PM

    Hi all,
    I'm trying to print the report with an image. I've stored the image in a Blob column and the format of the image is Jpg.
    I'm using the Reports 10g(10.1.2.0.2). When I'm trying to print the report, I'm getting an error Rep-62203. I want to know whether there are any settings which i need to set to display the image item. I mean to say that are there any registry settings.
    Regards,
    Alok Dubey
    Edited by: Alok Dubey on Dec 1, 2008 12:55 PM

  • How to display image that's in a table (BLOB datatype) in  apex 4.0 report

    I have an image that is in a table and I'm trying to get it to display in a report. The upload takes place on 1 page and the report is on another page. The source for the report page is as follows:
    select firstname,
    lastname,
    decode(nvl(dbms_lob.getlength(IMAGE),0),0,null,
    '<img '||
    'src="'||
    apex_util.get_blob_file_src('P1_PHOTO',username)||
    '" height="75" width="75" alt="Product Image" title="Product Image" />')
    detail_img
    from user_image
    P1_PHOTO is the upload item on page 1. My report is on another page. The image is not displayed in the report. Any ideas would be appreciated.

    Hi Charlie69,
    Go the Report Attributes -> BLOB Column -> Number / Date Format. Below this attribute you will find
    the link BLOB Download Format Mask which will open a dialog to fill in following information:
    1) Format Mask: IMAGE
    2) BLOB Table: Name of the table where to find the required BLOB
    3) BLOB Column: Table column name where you stored the actual BLOB
    4) Primary Key Column 1: Primary key of the table where BLOB is stored
    5) Primary Key Column 2:
    6) MIME Type Column: (Table column name where you stored the required information about BLOB)(Type: VARCHAR2)
    7) Filename Column: (Table column name where you stored the required information about BLOB)(Type: VARCHAR2)
    8) BLOB Last Updated Column: (Table column name where you stored the required information about BLOB)(Type: DATE)
    9) Character Set Column: (Table column name where you stored the required information about BLOB)(Type: VARCHAR2)
    10) Content Disposition: Inline(If you want to show it in the browser)
    11) Download Link Text: (Not necessary when you want to show image)
    I have set the format mask accordingly and the image is displayed in my report.
    Hope it helps!
    Regards,
    Kiran

  • How to display an image, which is stored in R3?

    Hi everyone,
    I need to display a image in a Web Dynpro application, this image is stored in SAP R3. Is there a FM to do that?
    Regards
    Eduardo Campos

    Hi Eduardo,
    if your image is in the system, there are the different syntax notations to retrieve it, as stated in the documentation link.
    To upload or download an image into an SAP system, just go to the MIME repository in the ABAP workbench, select an appropriate folder and do it. See http://help.sap.com/saphelp_nw2004s/helpdata/en/46/bb182fab4811d4968100a0c94260a5/frameset.htm and the sections on importing mimes and uploading and downloading mimes.
    Regards, Heidi

  • Displaying images that are accessed through URL

    Hi,
    I have trouble displaying images that are accessed through URLs in my report.
    If I call the URL directly in the Browser the Image can be opened without problems.
    The images can be accessed with an anonymous access.
    When I deploy the report or in the Preview of Visual Studio I get the following message:
    [rsWarningFetchingExternalImages] Images with external URL references will not display if the report is published to a report server without an UnattendedExecutionAccount or the target image(s) are not enabled for anonymous access.
    In Layout View of Visual Studio the image is showen correctly.
    The Images are stored on a Solaris maschine with WebSphere 6.0 as WebServer.
    Any ideas?
    Thank you.
    Frank
     

     Rain3 wrote:
    * Create a new IIS Virtual Directory pointing to the share:
    ** Open IIS Manager on the reporting server (eg. REPORTSERVER ):
    ** Create a new Virtual Directory (Web Sites --> Default Web Site --> New --> Virtual Directory)
    ** In the Alias prompt, type some name (eg. Pics) and in the Path prompt, specify \\SERVER\imageshare . Other options should be left default.
    * When designing reports, use "http://REPORTSERVER/Pics/somepicture.jpg" as the "Value" property for images.
    I have followed these steps but I still can not get the images to display.
    Our reportserver resides in the directory of another website rather than the default site.  I would assume that I would still follow the same procedure that you have listed but it did not help.
    Does anyone have any other recommendations?

Maybe you are looking for

  • Receiving Open Interface related doubt

    Hi All, We are currently on Oracle Release 12.0.4 and need some help/information regards Receiving Open Interface tables : rcv_headers_interface & rcv_transactions_interface tables. We import the ASN which is being sent across from the Supplier via E

  • Unsupported action attribute value 'EXCECUTE' found in XML document

    Hi I am working on IDOC->XI->DB2 scenairo I am getitng error following error whe i try to insert and execute the stored procedure. Message processing failed. Cause: com.sap.aii.af.ra.ms.api.RecoverableException: Error processing request in sax parser

  • Updated iTunes, now my iPod cannot be identified properly.

    I updated iTunes a couple days ago and when I try to sync my iPod, it gives me the error of iPod has been detected but cannot be properly identified.  I have tried for 2 days now to fix this by following the instructions everyone keeps promoting but

  • Accidentally deleted a calendar ... how can I recover it?

    I foolishly tried to reorganize some of my calendars by moving events to a different calendar. I say foolishly because I failed to export my calendars before I started this process. At one point I attempted to delete a calendar that I had emptied but

  • Not able persist object to database using JPA

    I have created one EntityBean "User" with two fileds name and password(EJB 3.0). In struts 1.9.0 using JPA's EntityManager am trying to persist(obj). @PersistenceUnit private EntityManagerFactory emf = Persistence.createEntityManagerFactory("Sample")