Colibrio Reader Framework API - Cloud license
    Preparing search index...

    Base interface for implementing support for a publication format such as EPUB or PDF. Format adapters must be added to a ReadingSystemEngine to enable support for that format.

    For example, to add support for EPUB publications use:

    let engine = new ReadingSystemEngine();
    engine.addFormatAdapter(new EpubFormatAdapter())
    interface IFormatAdapter {
        isPublicationSupported(
            publication: IPublication,
            readingSystem: IReadingSystemEngine,
        ): boolean;
    }

    Implemented by

    Methods