cmp_png.rb in zsteg-0.2.12 vs cmp_png.rb in zsteg-0.2.13
- old
+ new
@@ -3,10 +3,10 @@
require 'awesome_print'
images = ARGV.map{ |fname| ZPNG::Image.load(fname) }
raise "need at least 2 images" if images.size < 2
-limit = 20
+limit = 100
alpha_used = images.any?(&:alpha_used?)
channels = alpha_used ? %w'r g b a' : %w'r g b'
printf "%6s %4s %4s : %s ...\n".magenta, "#", "X", "Y", (alpha_used ? "RRGGBBAA":"RRGGBB")