Last-modified: 2013-03-16 (土) 22:11:46
スクリプト/check.bat

概要

ImageMagickで画像が一致しているか確認するバッチです。

コード

Everything is expanded.Everything is shortened.
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 
 
 
 
-
|
!
 
 
 
-
|
-
|
!
 
 
:: check.bat
:: 画像の一致比較
 
@echo off
for /f %%i in ('identify -format "%%[mean]" %1') do (
    set ret=%%i
)
 
echo %ret%
 
if %ret%==0 (
    echo match
) else (
    echo mismatch
)
 
pause

検証時の環境