Created
February 7, 2025 23:14
-
-
Save futuremotiondev/45f0377714600067b6957ab7bfd7a245 to your computer and use it in GitHub Desktop.
Retrieves basic image dimensions using System.Drawing.Image, and processes passed images in parallel.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using namespace System.Collections.Generic | |
function Get-ImageDimensions { | |
[cmdletbinding(DefaultParameterSetName = 'Path')] | |
param( | |
[Parameter( | |
Mandatory, | |
Position = 0, | |
ValueFromPipeline, | |
ValueFromPipelineByPropertyName, | |
ParameterSetName = "Path", | |
HelpMessage="Path to one or more images (Supports wildcards)." | |
)] | |
[SupportsWildcards()] | |
[ValidateNotNullOrEmpty()] | |
[String[]] $Path, | |
[Parameter( | |
Mandatory, | |
Position = 0, | |
ValueFromPipelineByPropertyName, | |
ParameterSetName = "LiteralPath", | |
HelpMessage="Literal path to one or more images." | |
)] | |
[ValidateScript({$_ -notmatch '[\?\*]'}, | |
ErrorMessage = "Wildcard characters *, ? are not acceptable with -LiteralPath")] | |
[ValidateScript({[System.IO.Path]::IsPathRooted($_)}, | |
ErrorMessage = "Relative paths are not allowed in -LiteralPath.")] | |
[Alias('PSPath')] | |
[ValidateNotNullOrEmpty()] | |
[String[]] $LiteralPath, | |
[Switch] $Recurse, | |
[Int32] $Depth = 10, | |
[Int32] $MaxThreads = 24 | |
) | |
begin { | |
$supportedImageTypes = @('.bmp','.gif','.jpeg','.jpg','.png','.tif','.tiff') | |
$imagesToProcess = [HashSet[String]]@() | |
} | |
process { | |
$resolvedPaths = if ($PSBoundParameters['Path']) { | |
$Path | Get-Item -Force | |
} elseif($PSBoundParameters['LiteralPath']) { | |
$LiteralPath | Get-Item -Force | |
} | |
$resolvedPaths | % { | |
$fName = $_.FullName | |
if (Test-Path -LiteralPath $fName -PathType Container) { | |
$imageFiles = if($PSBoundParameters.ContainsKey('Recurse')){ | |
Get-ChildItem -LiteralPath $fName -Force -Recurse -Depth $Depth -File -EA 0 | | |
Where-Object { $_.Extension -in $supportedImageTypes } | |
} else{ | |
Get-ChildItem -LiteralPath $fName -Force -File -EA 0 | | |
Where-Object { $_.Extension -in $supportedImageTypes } | |
} | |
if($imageFiles){ | |
foreach ($img in $imageFiles) { | |
$null = $imagesToProcess.Add($img.FullName) | |
} | |
} | |
} elseif(Test-Path -LiteralPath $fName -PathType Leaf) { | |
if($_.Extension -in $supportedImageTypes){ | |
$null = $imagesToProcess.Add($fName) | |
} | |
} | |
} | |
} | |
end { | |
$imagesToProcess | ForEach-Object -Parallel { | |
$imgObject = [System.Drawing.Image]::FromFile($_) | |
try { | |
[PSCustomObject]@{ | |
ImageName = [System.IO.Path]::GetFileName($_) | |
Width = $imgObject.Width | |
Height = $imgObject.Height | |
Extension = [System.IO.Path]::GetExtension($_) | |
FullPath = $image | |
} | |
} finally { | |
$imgObject.Dispose() | |
} | |
} -ThrottleLimit $MaxThreads | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment