PoshCode Archive  Artifact [9fcf9738ec]

Artifact 9fcf9738ec58b63fcefebd533326ec141de56b2f5025d1970d9d5dad5a95fdf7:

  • File Get-JpegData.ps1 — part of check-in [0a74c564b0] at 2018-06-10 13:49:44 on branch trunk — Reads JPEG metadata (user: greg zakharov size: 1957)

# encoding: ascii
# api: powershell
# title: Get-JpegData.ps1
# description: Reads JPEG metadata
# version: 0.1
# type: function
# author: greg zakharov
# license: CC0
# function: Get-JpegData
# x-poshcode-id: 5075
# x-archived: 2014-04-15T23:03:56
# x-published: 2014-04-13T07:15:00
#
#
requires -version 2.0
function Get-JpegData {
  param(
    [Parameter(Mandatory=$true, ValueFromPipeline=$true)]
    [ValidateScript({Test-Path $_})]
    [String]$JpegFile
  )
  
  begin {
    #region PresentationCore (generally required on WinXP)
    $asm = [AppDomain]::CurrentDomain.GetAssemblies()
    if (!($asm | ? {
      $_.Fullname.Contains('PresentationCore')
    })) {
      $asm = (gci -r ([Regex]"(?<=file:///)(.*)(?=GAC.*)").Match(
        ($asm[0].Evidence | ? {$_ -match 'file:'}).Value
      ).Value | ? {$_.Name -eq 'PresentationCore.dll'}).FullName
      
      [void][Reflection.Assembly]::LoadFile($asm)
    }
    #endregion
    
    #properties names
    ($asm | ? {
      $_.Fullname.Contains('PresentationCore')
    }).GetType(
      'System.Windows.Media.Imaging.BitmapMetadata'
    ).GetProperties() | % {$chk = @()}{
      if ($_.Name -ne 'DependencyObjectType') { $chk += $_.Name }
    }
    
    $JpegFile = cvpa $JpegFile
  }
  process {
    try {
      $fs = [IO.File]::OpenRead($JpegFile)
      
      #decoder
      $dec = New-Object Windows.Media.Imaging.JpegBitmapDecoder(
        $fs, [Windows.Media.Imaging.BitmapCreateOptions]::IgnoreColorProfile,
        [Windows.Media.Imaging.BitmapCacheOption]::Default
      )
      #reading metadata
      $chk | % {$raw = $dec.Frames[0].Metadata}{
        if ($_ -eq 'Author') { '{0, 19}: {1}' -f $_, $raw.$_[0] }
        else { '{0, 19}: {1}' -f $_, $raw.$_ }
      }
    }
    catch {
      Write-Host $_.Exception.Message -fo Magenta
    }
    finally {
      if ($fs -ne  $null) { $fs.Close() }
    }
  }
  end {}
}