Search Result

Collapse
74 results in 0.0044 seconds.
Keywords
Members
Tags
image
  •  

  • Evolution445
    started a topic ListBox with background image

    ListBox with background image

    Hi,


    I have been trying to put a background image on a listbox control.

    The only way I saw possible was to inherit the listbox control and override the OnPaint event.

    Code:
        class ListboxWithBgimage : ListBox
        {
            // Property does not accept null, weird
            Image bgImage = Resources.list_log;
    
            public ListboxWithBgimage() : base()
            {
    ...
    See more | Go to post

  • luke
    started a topic how do i get the filename of an image
    in PHP

    how do i get the filename of an image

    what i have is an upload form, when the user clicks on upload an image there computer files are displayed so they can select an image (as standard), when they find there image and click on it how do i grab the file name on click to display on the page? im using php and jquery
    See more | Go to post

  • selvasoft
    started a topic How to display all images from MYSQL using PHP
    in PHP

    How to display all images from MYSQL using PHP

    I want to display all images from my MYSQL database using PHP coding.The table having name,size,type, content fields. Please any one help me.

    Code:
    while($row=mysql_fetch_row($imgresult))
    {
    	header("Content-type: image/jpeg");
    	echo "$row[0]";
    }
    Am using above code to display one image from table. But i dont know to display more than one images on browser. Please any one help...
    See more | Go to post

  • ldima
    started a topic Get dimension of pixel in mm
    in C

    Get dimension of pixel in mm

    Hello.
    I have an image of size 640x480 pixels.
    It's possible to obtain the dimension in mm of one pixel from that image given only that size?I do not have the size of the image in mm,however.
    Thanks for helping.
    See more | Go to post

  • Display thumbnail in a second container using PHP

    Let me start off by saying: I am not an experienced developer and this is my first webpage project.

    I have created an image uploader using php and in this process I also create thumbnails, when I go to my "view_album s" page, the thumbnails are displayed.
    What I am looking for is some code that I can use that when I click on a specific thumbnail, the image must be displayed in a container on the same page as the thumbnails...
    See more | Go to post
    Last edited by still learning; Mar 3 '12, 04:46 PM. Reason: Amending message

  • Peter Kr
    started a topic Tkinter Reloading Window displaying an Image

    Tkinter Reloading Window displaying an Image

    Hi,
    I've been searching for this on google for a while, but I didn't find anything.
    I want to display an Image inside a Tkinter Window, but the Window should refresh the image every second or so.
    How do I do that?
    My Code so far:
    Code:
    import Tkinter 
    import Image, ImageTk
    
    im = Image.open('temp.png')
    
    root = Tkinter.Tk()
    tkimage = ImageTk.PhotoImage(im)
    ...
    See more | Go to post

  • Is there a way to modify the "view image" option?

    I have a website that contains lots of pictures on a single page. In order to make it so that it doesn't take forever for the pages to load, I have small picture files on my web host's server. Each picture is only 244 by 200 pixels. However, now that I use small pictures, if a person right-clicks on any of the pictures and chooses the "view image" option from the menu, they can only see the small picture instead of the picture in its...
    See more | Go to post

  • zsolt szabo
    started a topic draw in imagebox

    draw in imagebox

    hi, i`ve got 2 imageboxes on each other.
    the one at the bottom displays a picture (image1), the other one is for drawing (imagedraw).
    imagedraw shows a line when i move the mouse on it, and if i move it a bit furthen than the previous line going to be deleted using "CLS", theres a "zoom" function which is changeing the size of the boxes, and strech them, when this happens the line has dissapear.

    i...
    See more | Go to post

  • gowthambj
    started a topic Display image from database using php
    in PHP

    Display image from database using php

    i have a table named tablenamevehicl e which contains about 15 fields. all are text fields and one is image field stored in blob data type. I am able to display all the text from the other fields of the table but the image is being displayed as the binary data. Please help me out to display the image in its form. Code is


    Code:
     
    <table width="950" align="center" border="0">
      <tr
    ...
    See more | Go to post

  • Smoothing an image multiple times fast

    Hi,
    I need a fast way to smooth an image multiple times fast.
    The way that i am currently using works like this(written in c#)
    NOTE i am only smoothing the R value of the RGB color
    Code:
    for(int i=1;i<height-1;i++)
    {
       for(int j=1;j<width-1;j++)
       {
          int n1 = image[j,i-1].R;
          int n2 = image[j,i+1].R;
          int n3 = image[j-1,i].R;
          int n4 = image[j + 1, i].R;
    ...
    See more | Go to post

  • How to give variable containing path in an image reading syntax

    Program:

    public void imagdisp(String m)
    {
    try
    { image =
    ImageIO.read(th is.getClass().g etResource(m));
    } catch(Exception e)
    {
    System.out.prin tln(e);
    }
    c = new ImageCanvas( image );
    add( c );
    }

    Here variable m containing image path
    See more | Go to post

  • hridyakrishna
    started a topic image display
    in Java

    image display

    We have a program for displaying an image wherein image uri is got from xml structure.As output we got only blank frame.
    Program is :




    public class DOM extends Frame
    {
    ImageCanvas c;
    BufferedImage image=null;
    public static void main(String[] arg)
    {
    DOM ob=new DOM();
    ob.addWindowLis tener( new WindowAdapter()
    { public...
    See more | Go to post

  • eHat
    started a topic Make image custom cursor

    Make image custom cursor

    I need to make a custom cursor from an image of a car in VB.NET Ultimate, but I dont know how.

    Can you explain how to import an image to be a cursor?
    Do you import it through the resources?
    I know that the code for cursor is going to be like this ( Im not sure if its right though) if you know the code, give me it then. Thanks
    Code:
    Me.Cursor = System.Windows.Forms.Cursor namespace
    See more | Go to post

  • Niheel
    started a topic Windows Backup failed Error code: 0x81000037

    Windows Backup failed Error code: 0x81000037

    When running Backup and Restore to create images on Windows 7, i get the following error message:

    Windows Backup failed when trying to read from the shadow copy of the volumes being backed up. Please check in the event logs for any relevant errors.

    Error code: 0x81000037

    Anyone know why this is happening and how to resolve it?

    Biggest concern is taking backups that are corrupt and not ...
    See more | Go to post

  • How to select image from folder, when image has random name and extension?

    Hello,

    I need to select image from a member folder to set it as their profile image. The problem is that I don't know how to do this, because that image has no fixed name or extension, so every time there is a different name for it. I need to use PHP for this, something like:

    Code:
    //This is not real code, just logic
    Select image from members/$member_id/image
    Here are scripts that I use...
    See more | Go to post
Working...