API Reference
Cmdlet
Add-OfficePowerPointImage
Adds an image to a PowerPoint slide.
Remarks
Places the picture at the requested coordinates using point measurements.
Examples
Example 1: Insert an image.
PS>
$image = '.\Tests\Assets\CellImage.png'
New-OfficePowerPoint -Path .\Examples\Documents\PowerPointImage.pptx {
$slide = Add-OfficePowerPointSlide -Layout 1
Set-OfficePowerPointSlideTitle -Slide $slide -Title 'Evidence'
Add-OfficePowerPointImage -Slide $slide -Path $image -X 60 -Y 130 -Width 180 -Height 120
}
Adds a picture to a generated slide.
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-OfficePowerPointImage [-Height <Double>] -Path <String> [-Slide <PowerPointSlide>] [-Width <Double>] [-X <Double>] [-Y <Double>] [<CommonParameters>]#Parameter set:
All Parameter SetsParameters
- Height Double
- Image height in points.
- Path String
- Path to the image file.
- Slide PowerPointSlide
- Target slide that will receive the picture (optional inside DSL).
- Width Double
- Image width in points.
- X Double
- Left offset (in points) from the slide origin.
- Y Double
- Top offset (in points) from the slide origin.
Outputs
OfficeIMO.PowerPoint.PowerPointPicture