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 : Tuesday, March 1, 2011 3:10:17 AM(UTC)

Ronald  
Ronald

Groups: Registered
Posts: 2


Hi ,

Could you please let me know the version of the dll that supports in windows azure cloud. My requirement is convert the image from JPEG to MOF (i.e Leadtools.RasterImageFormat.Cmp) using WCF service.

Regards
S.Ronald Vimal
 

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, March 1, 2011 7:12:51 AM(UTC)

Adnan Ismail  
Guest

Groups: Guests
Posts: 3,022

Was thanked: 2 time(s) in 2 post(s)

Ronald,
Since Windows Azure is a .NET Windows platform, you can use our LEADTOOLS .NET programming interface to process JPEG files.
However, I want to verify what you mean by MOF. If you mean Managed Object Format (MOF), please note that we do NOT support this format. This means you can load JPEG files and convert them to different supported file formats, but not MOF.
 
#3 Posted : Tuesday, March 1, 2011 9:17:08 PM(UTC)

Ronald  
Ronald

Groups: Registered
Posts: 2


I am using the following code to convert
public Stream ConvertJpgFileToMofFile(Stream jpgFile)
{
Stream mofFile = null;
using (RasterCodecs codecs = new RasterCodecs())
{
try
{
Leadtools.RasterImage objImage = codecs.Load(jpgFile);
codecs.Save(objImage, mofFile, Leadtools.RasterImageFormat.Cmp, 24);

return mofFile;
}
catch (Exception ex)
{
return null;
}
}
}
It is working fine in local azure developer environment. But after uploading cloud it is not working. It shows an error. Please let me know the version and 32/64 bit dll's you have used to test in windows azure.
 
#4 Posted : Wednesday, March 2, 2011 6:36:09 AM(UTC)

Adnan Ismail  
Guest

Groups: Guests
Posts: 3,022

Was thanked: 2 time(s) in 2 post(s)

You should deploy LEADTOOLS 64-bit DLLs since Windows Azure is a 64-bit environment.
Can you send me more details about the error you are getting? From your code, the issue might be related to missing DLL. Are you deploying the Leadtools.Codecs.Cmp.dll file with your application?
 
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.121 seconds.