API Reference
Export-OfficeWordImage
Exports one or more Word pages through the format-neutral OfficeIMO image pipeline.
Remarks
Exports one or more Word pages through the format-neutral OfficeIMO image pipeline.
Examples
Export the first page as SVG.
PS>
Export-OfficeWordImage -Path .\Report.docx -OutputPath .\Report.svg -Format Svg
Writes the image quietly. Add -PassThru to receive the structured export result.
Export every page as JPEG files.
PS>
Export-OfficeWordImage -Path .\Report.docx -OutputPath .\Pages -Format Jpeg -AllPages
For a bounded batch, create options with New-OfficeWordImageOptions -PageIndex 0 -PageCount 2.
Common Parameters
This command supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
For more information, see about_CommonParameters.
Syntax
Export-OfficeWordImage [-AllPages] [-Format <Png|Svg|Jpeg|Tiff|Webp>] [-Options <WordImageExportOptions>] -OutputPath <String> [-PassThru] -Path <String> [<CommonParameters>]#PathParameters
- AllPages SwitchParameter
- Export every estimated page to the destination folder.
- Format OfficeImageExportFormat
- Output image format.
- Possible values:
Png,Svg,Jpeg,Tiff,Webp - Options WordImageExportOptions
- Optional page, size, scale, theme, and rendering settings.
- OutputPath String
- Destination image file, or destination folder when -AllPages or Options.PageCount requests a batch.
- PassThru SwitchParameter
- Emit the structured image export result.
- Path String
- Path to the Word document.
Outputs
OfficeIMO.Drawing.OfficeImageExportResult
Export-OfficeWordImage [-AllPages] -Document <WordDocument> [-Format <Png|Svg|Jpeg|Tiff|Webp>] [-Options <WordImageExportOptions>] -OutputPath <String> [-PassThru] [<CommonParameters>]#DocumentParameters
- AllPages SwitchParameter
- Export every estimated page to the destination folder.
- Document WordDocument
- Open Word document instance.
- Format OfficeImageExportFormat
- Output image format.
- Possible values:
Png,Svg,Jpeg,Tiff,Webp - Options WordImageExportOptions
- Optional page, size, scale, theme, and rendering settings.
- OutputPath String
- Destination image file, or destination folder when -AllPages or Options.PageCount requests a batch.
- PassThru SwitchParameter
- Emit the structured image export result.
Outputs
OfficeIMO.Drawing.OfficeImageExportResult