How to view the image(blob) to smaller window

Hi Friends,
I am browsing photo data (BLOB) column using SQLDev.
But the display is too big Its not so comfortable to view.
How do I resize the display window to something like 2"x2" ?
Thanks a lot

It all depends on what you are doing. You asked how to resize the window and I said that you can drag the window size to enlarge it to see the photograph. If this is not useful then having an additional column of thumbnail images is an option. I don't know what you are building or what your app is. SQL Developer is a GUI that helps you look at your data. For a blob it provides a window for you to see the image[i] as it is. I typically save images in their original format and in some instance I create thumbnails (http://sueh.visualblogging.com/) Yes, this is a manual process, and yes there are 2 images. In your case this might mean changing the table structure and so not what you are after.
Sue

Similar Messages

  • How to view the image as cylindrical view in panorama image viewer?

    i am facing the problem to view the image as cylindrical view.
    i.e, the image moved at the end position ,the image seems to jump to the start.
    instead of this the image should view as cylindrical view. i.e, that the end of the image sticks to the beginning of the image.
    import java.awt.Dimension;
    import java.awt.Graphics;
    import java.awt.Graphics2D;
    import java.awt.MediaTracker;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.image.BufferedImage;
    import java.io.File;
    import java.io.IOException;
    import javax.imageio.ImageIO;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.Timer;
    public class PanoramaImageDemo
         private BufferedImage biBackground = null;
         private JFrame f;
         PanoramaImageDemo()
              f = new JFrame("AniDemo 1.0");
              f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              loadBackground("C:/Documents and Settings/All Users/Documents/My Pictures/Sample Pictures/sunset.jpg");
              myPanel p = new myPanel(biBackground);
              f.add(p);
              f.pack();
              f.setVisible(true);
         private void loadBackground(String fn)
              File file = new File(fn);
              BufferedImage image = null;
              try
                   image = ImageIO.read(file);
              catch (IOException e1)
                   System.out.println("File Not Found");
              MediaTracker mt = new MediaTracker(f);
              mt.addImage(image, 0);
              try
                   mt.waitForID(0);
                   biBackground = new BufferedImage(image.getWidth(), image
                             .getHeight(), BufferedImage.TYPE_INT_RGB);
                   Graphics2D g2 = biBackground.createGraphics();
                   g2.drawImage(image, 0, 0, null);
                   g2.dispose();
              catch (InterruptedException e)
                   System.out.println(e.toString());
         public static void main(String[] args)
              new PanoramaImageDemo();
         class myPanel extends JPanel implements ActionListener
              private BufferedImage background;
              private BufferedImage bi = null;
              private int upperLeft = 0;
              int width;
              int height;
              myPanel(BufferedImage bg)
                   super();
                   background = bg;
                   width = background.getWidth() / 2;
                   height = background.getHeight();
                   bi = background.getSubimage(upperLeft, 0, width, height);
                   setPreferredSize(new Dimension(width, height));
                   Timer t = new Timer(5, this);
                   t.start();
              public void actionPerformed(ActionEvent e)
                   upperLeft += 1;
                   if (upperLeft >= width)
                        upperLeft = 38; // adjust to make rollover seemless
                   bi = background.getSubimage(upperLeft, 0, width, height);
                   repaint();
              public void paintComponent(Graphics g)
                   g.drawImage(bi, 0, 0, this);
    }plz help me regarding this concept

    I have learnt a technique when I am programming in flash.
    Assume you have a photo cat.jpg with 10 units in width and 10 units in height. You can have a view(viewport) 10 units in width and 10 units in height.
    The following shows the width of the photo:
    012345679
    To show an effect of panorama, you can draw 2 photo at any time. I assume the eyesight of a person move from left to right with 1 unit at a time.
    The original image is 0123456789.
    If the person move eyesight to right by one unit, the image become
    1234567890
    If the person move eyesight to right by one more unit, the image become
    2345678901
    You can program the by drawing 2 images at any time.
    0123456789(zero width for second image)
    123456789(0, 1 unit in width in second image)
    23456789(01, 2 unit in width in second image)
    To display part of image, try this link to a program to crop image
    http://www.java2s.com/Code/Java/2D-Graphics-GUI/Imagecrop.htm

  • How to view the image by using mousedrag event?

    How can i move the full image by using mousedrag event(not using scrollBar and the frame should not reziable).
    e.g
    click the mouse in image and drag right side or towards down,the image should move to till the end in width or height
    import java.awt.*;
    import java.awt.event.MouseEvent;
    import java.awt.event.MouseMotionListener;
    import java.awt.image.BufferedImage;
    import java.io.*;
    import javax.imageio.ImageIO;
    import javax.swing.*;
    public class LoadAndShow extends JPanel implements MouseMotionListener{
        BufferedImage image;
        Dimension size = new Dimension();
        public LoadAndShow(BufferedImage image) {
            this.image = image;
            size.setSize(image.getWidth(), image.getHeight());
         * Drawing an image can allow for more
         * flexibility in processing/editing.
        protected void paintComponent(Graphics g) {
            // Center image in this component.
            int x = (getWidth() - size.width)/2;
            int y = (getHeight() - size.height)/2;
            g.drawImage(image, x, y, this);
        public Dimension getPreferredSize() { return size; }
        public static void main(String[] args) throws IOException {
             //set the image path
            String path = "Images/dinette.jpg";
            BufferedImage image = ImageIO.read(new File(path));
            LoadAndShow test = new LoadAndShow(image);
            JFrame f = new JFrame();
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.setResizable(false);
            f.add(test);
            f.setSize(400,400);
            f.setLocation(200,200);
            f.setVisible(true);
            //showIcon(image);
         * Easy way to show an image: load it into a JLabel
         * and add the label to a container in your gui.
        private static void showIcon(BufferedImage image) {
            ImageIcon icon = new ImageIcon(image);
         public void mouseDragged(MouseEvent arg0)
              // TODO drag the image
         public void mouseMoved(MouseEvent arg0)
    }

    Following is the updated code for image move on mouse move.
    import java.awt.*;
    import java.awt.event.MouseEvent;
    import java.awt.event.MouseMotionListener;
    import java.awt.image.BufferedImage;
    import java.io.*;
    import javax.imageio.ImageIO;
    import javax.swing.*;
    import java.awt.event.MouseListener; public class LoadAndShow extends JPanel implements MouseMotionListener,MouseListener{
    BufferedImage image;
    Dimension size = new Dimension();
    Point pt;//Maintain the Current Pressed Values of Mouse
    Rectangle rect;//Maintain the moving position of Mouse     public LoadAndShow(BufferedImage image)     {
    this.image = image;
    size.setSize(image.getWidth(), image.getHeight());
    this.addMouseListener(this);
    this.addMouseMotionListener(this);
    * Drawing an image can allow for more
    * flexibility in processing/editing.
    protected void paintComponent(Graphics g) {
    // Center image in this component.
    int x = (getWidth() - size.width)/2;
    int y = (getHeight() - size.height)/2;
    g.drawImage(image, x, y, this);
    }     public Dimension getPreferredSize() { return size; }     public static void main(String[] args) throws IOException {
    //set the image path
    String path = "C:\\Documents and Settings\\All Users\\Documents\\My Pictures\\Sample Pictures\\Winter.jpg";
    BufferedImage image = ImageIO.read(new File(path));
    LoadAndShow test = new LoadAndShow(image);
    JFrame f = new JFrame();
    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    f.setResizable(false);
    f.add(test);
    f.setSize(400,400);
    f.setLocation(200,200);
    f.setVisible(true);
    //showIcon(image);
    * Easy way to show an image: load it into a JLabel
    * and add the label to a container in your gui.
    private static void showIcon(BufferedImage image) {
    ImageIcon icon = new ImageIcon(image);
    }     public void mouseClicked(MouseEvent e) {
    }     public void mousePressed(MouseEvent e) {
    pt = e.getPoint();
    rect = this.getBounds();
    }     public void mouseReleased(MouseEvent e) {
    }     public void mouseEntered(MouseEvent e) {
    }     public void mouseExited(MouseEvent e) {
    }     public void mouseDragged(MouseEvent e) {
    Point p=e.getPoint();
    moveImageOnMouseMove(p);
    }     public void mouseMoved(MouseEvent e) {
    * This Function is used for calculate the Dragging point of Mouse and set the image on particular points
    * @param p Point hold the dragging point of Mouse
    private void moveImageOnMouseMove(Point p)
    int xDelta = p.x - pt.x;
    int yDelta = p.y - pt.y;
    rect.x = rect.x + xDelta;
    rect.y = rect.y + yDelta;
    this.setLocation(rect.x, rect.y);
    this.repaint();
    }}   If you have any query related with the code please let me know.
    Manish L
    MS Technology
    www.ms-technology.com
    Edited by: mannymst on Sep 18, 2008 5:53 AM
    Edited by: mannymst on Sep 18, 2008 6:05 AM

  • How to view the employee image in Selfservice?

    Hi firends,
    I'm trying to view the employee image in Selfservice.
    The idea is the following:
    - When we enter in Preferences Menu --> Person Search Menu
    - Then Customize for HR User --> Level : Responsability
    (we choose a responsibility associed to Preferences) and then, inside the "advanced properties" for the columns we can associate an URL to the column we want...
    - The idea is to associate an image (photo) to the employee number.. so we could use an url link to the blob column stored in fnd_lobs if the employee image would be stored as an attached document for the employee... or... a link to show the image column (lon raw) in per_images table... (I think this would be more difficult)
    What I don't know ... how to do is how to show the image.. (how to build the url through the customization of the fnd_gfm.get procedure....
    Another doubt in relation with that is..
    When we show the image stored as an attachment in fndattch form, the internet explorer opens with the url
    http://my_domain:8000/pls/my_project/fndgfm/fnd_gfm.get/42387354799/423868/fnd_gfm.jpg
    the last number: 423868 is the file_id in fnd_lobs but... how about the other? how is it generated? Have this some relation with the problem to show with download_blob....?
    Any ideas
    Thanks,
    Jose.

    the "Employee Directory" shows you the photos by default. Should not be that hard to add an url via personalizations that points to that directory.
    good luck.

  • How to view large images ?

    i just updated my phone c601 from symbian anna to belle..may i know how to view large images in the nokia internet browser..i cant change it

    sorry,since i have just updated my mobile,i can't show you how large is it,
    but i can show you how small is it...
    even though i click 'more>view image',
    the image that shows me is just that small....
    Attachments:
    scr000001.jpg ‏102 KB

  • Unable to View the Images in OBIEE Title view

    Hi All,
    I am trying to add a image in the title view of Answers interface.
    I placed my image in jpeg format in the following 2 paths.
    C:\OracleBI\oc4j_bi\j2ee\home\applications\analytics\analytics\res\s_oracle10\images
    and
    C:\OracleBI\web\app\res\s_oracle10\images
    I restarted oc4j , biserver & presentation server..
    But I am not able to view the image. It shows a Red X botton.
    I checked my Internet explorer settingg. Everything is fine.
    Please guide me.
    Regards
    Mehaboob Jaan

    Ok here is my instanceconfig.xml file and i dont see anything called style.
    <?xml version="1.0" encoding="utf-8"?>
    <WebConfig>
    <ServerInstance>
    <DSN>AnalyticsWeb</DSN>
    <JavaHome>C:\Program Files\Java\jdk1.5.0_16</JavaHome>
    <CatalogPath>C:/OracleBIData/web/catalog/Arj</CatalogPath>
    <Alerts>
    <ScheduleServer>SSALWXPP072</ScheduleServer>
    </Alerts>
    <CredentialStore>
    <CredentialStorage type="file" path="C:\OracleBIData\web\config\credentialstore.xml" passphrase="secret"/>
    <!-- other settings ... -->
    </CredentialStore>
    <AdvancedReporting>
    <ReportingEngine>XmlP</ReportingEngine>
    <Volume>XmlP</Volume>
    <ServerURL>http://SSALWXPP072:9704/xmlpserver/services/XMLPService</ServerURL>
    <WebURL>http://SSALWXPP072:9704/xmlpserver</WebURL>
    <AdminURL>http://SSALWXPP072:9704/xmlpserver/servlet/admin</AdminURL>
    <AdminCredentialAlias>bipublisheradmin</AdminCredentialAlias>
    </AdvancedReporting>
    <!-- To configure a limited set of languages to be available to users uncomment the <AllowedLanguages> tag below and choose a subset set of language tags from the list. Values must be comma separated. -->
    <!-- <AllowedLanguages>cs,da,de,en,es,fi,it,ja,ko,nl,no,pt,pt-br,sv,zh,zh-tw</AllowedLanguages> -->
    <!-- To configure a limited set of locales to be available to users uncomment the <AllowedLocales> tag below and choose a subset set of locale tags from the list. Values must be comma separated. -->
    <!-- <AllowedLocales>cs-cz,da-dk,de-at,de-ch,de-de,de-li,de-lu,en-au,en-ca,en-cb,en-gb,en-hk,en-ie,en-jm,en-nz,en-ph,en-us,en-za,en-zw,es-ar,es-bo,es-cl,es-co,es-cr,es-do,es-ec,es-es,es-gt,es-hn,es-mx,es-ni,es-pa,es-pe,es-pr,es-py,es-sv,es-uy,es-ve,fi-fi,fr-be,fr-ca,fr-ch,fr-fr,fr-lu,fr-mc,it-ch,it-it,ja-jp,ko-kr,nl-be,nl-nl,no-no,pt-br,pt-pt,sv-fi,sv-se,zh-cn,zh-mo,zh-sg,zh-tw</AllowedLocales> -->
    <!-- <Disconnected><ArchiveIbots>true</ArchiveIbots><DisconnectedDir>disconnected</DisconnectedDir></Disconnected> -->
    </ServerInstance>
    </WebConfig>
    Please let me know how to add this and where to add.
    Thanks
    Jaan

  • How to insert the image or logo into the table as a field in webdynpro abap

    Hi Friends,
    Please tell me how to insert the image or logo into the table as a field in webdynpro abap.........

    Hi Alagappan ,
          In your view layout you take table UI element and then you bind it with some context nodes.
    The attributes of your nodes comes as a field.
    Now in these fields you can set various properties and image is one of them.
    Go to ->
    1. View Layout -> Right Click on ROOTUIELEMENTCONTAINER -> INSERT ELEMENT -> TABLE
    2. Right click on table -> Create Binding.
       Here you have to bind it with the appropriate context node.
    You will get two properties here
    a- Standard Cell Editor :- ( make it image )
    b- Standard properties :- ( If required set image properties ).
    3. If you want put image from out side then import it as a mime object and set the source of your table field ( used as a image )
    also have a look :-
    [Image Properties|http://help.sap.com/saphelp_nw04/helpdata/en/f3/1a61a9dc7f2e4199458e964e76b4ba/content.htm]
    Hope this will solve your problem.
    Reply if any case of any issue.
    Thanks & Regards,
    Monishankar C

  • How to store the images in tables

    how to store the images in tables .what is the use of "clob ,blob"

    Using with the CLOB or BLOB, you can store the images in the table.
    Srini C

  • How to view an image at runtime?

    Hi all,
    I am developing a web application using JSP,struts, ADF BC with JDeveloper 10.1.3.
    I have added
    <input type="image" src="../../images/calendr3.gif"/>
    in my Databound table on my JSP page.
    I can see the image at Design time but no image at runtime.
    What should I do to view the image at runtime??
    I have tried
    <input type="image" src="<%=request.getContextPath()%>/images/calendr3.gif"/>
    in this case JDeveloper completely stops functioning. I don't know why? Maybe it's not allowed to have a jsp tag within a databound jsp form???

    Hi,
    did you add the image to JDeveloper (hit the refresh button) so it gets deployed with the application ?
    Also, look at the generated JSP code to see how the image is accessed. I am sure you will find an improperly defined URL
    Frank

  • How to display the image which in KM folder using url iview

    Hi Friends
    How to display the image, which is under KM folder structur using the url iview.
    i trying using url iview url as  \document\testfolder\abc.jpg as url for the iview.
    but its now working .. so please help me how to slove this problem
    If is not the correct way then please suggest me best way to achive this.
    Thanks
    Mukesh

    Hi Mukesh,
    I think this may work,
    1, Create a HTML Layout.
        You can put your image wherever  u want with HTML Codes.
        Check this, [Article|https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/3915a890-0201-0010-4981-ad7b18146f81] & [Help|http://help.sap.com/saphelp_nw04/helpdata/en/cc/00c93e9b2c3d67e10000000a114084/frameset.htm]
        With this, u can use the standard KM commands also.
    2, U need to use KM Navigation iView for this rather than KM Doc iView.
    3, In the Nav iView, u can use &rndLayoutSet=nameOfUrHTMLLayout to force the view with this new layout.
    Regards
    BP

  • How to receive the images / binary data t ype

    How to receive the images / binary data type in webdynpro....
    i have a website that let's the user send email, the email attachment and message are stored in both in images data type....
    q1) can i stored the message into binary data type...but the message is very long.....
    q2) if i have a textbox ...i surely will need to display the message  in string ,right ?
    [......... msg here ........]
    what is the codes to receive the images / binary data type in webdynpro....

    As in your previous post if you are storing them as BLOB object.. am sure you are able to get a byte stream or byte array(bytes[]) out of it.
    There should be some way to identify if its a image or a message BLOB. If its a image , convert into bytes and use 
       WDWebResource.getWebResource(bytes,resource type).getAbsoluteURL()
    to obtain the url.. assign this image UI element..
    In case its the message , use bytes.toString to get the message ..
    Regards
    Bharathwaj

  • Can any one tell me how to stream the images in flash.

    Hello Friends,
    i have created a dynamic page flip book with xml, i want to
    zoom the images in swf loaded, with streaming, so that user can
    preview the image while a good quality image is loading. I wanna
    know that how to load a part of large image or swf.
    Image effect like :-
    http://www.zoomify.com/
    Can any one tell me how to stream the images in flash.

    On Thu, 17 Apr 2008 05:53:27 +0000 (UTC), "FlashDavil"
    <[email protected]> wrote:
    >I wanna know that how to load a
    >part of large image or swf.
    You show a preview and use loadMovie() to load a big file.
    You can
    create a preloader (progress bar) showing how much part is
    loaded,
    while user sees the small image. When you achieve 100% tou
    show that
    big image. What's more?
    > Can any one tell me how to stream the images in flash.
    What are you talking about is not a "streaming", but
    "progressive
    download". Images "streaming" is impossible.

  • How to view an image @ 100% ?

    When I do some editing in iPhoto, especially sharpening, I'd like to see it @100%.
    There is no indication at what % I'm viewing the image.
    Is there any way to know that ?
    When clicking "edit" on the bottom, at what size the image opens?
    Thanks!

    ok, I found an Apple article from 2007 which explains how to do that. I'm posting it here for others:
    ===================================
    iPhoto: Sharpness adjustment may not be apparent when viewing at less than 100 percent
    Last Modified on: July 13, 2007
    Article: 301425
    When you view an image at less than full size, iPhoto smooths it (a technique known as anti-aliasing) to get rid of artifacts that result from scaling down the photo. The relationship between anti-aliasing and sharpening is a trade-off; although anti-aliasing does not modify the actual image file, it does counter the effect of sharpening when viewing the image at less than full size.
    Because of this, if you sharpen a photo, close it, then reopen it again at a less than 100-percent view, you may get the impression that your sharpness changes were not saved. In reality they were, but since the image has been re-aliased to fit your screen, the image's true sharpness may not be apparent.
    To evaluate whether an image is sharp or needs sharpening, you should view the photo at 100 percent/full size while editing in a separate window. To open the photo in a separate window, you can either Control-click the image and choose "Edit in a separate window" from the shortcut menu, or change your iPhoto preferences:
    From the iPhoto menu, choose Preferences.
    In the General pane, locate the preference for "Double-click photo."
    Set the radio button to "Opens photo in edit window."
    Close the preferences window.
    Now photos will open in a separate window when you double-click them. Once in the separate window, choose 100% from the Size pop-up menu. If you don't see the Size menu, widen the window until it appears.
    Tip: If you are editing the photo from one of the other view options, you can press the 1 key to quickly jump to 100 percent view.
    Other applications, such as Adobe Photoshop, handle anti-aliasing differently, so the degree of apparent sharpness can vary from one application to the next when viewing an image at a scaled-down size. You should see consistency when comparing the image at 100 percent across other applications.
    Important: Information about products not manufactured by Apple is provided for information purposes only, and does not constitute Apple's recommendation or endorsement. Please contact the vendor for additional information.
    ========================================

  • How to change the image in title bar for JFrames

    plz give me a small code to change the image of the JFrame in the Title bar.
    i know how to change the name of the title bar .
    import javax.swing.*;
    class Rathna1 extends JFrame
    Rathna1()
    super("rathna project ");
    public class Rathna
    public static void main(String ax[])throws Exception
    Rathna1 r=new Rathna1();
    r.setVisible(true);
    r.setSize(400,400);
    Like this how to change the image of the title bar
    Message was edited by:
    therathna

    hi,
    JFrame frame;
    frame.setVisible(true);
    frame.setIconImage(new ImageIcon("icons/img007.gif").getImage());
    frame.setSize(800,600);
    i think the thing u r searching is :
    frame.setIconImage(new ImageIcon("icons/img007.gif").getImage());
    ~~~radha

  • What do i do when iPhoto Deletes my recent pic's all the way to 2010????? i opened the program and it said i needed to update my library otherwise i wouldn't be able to view the images that were not updated-- and now they are gone!!!!!! WHat do i do!!!!!!

    what do i do when iPhoto Deletes my recent pic's all the way to 2010????? i opened the program and it said i needed to update my library otherwise i wouldn't be able to view the images that were not updated…… and now they are gone!!!!!! WHat do i do!!!!!!  Is this some type a virus???? my mac is protected!!!!! tried to chat with an IT person but they keep asking if its like a tech problem and it is just iphoto

    You should get your keyboard checked as it's repeating  on a lot of keys and makes you look silly.
    There are 9 different versions of iPhoto and they run on 9 different versions of the Operating System. The tricks and tips for dealing with issues vary depending on the version of iPhoto and the version of the OS. So to get help you need to give as much information as you can. Include things like:
    - What version of iPhoto.
    - What version of the Operating System.
    - Details. As full a description of the problem as you can. For example, if you have a problem with exporting, then explain by describing how you are trying to export, and so on.
    - History: Is this going on long? Has anything been installed or deleted? - Are there error messages?
    - What steps have you tried already to solve the issue.
    - Anything unusual about your set up? Or how you use iPhoto?
    Anything else you can think of that might help someone understand the problem you have.

Maybe you are looking for

  • Can you transfer data from one apple id to another?

    i ave 3 devices hooked up to 1 apple id. im looking to transfer the data from this to a new apple ID and restore the original id. is this possible?

  • Is my hl-dt-st bddvdrw gbc-h20l capable of burning Blu Ray discs (BD-R)?

    Hello. I have a HP Pavilion Elite m9470 Desktop PC with an  hl-dt-st bddvdrw gbc-h20l drive running Windows 7 Ultimate (the pc came originally with Vista). For the first time I tried to burn a Blu Ray disc BD-R in fact. When I loaded the disc into tr

  • Why we need specification and body in Packages

    Hi all Why we need specification and body in packages is Package body is not enough? It is an interview question asked How can I explain regds

  • JMS Queue configuration on WLS

    Dear Experts, I have a "Forward Delay" configuration for queues on WLS. I need to change it. What other configuration do I choose? What are the advantages and disadvantages of the configuration you are suggesting compared to "Forward Delay" ? And sor

  • Read in spreadsheet file

    Hello, This is a very basic question about reading in spreadsheet files. How do I do it please? I have a spreadsheet of 1 row and 256 columns. What separates the data in a spreadsheet file? Is it tab. My current .vi doesnt want to read in the spreads