Report an issue
Class

CKEDITOR.plugins.pastetools.filters.image

class

Filtering

Properties

  • since 4.16.0 private

    recognizableImageSignatures : RecognizableImageSignature[]

    Recognizable image file signatures with their respective types.

    The recognizing of image type is done by matching the first bytes of the signature represented as hex string.

    Defaults to [{signature: 'ffd8ff', type: 'image/jpeg'}, {signature: '47494638', type: 'image/gif'}, {signature: '89504e47', type: 'image/png'}]

  • since 4.16.0 private

    recognizableImageTypes : RecognizableImageType[]

    Recognizable image types with their respective markers.

    The recognizing of image type is done by searching for image marker inside the RTF image content.

    Defaults to [{marker: /\\pngblip/, type: 'image/png'}, {marker: /\\jpegblip/, type: 'image/jpeg'}, {marker: /\\emfblip/, type: 'image/emf'}, {marker: /\\wmetafile\d/, type: 'image/wmf'}]

  • since 4.16.0 private

    supportedImageTypes : String[]

    Array of all supported image formats.

    Defaults to ['image/png', 'image/jpeg', 'image/gif']

Methods