security_options الملكية
security_options الملكية
عيّن هذه الخيارات ، عندما يكون الأمان مطلوبًا في نتيجة xls2pdf.
مثال
يحدد الكود التالي إذن طباعة عالي الدقة لملف pdf.
from aspose.cells import PdfSaveOptions, Workbook
from aspose.cells.rendering.pdfsecurity import PdfSecurityOptions
wb = Workbook()
wb.worksheets[0].cells.get("A1").value = "Aspose"
pdfSaveOptions = PdfSaveOptions()
pdfSecurityOptions = PdfSecurityOptions()
# set owner password
pdfSecurityOptions.owner_password = "YourOwnerPassword"
# set user password
pdfSecurityOptions.user_password = "YourUserPassword"
# set print permisson
pdfSecurityOptions.print_permission = True
# set high resolution for print
pdfSecurityOptions.full_quality_print_permission = True
pdfSaveOptions.security_options = pdfSecurityOptions
wb.save("output.pdf", pdfSaveOptions)
تعريف:
@property
def security_options(self):
...
@security_options.setter
def security_options(self, value):
...
أنظر أيضا
- وحدة aspose.cells
- فئة PdfSaveOptions
- فئة PdfSecurityOptions