Specifies the predefined icon for a rubber stamp annotation.

from nutrient import PdfRubberStampIcon

Values

NameValueDescription
PdfRubberStampIcon.APPROVED0An “Approved” stamp.
PdfRubberStampIcon.EXPERIMENTAL1An “Experimental” stamp.
PdfRubberStampIcon.NOT_APPROVED2A “NotApproved” stamp.
PdfRubberStampIcon.AS_IS3An “AsIs” stamp.
PdfRubberStampIcon.EXPIRED4An “Expired” stamp.
PdfRubberStampIcon.NOT_FOR_PUBLIC_RELEASE5A “NotForPublicRelease” stamp.
PdfRubberStampIcon.CONFIDENTIAL6A “Confidential” stamp.
PdfRubberStampIcon.FINAL7A “Final” stamp.
PdfRubberStampIcon.SOLD8A “Sold” stamp.
PdfRubberStampIcon.DEPARTMENTAL9A “Departmental” stamp.
PdfRubberStampIcon.FOR_COMMENT10A “ForComment” stamp.
PdfRubberStampIcon.TOP_SECRET11A “TopSecret” stamp.
PdfRubberStampIcon.DRAFT12A “Draft” stamp.
PdfRubberStampIcon.FOR_PUBLIC_RELEASE13A “ForPublicRelease” stamp.

Usage Example

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