I have a possible issue when writing to an open stream. My code works like this:
Is it possible that Magick requires my file stream to be closed/reopened between writes to produce the desired effect? And if you think this is simply a C# file stream thing, then disregard.
Thanks
- Open a file stream called destinationStream:
- create MagickImage object
- call object.Write(destinationStream) which works fine
- create MagickImage object2
- call object2.Merge() to add a watermark
- call object2.Write(destinationStream) which seems to work fine
-
dispose of destinationStream
Is it possible that Magick requires my file stream to be closed/reopened between writes to produce the desired effect? And if you think this is simply a C# file stream thing, then disregard.
Thanks