Search found 11 matches
- 2012-03-30T02:27:52-07:00
- Forum: Bugs
- Topic: Catastrophic failure
- Replies: 24
- Views: 41118
Re: Catastrophic failure
The situation is the same as in the beginning of this thread. The images are simple jpeg-images and the failure happens to any image. See my tests using the same image over and over, it eventually failed every time. I use ImageMagick to add annotations to the images taken automatically every few ...
- 2012-03-30T01:03:57-07:00
- Forum: Bugs
- Topic: Catastrophic failure
- Replies: 24
- Views: 41118
Re: Catastrophic failure
I am still getting this error now and then. Last time today, causing again some images lost as the script failed. For me it happens after many thousands of images processed by the same VB script. Has anything being done that may affect this (memory leak?) failure? Should I install a newer version ...
- 2011-09-17T14:57:55-07:00
- Forum: Bugs
- Topic: Catastrophic failure
- Replies: 24
- Views: 41118
Re: Catastrophic failure
And you have ImageMagick-6.7.2-6-Q16-windows-dll.exe ? This is strange. I just ran thge script again and it failed after 21429 cycles.
Is there anything I can do to help locating the problem?
arto
Is there anything I can do to help locating the problem?
arto
- 2011-09-17T12:50:29-07:00
- Forum: Bugs
- Topic: Catastrophic failure
- Replies: 24
- Views: 41118
Re: Catastrophic failure
Thank you for trying! So you are not running the script under Windows? I have Win XP sp3 on the both computers. Because of camera hardware etc. I cannot choose any other operating system. I have tried both re-using and deleting the object in the loop, neither works. Is there any way to talk with the ...
- 2011-09-17T08:05:00-07:00
- Forum: Bugs
- Topic: Catastrophic failure
- Replies: 24
- Views: 41118
Re: Catastrophic failure
I upgraded to ImageMagick-6.7.2-6-Q16-windows-dll.exe The new test code using "logo:" as the input file. Const ERROR_SUCCESS = 0 Dim img Set img = CreateObject("ImageMagickObject.MagickImage.1") dim msgs,n n=0 do while true n=n+1 wscript.echo n msgs = img.Convert("logo:","-draw=text 0,5 '12345 ...
- 2011-09-17T00:31:04-07:00
- Forum: Bugs
- Topic: Catastrophic failure
- Replies: 24
- Views: 41118
Re: Catastrophic failure
very good. I will update and run the tests again.
arto
arto
- 2011-09-12T23:12:16-07:00
- Forum: Bugs
- Topic: Catastrophic failure
- Replies: 24
- Views: 41118
Re: Catastrophic failure
Any progress with this? Just a friendly remainder after another crash (and lost images) last night.
arto
arto
- 2011-03-17T23:29:12-07:00
- Forum: Bugs
- Topic: Catastrophic failure
- Replies: 24
- Views: 41118
Re: Catastrophic failure
Any help with this one? Another Catastrophic failure occured last night and 5 hours of images were lost.
arto
arto
- 2011-03-09T14:26:47-07:00
- Forum: Bugs
- Topic: Catastrophic failure
- Replies: 24
- Views: 41118
Re: Catastrophic failure
One suggestion however is to do a 'fake' run with less options and see if you can track down exactly what option is causing the memory leak. Hello Anthony! Good suggestion. I tried to remove as many options as possible and still get the error. The simplest I could get was this: msgs = img.Convert ...
- 2011-03-08T22:47:28-07:00
- Forum: Bugs
- Topic: Catastrophic failure
- Replies: 24
- Views: 41118
Re: Catastrophic failure
I'm not familiar with using IM and VB but I'd say that the problem is that you aren't destroying the ImageObject each time around the loop. I suspect that the image object is growing larger by one image on each pass through the loop until you run out of ram. Pete Thanks Pete! This is a good ...
- 2011-03-08T12:09:43-07:00
- Forum: Bugs
- Topic: Catastrophic failure
- Replies: 24
- Views: 41118
Catastrophic failure
I get repeatable failure in imagemagick object in Windows XP. I am running following script: Dim img Set img = CreateObject("ImageMagickObject.MagickImage.1") do while true n=n+1 jpeg="20110308-070845UTC.jpg" timestamp="'"+cstr(n)+"'" msgs = img.Convert(jpeg,"-font=C:\Windows\fonts\arial.ttf ...