web-dev-qa-db-ja.com

画像の複数のフォルダをPNG8にバッチ変換するにはどうすればよいですか?

20以上のフォルダーに4500以上のPNG24画像があり、PNG 8に変換してサイズを縮小したいと思います(余談ですが、スマッシングやその他のpng最適化を試しましたが、節約だけでは不十分です。 PSの2つのフォルダーは、PNG 8が画像の大幅な劣化がないことを示しました)

PS CS3 Batchを試したところ、元のファイルは保存されず、作成される新しいファイルにはフォルダー構造がありません。このツールまたは別のツールをジョブに修正する方法はありますか?

OSXを実行していますが、Windows XP/7にアクセスできます。

3
Denis Hoctor

XnView バッチ処理/変換を処理します。 CtrlU :「ツール->バッチ処理...」

  • 上書きするオプション、元のパスを(出力として)使用するオプション、および/またはサブフォルダー構造を保持するオプション。
  • [変換]タブから[変換>色に変換]変換を追加します。パラメータの1つはビット/ピクセルです。
4
Leftium

それは苦痛ですね。これがトリックです。アクションを記録してpng8にした後、アクションパレットの右上隅をクリックし、[挿入]メニュー項目を選択します。次に、[ファイル]-> [保存]をクリックします。 [OK]をクリックします。これで、アクション内の最後のサブアイテムになります。

これで、バッチを実行すると、想定どおりにサブフォルダーにデータが残ります。

1
CreeDorofl

ImageMagickをインストールし、Powershellで実行します


#--------------------------------------------------------------------

# Powershell script to recursively convert image formats
# Configuration
$srcfolder = "C:\test\Animals"
$destfolder = "C:\test\Animals"
#This ps1 file will add copy files to designated folder
#Do NOT use Mogrify or the original images will be deleted
$im_convert_exe = "convert.exe -density 300"
# with VECTOR files the density setting should come BEFORE the vector file
# or the image will be blurry.
# change src_filter to the format of the source files
$src_filter = "*.eps"
# change dest_ext to the format of the destination files
$dest_ext = "png"
$options = "-depth 8 -alpha off"
$logfile = "C:\temp\convert.log"
$fp = New-Item -ItemType file $logfile -force
$count=0
foreach ($srcitem in $(Get-ChildItem $srcfolder -include $src_filter -recurse))
{
    $srcname = $srcitem.fullname

    # Construct the filename and filepath for the output
    $partial = $srcitem.FullName.Substring( $srcfolder.Length )
    $destname = $destfolder + $partial
    $destname= [System.IO.Path]::ChangeExtension( $destname , $dest_ext )
    $destpath = [System.IO.Path]::GetDirectoryName( $destname )

    # Create the destination path if it does not exist
    if (-not (test-path $destpath))
    {
        New-Item $destpath -type directory | Out-Null
    }

    # Perform the conversion by calling an external tool
    $cmdline =  $im_convert_exe + " `"" + $srcname  + "`"" + $options + " `"" + $destname + "`" " 
    #echo $cmdline
    invoke-expression -command $cmdline

    # Get information about the output file    
    $destitem = Get-item $destname

    # Show and record information comparing the input and output files
    $info = [string]::Format( "{0} `t {1} `t {2} `t {3} `t {4} `t {5}", $count, 
    $partial, $srcname, $destname, $srcitem.Length ,  $destitem.Length)
    echo $info
    Add-Content $fp $info

    $count=$count+1
} 

#--------------------------------------------------------------

 
0
bobkush