您的位置:首页 > 运维架构 > Shell

PowerShell中进行图像格式转换

2008-07-25 22:02 1006 查看
挖坟是不太好的事情, 不过从PowerShell团队上看到下面的代码, 非常好. 这段代码是由: James W. Truher[MS] 编写. 将其存储成ps1文件.

执行:

PS C:/Documents and Settings/Administrator> ./Convert-Image.ps1 -inFile 01.jpg

GAC Version Location
--- ------- --------
True v2.0.50727 C:/WINDOWS/assembly/GAC_MSIL/System.Drawing/2.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll

LastWriteTime : 2008-7-25 22:05:36
Length : 135580
Name : 01.gif

代码如下:

# Convert one graphic image to another
param ( $inFile, $type = "gif", $outFile, [switch]$force )
[reflection.assembly]::LoadWithPartialName("System.drawing")
#
# First check to see if our input file exists
$iFile = (resolve-path $inFile -ea silentlycontinue ).path
if ( ! $iFile ) { "File '$inFile' not found, exiting" ; exit }
# now check to see if the output file exists, if force
# we will continue, otherwise we exit
if ( ! $outFile )
{
$tFile = get-item (resolve-path $inFile)
$outFile = $tFile.Fullname -replace ($tFile.Extension + "`$"),".$type"
}
if ( (test-path $outFile) -and (! $force) ) { "File '$outFile' exists, exiting"; exit }

# make sure we have an encoder before changing anything on
# the filesystem
$codecs = [drawing.imaging.ImageCodecInfo]::GetImageEncoders() |
foreach { $h = @{} } { $h.($_.formatdescription) = $_ } { $h }
$encoder = $codecs.$type
if ( ! $encoder )
{
"No encoder of type '$type', exiting";
"Available encodings are: " + [string]::Join(", ", $h.keys)
exit
}

# This hoop is needed because resolve-path needs
# the file to actually exist. We shouldn't get here
# unless the file doesn't exist, or we're going to remove it
# by force.
if ( test-path $outFile ) { remove-item $outFile }
[void](new-item -type file $outFile)
$outFile = (resolve-path $outFile).path
remove-item $outFile

# read the image
$image = [system.drawing.image]::FromFile($iFile)
$image.Save($outFile, $encoder.FormatId)
$image.Dispose()
# Get the file we just created
get-item $outFile
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: