Create

Create(string)

Creates an image from a file to search.

public static SearchImage Create(string filePath)
Parameter Type Description
filePath String The image file path.

Return Value

An image to search.

See Also


Create(string, int)

Creates an image from a file to search.

public static SearchImage Create(string filePath, int imageIndex)
Parameter Type Description
filePath String The image file path.
imageIndex Int32 The image index in multipage images.

Return Value

An image to search.

See Also


Create(Stream)

Creates an image from a stream to search.

public static SearchImage Create(Stream stream)
Parameter Type Description
stream Stream The image stream.

Return Value

An image to search.

See Also


Create(Stream, int)

Creates an image from a stream to search.

public static SearchImage Create(Stream stream, int imageIndex)
Parameter Type Description
stream Stream The image stream.
imageIndex Int32 The image index in multipage images.

Return Value

An image to search.

See Also