Thêm hình mờ văn bản hoặc hình ảnh vào DOCX tài liệu bằng Python. Tải DOCX tài liệu và chèn hình mờ cần thiết vào đó. Sau đó, lưu kết quả ở định dạng thuận tiện như DOCX, PDF, MD, HTML, TXT, DOC, RTF, EPUB, XPS, v.v. và chia sẻ tài liệu đã được đánh dấu mờ với người khác. Đồng thời xóa hình mờ khỏi DOCX tài liệu nếu hình mờ trước đó đã được thêm vào tài liệu và lý do thêm không còn phù hợp nữa.
Với API Python này, các nhà phát triển có thể thêm hình mờ vào DOCX trực tuyến. Chỉ cần tạo hình mờ bằng văn bản hoặc hình ảnh và sau đó chèn hình mờ đó vào DOCX tài liệu của bạn bằng Python.
Lưu ý: không cần cài đặt bất kỳ ứng dụng hoặc thư viện nào của bên thứ ba. Do đó, giải pháp phần mềm Python của chúng tôi rất dễ sử dụng.
SDK Python đã cho cũng rất hữu ích để xóa hình mờ khỏi DOCX. Xóa hình mờ trong DOCX có nghĩa là bạn có thể tải DOCX tài liệu mong muốn được đóng dấu bằng hình mờ văn bản hoặc hình ảnh, xóa hình mờ này khỏi DOCX bằng Python, sau đó lưu tệp đầu ra ở định dạng thuận tiện - DOC, DOCX, PDF, JPEG, PNG, TIFF và những thứ khác.
Để đánh giá cách thêm hoặc xóa hình mờ trong DOCX bằng API Python của chúng tôi, hãy tải DOCX và hình mờ dưới dạng hình ảnh hoặc văn bản. Sau đó chọn định dạng tệp xuất thuận tiện - DOC, DOCX, PDF, HTML, RTF, XPS và các định dạng khác.
Sử dụng ví dụ sau để xem nó hoạt động như thế nào:
import asposewordscloud
words_api = WordsApi(
client_id = '####-####-####-####-####', client_secret = '##################')
request_document = open('Input1.docx', 'rb')
request_image_stream = open('Input2.jpg', 'rb')
request_watermark_data = asposewordscloud.WatermarkDataImage(
image=asposewordscloud.FileReference.fromLocalFileContent(request_image_stream))
insert_watermark_request = asposewordscloud.models.requests.InsertWatermarkOnlineRequest(
document=request_document, watermark_data=request_watermark_data)
insert_watermark_result = words_api.insert_watermark_online(insert_watermark_request)
convert_document_request = asposewordscloud.models.requests.ConvertDocumentRequest(
document=list(insert_watermark_result.document.values())[0], format='docx')
words_api.convert_document(convert_document_request)
import asposewordscloud
words_api = WordsApi(
client_id = '####-####-####-####-####', client_secret = '##################')
request_document = open('Input.docx', 'rb')
request_watermark_data = asposewordscloud.WatermarkDataText(
text='This is the watermark text',
layout='Diagonal')
insert_watermark_request = asposewordscloud.models.requests.InsertWatermarkOnlineRequest(
document=request_document, watermark_data=request_watermark_data)
insert_watermark_result = words_api.insert_watermark_online(insert_watermark_request)
convert_document_request = asposewordscloud.models.requests.ConvertDocumentRequest(
document=list(insert_watermark_result.document.values())[0], format='docx')
words_api.convert_document(convert_document_request)
import asposewordscloud
words_api = WordsApi(
client_id = '####-####-####-####-####', client_secret = '##################')
request_document = open('Input.docx', 'rb')
delete_watermark_online = asposewordscloud.models.requests.DeleteWatermarkOnlineRequest(
document=request_document)
deleted_watermark = words_api.delete_watermark_online(delete_watermark_online)
convert_document = asposewordscloud.models.requests.ConvertDocumentRequest(
document=list(deleted_watermark.document.values())[0], format='docx')
words_api.convert_document(convert_document)
Cài đặt Aspose.Words Cloud SDK for Python bằng cách sử dụng kho lưu trữ PyPi. Chạy pip install aspose-words-cloud để cài đặt SDK, sau đó nhập gói qua import asposewordscloud. Thay vào đó, bạn có thể sao chép thủ công Aspose.Words Cloud SDK for Python từ GitHub và sử dụng nó trong dự án của mình. Vui lòng làm theo các Instructions này để nhanh chóng nhận được thông tin xác thực bảo mật cần thiết và truy cập REST API của chúng tôi.
Tham khảo Repository Documentation để xem chi tiết.
Bạn có thể thêm hình mờ vào tài liệu ở các định dạng khác: