vote up 0 vote down star

Hello,

I'm doing a join of multiple multi-image tiff files to a single multi-image tiff file and have a problem with deleting the source tiff files, because the Image class continues to hold the handle on them.

I'm reading a tiff image through Image.FromFile:

Bitmap resultTiff = (Bitmap) Image.FromFile(strImageFile);

After which I read all other tiff images the same way and append them to the resulting tiff image.

When I finish I use this code to release references and to save resulting file:

ep.Param[0] = new EncoderParameter(enc, (long) EncoderValue.Flush);
resultTiff.SaveAdd(ep);
resultTiff.Dispose();

Now the problem is that the handle on the files still exists (and therefore files can't be deleted) unless I call the GC.Collect() after the resultTiff.Dispose() call.

You can imagine that I don't feel very comfortable by calling GC, so is there any other way of achieving this?

flag

40% accept rate

2 Answers

vote up 5 vote down

Or try:

Using(Bitmap resultTiff = (Bitmap) Image.FromFile(strImageFile))
{
   ep.Param[0] = new EncoderParameter(enc, (long) EncoderValue.Flush);
   resultTiff.SaveAdd(ep);
}
link|flag
1  
While using using is definitely a good recommendation, it probably won't solve Goran's particular problem. The example code given in the question already calls Dispose (in non-exceptional circumstances). – Luke Oct 30 at 12:25
Thank you guys for your response. It just happened that I had a glitch somewhere else in the code, and when I fixed that using of just Dispose solved my problems. I wasn't disposing references to the files I was appending to the first file. When I corrected this, everything started working great. – Goran Oct 30 at 12:29
vote up 1 vote down

You can try:

resultTiff = null;
link|flag
ass much as you shouldnt need to do this - it works. I had an image app that loaded 1000's of images in a loop and processed them. if i didn't have img = null in the loop i would get OOM errors very quickly. – Pondidum Oct 30 at 11:52

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.