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"
+
+
+
+
+