Defines the format of the currently processed/used document.

from nutrient import DocumentFormat

Values

NameValueDescription
DocumentFormat.DOCUMENT_FORMAT_UNKNOWN0Unknown or undefined document format. It is also returned if any error occurs.
DocumentFormat.DOCUMENT_FORMAT_ICO1Icon and cursor format (single or multi page).
DocumentFormat.DOCUMENT_FORMAT_BMP2Standard Windows Bitmap Format.
DocumentFormat.DOCUMENT_FORMAT_WBMP3Wireless Bitmap.
DocumentFormat.DOCUMENT_FORMAT_JPEG4Joint Photographic Expert Group.
DocumentFormat.DOCUMENT_FORMAT_GIF5Graphics Interchange Format.
DocumentFormat.DOCUMENT_FORMAT_PNG6Portable Network Graphics Format.
DocumentFormat.DOCUMENT_FORMAT_TIFF7Tagged Image Format.
DocumentFormat.DOCUMENT_FORMAT_FAXG38Group 3 Raw Fax Format.
DocumentFormat.DOCUMENT_FORMAT_EXIF9Exchangeable Image Format.
DocumentFormat.DOCUMENT_FORMAT_EMF10Enhanced Windows Meta-format.
DocumentFormat.DOCUMENT_FORMAT_WMF11Standard Windows Meta-format.
DocumentFormat.DOCUMENT_FORMAT_JNG12JPEG Network Graphics.
DocumentFormat.DOCUMENT_FORMAT_KOALA13KOALA Format.
DocumentFormat.DOCUMENT_FORMAT_IFF14Interchange Format.
DocumentFormat.DOCUMENT_FORMAT_MNG15Multiple-image Network Graphics.
DocumentFormat.DOCUMENT_FORMAT_PCD16Kodak Photo-CD file.
DocumentFormat.DOCUMENT_FORMAT_PCX17PC Paintbrush Format.
DocumentFormat.DOCUMENT_FORMAT_PBM18Portable Bitmap File.
DocumentFormat.DOCUMENT_FORMAT_PBMRAW19Portable Bitmap BINARY.
DocumentFormat.DOCUMENT_FORMAT_PFM20Portable Float Map.
DocumentFormat.DOCUMENT_FORMAT_PGM21Portable Gray-map File.
DocumentFormat.DOCUMENT_FORMAT_PGMRAW22Portable Gray-map BINARY.
DocumentFormat.DOCUMENT_FORMAT_PPM23Portable Pix-map File.
DocumentFormat.DOCUMENT_FORMAT_PPMRAW24Portable Pix-map BINARY.
DocumentFormat.DOCUMENT_FORMAT_RAS25Sun Raster Format.
DocumentFormat.DOCUMENT_FORMAT_TARGA26TARGA Image Format.
DocumentFormat.DOCUMENT_FORMAT_PSD27Photoshop File.
DocumentFormat.DOCUMENT_FORMAT_CUT28Dr. Halo/Dr.Genius Clipboard Format.
DocumentFormat.DOCUMENT_FORMAT_XBM29X-Bitmap Format.
DocumentFormat.DOCUMENT_FORMAT_XPM30X Pixmap Format.
DocumentFormat.DOCUMENT_FORMAT_DDS31Microsoft Direct-draw Surface Format.
DocumentFormat.DOCUMENT_FORMAT_HDR32High Dynamic Range Format.
DocumentFormat.DOCUMENT_FORMAT_SGI33Silicon Graphics Image Format.
DocumentFormat.DOCUMENT_FORMAT_EXR34OpenEXR Format.
DocumentFormat.DOCUMENT_FORMAT_J2_K35JPEG-2000 Code-stream.
DocumentFormat.DOCUMENT_FORMAT_JP236JPEG-2000 Format.
DocumentFormat.DOCUMENT_FORMAT_JBIG37Joint Bi-level Image Experts Group.
DocumentFormat.DOCUMENT_FORMAT_PICT38Macintosh PICT Format
DocumentFormat.DOCUMENT_FORMAT_RAW39RAW bitmap.
DocumentFormat.DOCUMENT_FORMAT_WEBP40WebP format.
DocumentFormat.DOCUMENT_FORMAT_DICOM41Digital Imaging and Communications in Medicine.
DocumentFormat.DOCUMENT_FORMAT_WSQ42Wavelet scalar quantization.
DocumentFormat.DOCUMENT_FORMAT_HEIF43High Efficiency Image File Format.
DocumentFormat.DOCUMENT_FORMAT_JBIG2100Joint Bi-level Image Experts Group.
DocumentFormat.DOCUMENT_FORMAT_MEMORY_BMP500Standard Windows Bitmap Format using memory.
DocumentFormat.DOCUMENT_FORMAT_PDF1000Portable Document Format.
DocumentFormat.DOCUMENT_FORMAT_SVG1001Scalable Vector Graphics.
DocumentFormat.DOCUMENT_FORMAT_TXT1002Plain text file.
DocumentFormat.DOCUMENT_FORMAT_DOCX1003Microsoft Word OpenXML.
DocumentFormat.DOCUMENT_FORMAT_RTF1004Rich Text File Format.
DocumentFormat.DOCUMENT_FORMAT_DXF1005AutoCAD DXF (Drawing Interchange Format, or Drawing Exchange Format).
DocumentFormat.DOCUMENT_FORMAT_ODT1006OpenDocument text file format.
DocumentFormat.DOCUMENT_FORMAT_XLSX1007Microsoft Excel Spreadsheet format.
DocumentFormat.DOCUMENT_FORMAT_PPTX1008Microsoft Powerpoint Presentation format.
DocumentFormat.DOCUMENT_FORMAT_DOC1009Microsoft Word (.doc) binary file format.
DocumentFormat.DOCUMENT_FORMAT_XLS1010Microsoft Excel (.xls) binary file format.
DocumentFormat.DOCUMENT_FORMAT_PPT1011Microsoft PowerPoint (.ppt) binary file format.
DocumentFormat.DOCUMENT_FORMAT_HTML1012HTML format.
DocumentFormat.DOCUMENT_FORMAT_MSG1013Outlook Message Item File format.
DocumentFormat.DOCUMENT_FORMAT_EML1014E-Mail Message format.
DocumentFormat.DOCUMENT_FORMAT_POST_SCRIPT1015PostScript format.
DocumentFormat.DOCUMENT_FORMAT_DWG1016Binary CAD format
DocumentFormat.DOCUMENT_FORMAT_MHTML1017MIME HTML format.
DocumentFormat.DOCUMENT_FORMAT_MD1018Markdown text file format.

Usage Example

from nutrient import DocumentFormat
# Access enum values
value = DocumentFormat.DOCUMENT_FORMAT_UNKNOWN
print(f"Value: {value}") # Output: Value: DocumentFormat.DOCUMENT_FORMAT_UNKNOWN
print(f"Integer value: {value.value}") # Output: Integer value: 0