This topic and its replies were posted before the current version of LEADTOOLS was released and may no longer be applicable.
#1
Posted
:
Sunday, August 16, 2009 4:13:42 AM(UTC)
Groups: Registered
Posts: 1
hi,I am using Raster imaging v15.net. with vb.net
my application loads several images, one image at a time and show the current image on a standard form .
It is taking almost 2-3 minutes to load only the first image.
(the ram of this current computer is 1GB)
the code I use to load the image:
RasterCodecs.Startup()
Dim codecs As RasterCodecs = New RasterCodecs()
Dim image As RasterImage = codecs.Load(simageName)
RasterImageViewer.Image = image
' Clean up
codecs.Dispose()
RasterCodecs.Shutdown()
thanks,
Alona
#2
Posted
:
Tuesday, August 18, 2009 3:44:48 AM(UTC)
Groups: Guests
Posts: 3,022
Was thanked: 2 time(s) in 2 post(s)
This issue was resolved through our support email systems and I'm posting the result here for the general benefit.
The delay was caused by the .NET framework trying to verify the digital signature of our DLLs.
Adding the following code to the <ApplicationName>.exe.config file for the EXE application solved the issue and caused initial loading of our DLLs to be much faster:
<configuration>
<runtime>
<generatePublisherEvidence enabled="false"/>
</runtime>
</configuration>
This is explained in the following Microsoft article in the MORE INFORMATION section:
http://support.microsoft.com/kb/936707
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.