EulandaXtools — Funktionsreferenz
Fügt einem Bild einen Emboss-Effekt hinzu.
Add-EmbossToImage [[-InputImage] <System.Drawing.Bitmap>] [[-EmbossWidth] <int>]
[<CommonParameters>]Interne Hilfsfunktion, die einem Bitmap-Bild einen plastischen Emboss-Effekt hinzufügt. Wird von der Funktion `Resize-ImageForMarkdown` verwendet, um Screenshots oder Bilder in technischen Dokumentationen hervorzuheben.
-InputImage
Type: System.Drawing.BitmapDas Eingabebild als `[System.Drawing.Bitmap]`.
-EmbossWidth
Type: int
Default: 10Breite des Emboss-Effekts (Randbereich) in Pixeln.
System.Drawing.BitmapGibt das Bild mit Emboss-Effekt zurück.
# Fügt dem Bild einen Emboss-Effekt mit 10 Pixel Breite hinzu.
$embossedImage = Add-EmbossToImage -InputImage $bitmap -EmbossWidth 10