Visual Basic
C#
Managed Extensions for C++
C++/CLI
'Declaration <ObsoleteAttribute("Deprecated, please use SaveToStream(System.IO.Stream stream, SaveOptions saveOptions) or SaveSourceCompressedImageToStream(System.IO.Stream stream) instead.")> Public Sub SaveStream( _ ByVal stream As Stream, _ ByVal theFormat As ScannedImageFormat _ )
'Usage Dim instance As ScannedImage Dim stream As Stream Dim theFormat As ScannedImageFormat instance.SaveStream(stream, theFormat)
Parameters
- stream
- An opened and writable System.IO.Stream derived stream object.
- theFormat
- A ScannedImageFormat which represents the format to use to save the image.
The stream passed can be any stream derived System.IO.Stream. The stream should be opened by calling this method.
The stream should also allow writes.