API Reference
Cmdlet
Add-OfficePdfImage
Adds an image to a PDF document.
Remarks
Adds an image to a PDF document.
Examples
Add a logo or chart image to a PDF.
PS>
$image = '.\Tests\Assets\CellImage.png'
New-OfficePdf -Path .\Examples\Documents\PdfImage.pdf {
Add-OfficePdfHeading -Text 'Visual evidence'
Add-OfficePdfImage -Path $image -Width 120 -Height 80 -Align Center -AlternativeText 'Sample chart image'
}
Embeds an image with alternative text in the generated PDF.
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
Add-OfficePdfImage [-Align <Left|Center|Right|Justify>] [-AlternativeText <String>] -Height <Double> [-PassThru] -Path <String> -Width <Double> [<CommonParameters>]#Parameter set:
ContextParameters
- Align PdfAlign
- Image alignment.
- Possible values:
Left,Center,Right,Justify - AlternativeText String
- Alternative text for meaningful images.
- Height Double
- Rendered image height in PDF points.
- PassThru SwitchParameter
- Emit the updated document.
- Path String
- Image path.
- Width Double
- Rendered image width in PDF points.
Outputs
OfficeIMO.Pdf.PdfDocument
Add-OfficePdfImage [-Align <Left|Center|Right|Justify>] [-AlternativeText <String>] -Document <PdfDocument> -Height <Double> [-PassThru] -Path <String> -Width <Double> [<CommonParameters>]#Parameter set:
DocumentParameters
- Align PdfAlign
- Image alignment.
- Possible values:
Left,Center,Right,Justify - AlternativeText String
- Alternative text for meaningful images.
- Document PdfDocument
- PDF document to update outside the DSL context.
- Height Double
- Rendered image height in PDF points.
- PassThru SwitchParameter
- Emit the updated document.
- Path String
- Image path.
- Width Double
- Rendered image width in PDF points.
Outputs
OfficeIMO.Pdf.PdfDocument