This topic and its replies were posted before the current version of LEADTOOLS was released and may no longer be applicable.
#1
Posted
:
Friday, March 20, 2009 2:34:06 AM(UTC)
Groups: Registered
Posts: 74
Hello,
I have an application using c#.net 2008 and leadtools.
i wrote in my application,
rasterimageviewer.image=codecs.load(picturebox1.image)
Error is can not convert system.drawing.image into system.iri.
What is the solution for that?
Thanks
Dileep.
#2
Posted
:
Sunday, March 22, 2009 5:33:57 AM(UTC)
Groups: Guests
Posts: 3,022
Was thanked: 2 time(s) in 2 post(s)
If you want to use the image from a picture box, you need to use the RasterImage constructor as the following example:
pictureBox1.Load(@"c:\sample.bmp");
_viewer.Image = new RasterImage(pictureBox1.Image);
#3
Posted
:
Monday, March 23, 2009 10:09:22 PM(UTC)
Groups: Registered
Posts: 74
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.