Edit image pages in Stream object through event handler.
Syntax
'Declaration
Public Overloads Function Edit( _
ByVal As System.IO.Stream, _
ByVal handler As ImageEditor.EditPageEventHandler, _
ByVal As ImageFileFormat _
) As System.IO.MemoryStream
'Usage
Dim instance As ImageEditor
Dim stream As System.IO.Stream
Dim handler As ImageEditor.EditPageEventHandler
Dim format As ImageFileFormat
Dim value As System.IO.MemoryStream
value = instance.Edit(stream, handler, format)
public System.IO.MemoryStream Edit(
System.IO.Stream ,
ImageEditor.EditPageEventHandler handler,
ImageFileFormat
)
public function Edit(
: System.IO.Stream;
handler: ImageEditor.EditPageEventHandler;
: ImageFileFormat
): System.IO.MemoryStream;
public function Edit(
: System.IO.Stream,
handler : ImageEditor.EditPageEventHandler,
: ImageFileFormat
) : System.IO.MemoryStream;
public:
System.IO.MemoryStream^ Edit(
System.IO.Stream^ ,
ImageEditor.EditPageEventHandler^ handler,
ImageFileFormat
)
Parameters
- stream
- Input stream.
- handler
- Input pages processing handler.
- format
- Output format.
Return Value
Memory stream with processed pages.
See Also