BlobIndexerImageAction Struct

Definition

Determines how to process embedded images and image files in Azure blob storage. Setting the "imageAction" configuration to any value other than "none" requires that a skillset also be attached to that indexer.

public readonly struct BlobIndexerImageAction : IEquatable<Azure.Search.Documents.Indexes.Models.BlobIndexerImageAction>
type BlobIndexerImageAction = struct
Public Structure BlobIndexerImageAction
Implements IEquatable(Of BlobIndexerImageAction)
Inheritance
BlobIndexerImageAction
Implements

Constructors

BlobIndexerImageAction(String)

Initializes a new instance of BlobIndexerImageAction.

Properties

GenerateNormalizedImagePerPage

Extracts text from images (for example, the word "STOP" from a traffic stop sign), and embeds it into the content field, but treats PDF files differently in that each page will be rendered as an image and normalized accordingly, instead of extracting embedded images. Non-PDF file types will be treated the same as if "generateNormalizedImages" was set.

GenerateNormalizedImages

Extracts text from images (for example, the word "STOP" from a traffic stop sign), and embeds it into the content field. This action requires that "dataToExtract" is set to "contentAndMetadata". A normalized image refers to additional processing resulting in uniform image output, sized and rotated to promote consistent rendering when you include images in visual search results. This information is generated for each image when you use this option.

None

Ignores embedded images or image files in the data set. This is the default.

Methods

Equals(BlobIndexerImageAction)

Indicates whether the current object is equal to another object of the same type.

ToString()

Returns the fully qualified type name of this instance.

Operators

Equality(BlobIndexerImageAction, BlobIndexerImageAction)

Determines if two BlobIndexerImageAction values are the same.

Implicit(String to BlobIndexerImageAction)

Converts a string to a BlobIndexerImageAction.

Inequality(BlobIndexerImageAction, BlobIndexerImageAction)

Determines if two BlobIndexerImageAction values are not the same.

Applies to