Post any defects you find in the released or beta versions of the ImageMagick software here. Include the ImageMagick version, OS, and any command-line required to reproduce the problem. Got a patch for a bug? Post it here.
At image.type(BilevelType) Not responding because of the recursion.
if i have changed the parameters resize or density or any thing else its working fine.
if I tried to avoid the function (commented out) image.type function
image.write function is also not responding for 15 to 18 mins and given a complete black image.
is this a bug or is there any problem with the image properties?
Even i am able to reproduce this on 6.8.2
The problem probably the amount of pixels in your image. At some point ImageMagick will use your disk to store its pixels and reading/writing that is really slow. Maybe you can switch your application to 64 bit? This will allow you to allocate more memory at once.
application has some dependencies so we cant switch it over 64 bit.
Mentioned that "probably the amount of pixels in image". are there any specified limits ?
Can we get some other solution to this problem?
You can increase the memory limit with Image::cacheThreshold(bytes). The documentation says megabytes but it really is bytes, I already patched this comment in the svn repository. You can read more about memory limits on windows here: http://msdn.microsoft.com/en-us/library/aa366778.aspx.