Evotec

Project

PSWriteOffice

PSWriteOffice is an open-source PowerShell and .NET project with packages, release history, and technical documentation.

Stars 144
Forks 12
Open issues 16
PowerShell Gallery downloads 150,904
Release v0.2.0
Language: C# Updated: 2026-04-06

API Reference

Cmdlet

Add-OfficePowerPointImage

Namespace PSWriteOffice
Inputs
OfficeIMO.PowerPoint.PowerPointSlide
Outputs
OfficeIMO.PowerPoint.PowerPointPicture

Adds an image to a PowerPoint slide.

Remarks

Places the picture at the requested coordinates using point measurements.

Examples

Authored help example

Insert an image.

PS>


Add-OfficePowerPointImage -Slide $slide -Path .\logo.png -X 40 -Y 60 -Width 200 -Height 120
        

Adds a picture to the 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 Sets

Parameters

Height Double optionalposition: namedpipeline: False
Image height in points.
Path String requiredposition: 0pipeline: False
Path to the image file.
Slide PowerPointSlide optionalposition: namedpipeline: True (ByValue)
Target slide that will receive the picture (optional inside DSL).
Width Double optionalposition: namedpipeline: False
Image width in points.
X Double optionalposition: namedpipeline: False
Left offset (in points) from the slide origin.
Y Double optionalposition: namedpipeline: False
Top offset (in points) from the slide origin.

Outputs

OfficeIMO.PowerPoint.PowerPointPicture