Click here to Skip to main content
15,895,084 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Dear All;
I am reading from the scanner and I want to convert from intpr to bitmap and then display them in image list ....
any help...
regards...
Posted

See this article[^] here in CP. There are some extra alternatives in the comments of it.
 
Share this answer
 
Comments
shakil0304003 5-Nov-10 11:42am    
Good link :)
thank you for your help :
but now I am adding it to listview from the imagelist after adding the bitmap to the listview,
and I have added a function on listView1_SelectedIndexChanged
C#
private void listView1_SelectedIndexChanged(object sender, EventArgs e)
    {
        for (int k = 0; k < listView1.CheckedIndices.Count; k++)
        {
                     pictureBox1.Image = imageList1.Images[listView1.CheckedIndices[k]];
            pictureBox1.Visible = true;
            pictureBox1.Size = new Size(200, 256);
        }

    }



but it is giving a small picture size with low riselution
how can I see the real image riselution as it is scanned???
regards...
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900