This topic and its replies were posted before the current version of LEADTOOLS was released and may no longer be applicable.
#1
Posted
:
Tuesday, December 9, 2008 7:08:42 PM(UTC)
Groups: Registered
Posts: 74
Hai,
My application is a windows based application using C#.net 2008 and framework 3.5.I used Leadtools(trial Version) in My Applicaton.In My application, I drag a RasterThumbnailBrowser on my Form and i wrote codes in page_load for displaying Images .But it is working, no error happened and unfortunately it doesn't show images , but showing images name. i wrote the code is,
using Leadtools;
using
Leadtools.Codecs;
using
Leadtools.WinForms;
private
void Form1_Load(object sender, EventArgs e)
{
RasterCodecs.Startup();
rasterThumbnailBrowser1.Codecs =
new RasterCodecs();
rasterThumbnailBrowser1.LoadThumbnails(
@"C:\Documents and Settings\User1\My Documents\LEADTOOLS Images", "*.*", RasterThumbnailBrowserLoadFlags.None);
RasterCodecs.Shutdown();
}
regards,
sss
#2
Posted
:
Wednesday, December 10, 2008 11:38:12 AM(UTC)
Groups: Registered, Tech Support, Administrators
Posts: 764
What is the file version of Leadtools.dll that you are using?
Which DLLs do you have referenced? You are probably missing the necessary Codecs dlls (i.e. Leadtools.Codecs.Tif.dll, Leadtools.Codecs.Cmp.dll, etc.) for the file formats that are in that folder.
Do you get any errors if you try to load a single image with the RasterCodecs.Load function?
#3
Posted
:
Wednesday, December 10, 2008 6:14:21 PM(UTC)
Groups: Registered
Posts: 74
now it is working nicely,
Thank you very much
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.