REST API & Cloud SDK for Ruby to build online document & image annotation tools with support for text & image annotation options. Let’s annotate!
Start Free TrialGroupDocs.Annotation Cloud SDK for Ruby RESTful APIs is all you need to build document annotator tools in Ruby. Your application will be able to add annotations, watermark overlays, text replacements, redactions, sticky notes and text markups to the business documents of all popular formats such as, PDF, Microsoft Word, Excel, PowerPoint, Outlook, images other formats. Rapidly develop Annotation applications in Ruby using our SDK that works as a wrapper around Ruby APIs and makes the solution cross-platform compatible. Support for 3rd party cloud storage providers, e.g., Amazon S3, Windows Azure, Dropbox and others is also provided.
Check out GroupDocs.Annotation Cloud SDK for Ruby at GitHub if you are looking for the source code to annotate file in the Cloud.
You can try GroupDocs.Annotation Low-Code Ruby APIs without any limitations.
GroupDocs.Annotation Cloud is also available as Docker image which can be used to self-host the service. Or you may build your own services using GroupDocs.Annotation High-code APIs which currently drive our REST APIs.
Integrating GroupDocs.Annotation Cloud SDK into your ruby applications is very easy. No installation is required on the server or client side. Just create an account at GroupDocs.CLOUD to get App SID & key. Following example shows how easy it is to import annotation information using Ruby:
# TODO: Get your AppSID and AppKey at https://dashboard.groupdocs.cloud (free registration is required).
# For complete examples and data files, please go to https://github.com/groupdocs-annotation-cloud/groupdocs-annotation-cloud-ruby
# Extracts annotations from document.
def get_import
@config = GroupDocsAnnotationCloud::Configuration.new(Utils::APP_SID, Utils::APP_KEY)
@config.api_base_url = Utils::API_BASE_URL
@filename = 'Annotated.pdf'
@foldername = nil
@annotation_api = GroupDocsAnnotationCloud::AnnotationApi.from_config(@config)
request = GroupDocsAnnotationCloud::GetImportRequest.new(@filename,@foldername)
# Extracts annotations from document.
response = @annotation_api.get_import request
puts response
puts 'completed'
end
Using GroupDocs.Annotation Cloud SDK for Ruby, you can work with diverse types of annotations. The two basic types are; Text Annotations and Figure Annotations. While using text-based annotation, you can add text comments to selected text; highlight which text should be replaced with what, hide confidential text using text redaction, highlight text with strikethroughs/underlines, and add sticky notes with rich text. While working with figure annotations, you can add notes to an area highlighted with a rectangle (Area Annotation), add notes to any point in the document (Point Annotation), hide confidential parts of an image or text (Area Redaction), draw freehand lines and shapes (Polyline), arrows pointing to an object (Pointer/Arrow), create text-based watermark overlays (Watermark), and measure the distance between any objects in a document (Distance Annotation).
GroupDocs.Annotation Cloud SDK for Ruby is 100% tested and out of the box running. The SDK is open source and has an MIT license. You can use it, and even customize it for absolutely free of charge.
Using our Swagger based API explorer; you can try out GroupDocs.Annotation Cloud SDK for Ruby right away in your browser. This interactive API explorer gives you information about all the resources that the API offers. You can also try your desired operation by interactively providing required parameters.