Bảo vệ tài liệu của bạn khỏi phân phối trái phép và thêm hình mờ trực tuyến. Để thực hiện việc này, chỉ cần tải PDF định dạng, Word hoặc tài liệu khác và thêm hình mờ văn bản hoặc hình ảnh bằng cách sử dụng Ruby. Sau đó, lưu PDF tài liệu hoặc Word đã được đánh dấu chìm ở định dạng thuận tiện như DOC, DOCX, PDF, HTML, RTF, XPS và các định dạng khác. Bạn cũng có thể xóa hình mờ khỏi tài liệu để xử lý chúng dễ dàng hơn trừ khi nó vi phạm quyền của bất kỳ ai.
Với API Ruby này, các nhà phát triển có thể thêm hình mờ vào PDF, Word hoặc các tài liệu khác trực tuyến. Bạn có thể tạo hình mờ bằng văn bản hoặc hình ảnh, sau đó chèn hình mờ đó vào PDF tài liệu hoặc Word của mình bằng cách đặt góc lớp phủ trong Ruby.
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 Ruby của chúng tôi rất dễ sử dụng.
SDK Ruby đã cung cấp cũng rất hữu ích để loại bỏ các hình mờ. Ví dụ: xóa hình mờ trong Word có nghĩa là bạn có thể tải Word 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 tài liệu bằng Ruby, sau đó lưu tệp đầu ra ở định dạng thuận tiện.
Để đánh giá API Ruby của chúng tôi, hãy tải tài liệu mà bạn muốn thêm hình mờ 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 - DOCX, PDF, MD, HTML, TXT, DOC, RTF, EPUB, XPS và các định dạng khác.
Sử dụng ví dụ sau để xem nó hoạt động như thế nào:
require 'aspose_words_cloud'
AsposeWordsCloud.configure do |config|
config.client_data['ClientId'] = '####-####-####-####-####'
config.client_data['ClientSecret'] = '##################'
end
@words_api = WordsAPI.new
request_document = File.open('Input1.docx')
request_image_stream = File.open('Input2.jpg')
request_watermark_data = WatermarkDataImage.new(
{:Image => AsposeWordsCloud::FileReference.fromLocalFileContent(request_image_stream)})
insert_watermark_request = InsertWatermarkOnlineRequest.new(
document: request_document, watermark_data: request_watermark_data)
insert_watermark_result =
@words_api.insert_watermark_online(insert_watermark_request)
convert_document_request = ConvertDocumentRequest.new(
document: insert_watermark_result.document.values[0], format: 'docx')
@words_api.convert_document(convert_document_request)
require 'aspose_words_cloud'
AsposeWordsCloud.configure do |config|
config.client_data['ClientId'] = '####-####-####-####-####'
config.client_data['ClientSecret'] = '##################'
end
@words_api = WordsAPI.new
request_document = File.open('Input.docx')
request_watermark_data = WatermarkDataText.new(
{:Text => 'This is the watermark text', :Layout => 'Diagonal'})
insert_watermark_request = InsertWatermarkOnlineRequest.new(
document: request_document, watermark_data: request_watermark_data)
insert_watermark_result = @words_api.insert_watermark_text_online(insert_watermark_request)
convert_document_request = ConvertDocumentRequest.new(
document: insert_watermark_result.document.values[0], format: 'docx')
@words_api.convert_document(convert_document_request)
require 'aspose_words_cloud'
AsposeWordsCloud.configure do |config|
config.client_data['ClientId'] = '####-####-####-####-####'
config.client_data['ClientSecret'] = '##################'
end
@words_api = WordsAPI.new
request_document = File.open('Input.docx')
delete_watermark_online = DeleteWatermarkOnlineRequest.new(document: request_document)
deleted_watermark = @words_api.delete_watermark_online(delete_watermark_online)
convert_document = ConvertDocumentRequest.new(
document: deleted_watermark.document.values[0], format: 'docx')
@words_api.convert_document(convert_document)
Cài đặt Aspose.Words Cloud SDK for Ruby bằng dịch vụ lưu trữ RubyGems. Chạy gem install aspose_words_cloud để cài đặt gói. Thay vào đó, bạn có thể sao chép thủ công Aspose.Words Cloud SDK for Ruby 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.