png-compressor
    Preparing search index...

    Interface IPngMetadataCompressedTextualData

    A metadata entry that defines a compressed piece of text associated with the image, interpreted according to the Latin-1 character set.

    interface IPngMetadataCompressedTextualData {
        keyword: string;
        text: string | Uint8Array | ArrayBuffer;
        type: "zTXt";
    }
    Index

    Properties

    Properties

    keyword: string

    A description of the text in English, this typically matches one of the following:

    • Author: Name of image's creator
    • Description: Description of image (possibly long)
    • Copyright: Copyright notice
    • Creation: Time Time of original image creation
    • Software: Software used to create the image
    • Disclaimer: Legal disclaimer
    • Warning: Warning of nature of content
    • Source: Device used to create the image
    • Comment: Miscellaneous comment
    text: string | Uint8Array | ArrayBuffer

    The text.

    type: "zTXt"

    The type of metadata, this is typically the name of the chunk from which is originates.