Interface IImgHash

Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface IImgHash
Interface which must be implemented by every image hashing class.
Since:
v1.0.6 - 2018-10-09
Author:
hypfvieh
  • Method Summary

    Modifier and Type
    Method
    Description
    computeHash(File _image)
    Calculate the hash of given image.
  • Method Details

    • computeHash

      String computeHash(File _image) throws IOException
      Calculate the hash of given image.
      Parameters:
      _image - image to hash
      Returns:
      hash as string
      Throws:
      IOException - when file processing fails