Khi các nhà phát triển sửa đổi PDF tài liệu bằng thư viện Ruby này, những gì thực sự đang được chỉnh sửa là Mô hình Đối tượng Tài liệu (DOM). Do đó, hầu hết mọi thay đổi đều có thể được thực hiện đối với PDF tài liệu được biểu thị dưới dạng DOM. Với Ruby SDK được cung cấp, nhà phát triển có thể dễ dàng chỉnh sửa tài liệu: sửa đổi văn bản, cập nhật bảng, thêm hình ảnh, v.v. Chỉ cần tải PDF, thực hiện các thay đổi cần thiết theo chương trình và xuất kết quả sang cùng một hoặc bất kỳ định dạng lưu nào được hỗ trợ.
Thư viện Ruby của chúng tôi cung cấp cho các nhà phát triển khả năng sửa đổi PDF tài liệu trực tiếp bằng cách chỉnh sửa Mô hình đối tượng tài liệu (DOM), có nghĩa là không cần cài đặt thêm phần mềm.
Trường hợp phổ biến nhất để chỉnh sửa PDF tệp là chỉnh sửa văn bản. Với giải pháp phần mềm đã cho, bạn có thể thêm, sửa đổi hoặc xóa văn bản bằng Ruby trong tài liệu.
Một tùy chọn chỉnh sửa PDF phổ biến khác là chỉnh sửa bảng. Ruby SDK của chúng tôi cho phép bạn làm việc với các bảng và văn bản trong các ô của bảng.
Các nhà phát triển Ruby có thể thêm hoặc xóa bảng và ô bảng, cũng như thêm, chỉnh sửa và xóa văn bản bên trong chúng.
Bên cạnh việc chỉnh sửa văn bản và bảng trong PDF, có một tùy chọn phổ biến khác: thêm hình ảnh vào tài liệu trong Ruby. Các nhà phát triển Ruby cũng có thể thêm một hình ảnh vào PDF tệp bằng cách sử dụng DOM.
Hãy dùng thử Ruby SDK mạnh mẽ này và đánh giá một số tùy chọn trong chỉnh sửa PDF tài liệu. Sử dụng ví dụ sau, tải PDF tài liệu của bạn và thực hiện một số thay đổi: thêm văn bản, thêm bảng và ô bảng có văn bản hoặc chèn hình ảnh vào PDF tài liệu:
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.pdf')
request_paragraph = ParagraphInsert.new({:Text => 'Morbi enim nunc faucibus a.'})
insert_paragraph_request = InsertParagraphOnlineRequest.new(document: request_document,
paragraph: request_paragraph)
insert_paragraph = @words_api.insert_paragraph_online(insert_paragraph_request)
convert_request = ConvertDocumentRequest.new(
document: insert_paragraph.document.values[0], format: 'pdf')
convert = @words_api.convert_document(convert_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.pdf')
request_table = TableInsert.new({:ColumnsCount => 1, :RowsCount => 2})
insert_table_request = InsertTableOnlineRequest.new(document: request_document,
table: request_table, node_path: '')
insert_table = @words_api.insert_table_online(insert_table_request)
convert_request = ConvertDocumentRequest.new(
document: insert_table.document.values[0], format: 'pdf')
convert = @words_api.convert_document(convert_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('Input1.pdf')
request_drawing_object = DrawingObjectInsert.new({:Height => 0, :Left => 0, :Top => 0,
:Width => 0, :RelativeHorizontalPosition => 'Margin',
:RelativeVerticalPosition => 'Margin', :WrapType => 'Inline'})
request_image_file = File.open('Input2.pdf')
insert_drawing_object_request = InsertDrawingObjectOnlineRequest.new(
document: request_document, drawing_object: request_drawing_object,
image_file: request_image_file, node_path: 'sections/0')
insert_drawing_object = @words_api.insert_drawing_object_online(insert_drawing_object_request)
convert_request = ConvertDocumentRequest.new(
document: insert_drawing_object.document.values[0], format: 'pdf')
convert = @words_api.convert_document(convert_request)
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.
Bạn có thể thực hiện thao tác chỉnh sửa cho các định dạng tệp khác: