From ec3829d1b6a251f99e110487b4b8452ef5f7e521 Mon Sep 17 00:00:00 2001 From: Ashley Blewer Date: Wed, 6 Jun 2018 18:21:16 -0400 Subject: [PATCH] adds image hash grabbing recipe --- index.html | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index f6761b5..4a232c0 100644 --- a/index.html +++ b/index.html @@ -2372,8 +2372,8 @@ - - + +

Compare two images

compare -metric ae image1.ext image2.ext null:

@@ -2425,6 +2425,25 @@
+ + + +
+

Get file signature data

+

convert -verbose input_file.ext | grep -i signature

+

Gets signature data from an image file, which is a hash that can be used to uniquely identify the image.

+
+
convert
starts the command
+
-verbose
sets verbose flag for collecting the most data
+
input_file.ext
path and name of image file
+
|
pipe the data into something else
+
grep
starts the grep command
+
-i signature
ignore case and search for the phrase "signature"
+
+ +
+ +