Class JpegSyntaxChecker

  • All Implemented Interfaces:
    Serializable, SchemaObject

    public final class JpegSyntaxChecker
    extends SyntaxChecker
    A SyntaxChecker which verifies that a value is a Jpeg according to RFC 4517.

    The JFIF (Jpeg File Interchange Format) specify that a jpeg image starts with the following bytes :

     0xFF 0xD8 (SOI, Start Of Image)
     0xFF 0xE0 (App0 for JFIF) or 0xDD 0xE1 (App1 for Exif)
     0xNN 0xNN (Header length)
     "JFIF\0" (JFIF string with an ending \0)
     some other bytes which are related to the image.
     
    We will check for those 11 bytes, except the length.
    Author:
    Apache Directory Project
    See Also:
    Serialized Form
    • Method Detail

      • isValidSyntax

        public boolean isValidSyntax​(Object value)
        Determines if the attribute's value conforms to the attribute syntax.
        Overrides:
        isValidSyntax in class SyntaxChecker
        Parameters:
        value - the value of some attribute with the syntax
        Returns:
        true if the value is in the valid syntax, false otherwise