Search found 4 matches

by tharidass
2014-07-09T08:12:33-07:00
Forum: Users
Topic: Error creating resized image through .NET web service
Replies: 5
Views: 3201

Re: Error creating resized image through .NET web service

I did some testing and found out that ImageMagick works perfectly. The problem is that the web service that calls the image magick actually locks the files generated by image magick. The IIS process locks the files randomly and it is not available for copying to target folder. Thanks for all your ...
by tharidass
2014-07-08T12:51:44-07:00
Forum: Users
Topic: Error creating resized image through .NET web service
Replies: 5
Views: 3201

Re: Error creating resized image through .NET web service

Thank you for your help. Here is the C# code that call the exe. var cla = new ProcessStartInfo(); cla.FileName = _imageMagickCovertPath; cla.Arguments = args.ToString(); cla.UseShellExecute = false; cla.CreateNoWindow = true; cla.RedirectStandardError = true; cla.RedirectStandardOutput = true; var ...
by tharidass
2014-07-08T12:43:31-07:00
Forum: Users
Topic: Error creating resized image through .NET web service
Replies: 5
Views: 3201

Re: Error creating resized image through .NET web service

I call the Convert.exe 32 bit exe from the web service using System.Diagnostics.Process class.
by tharidass
2014-07-08T08:36:34-07:00
Forum: Users
Topic: Error creating resized image through .NET web service
Replies: 5
Views: 3201

Error creating resized image through .NET web service

The web service in our app calls image magick to create resized files. Some how one of the profiles does not get created it is the files starting with small_ . When I call image magick on the command line in the same machine with these arguments all sizes are getting created. The web service is a ...