Welcome Guest! To enable all features, please Login or Register.

Notification

Icon
Error

Options
View
Last Go to last post Unread Go to first unread post
#1 Posted : Sunday, August 16, 2009 4:13:42 AM(UTC)

alona  
alona

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
 

Try the latest version of LEADTOOLS for free for 60 days by downloading the evaluation: https://www.leadtools.com/downloads

Wanna join the discussion? Login to your LEADTOOLS Support accountor Register a new forum account.

#2 Posted : Tuesday, August 18, 2009 3:44:48 AM(UTC)

Basel  
Guest

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.

Powered by YAF.NET | YAF.NET © 2003-2024, Yet Another Forum.NET
This page was generated in 0.047 seconds.