Cloud Document AI API C++ Client Library

An idiomatic C++ client library for the Cloud Document AI API, a service that uses machine learning on a scalable cloud-based platform to help your organization efficiently scan, analyze, and understand documents.

While this library is GA, please note Google Cloud C++ client libraries do not follow Semantic Versioning.

Quickstart

The following shows the code that you'll run in the google/cloud/documentai/quickstart/ directory, which should give you a taste of the Cloud Document AI API C++ client library API.

#include "google/cloud/documentai/v1/document_processor_client.h"
#include "google/cloud/location.h"
#include <fstream>
#include <iostream>
#include <string>
int main(int argc, char* argv[]) try {
 if (argc != 5) {
 std::cerr << "Usage: " << argv[0]
 << " project-id location-id processor-id filename (PDF only)\n";
 return 1;
 }
 std::string const location_id = argv[2];
 if (location_id != "us" && location_id != "eu") {
 std::cerr << "location-id must be either 'us' or 'eu'\n";
 return 1;
 }
 auto const location = google::cloud::Location(argv[1], location_id);
 namespace documentai = ::google::cloud::documentai_v1;
 auto client = documentai::DocumentProcessorServiceClient(
 documentai::MakeDocumentProcessorServiceConnection(
 location.location_id()));
 google::cloud::documentai::v1::ProcessRequest req;
 req.set_name(location.FullName() + "/processors/" + argv[3]);
 req.set_skip_human_review(true);
 auto& doc = *req.mutable_raw_document();
 doc.set_mime_type("application/pdf");
 std::ifstream is(argv[4]);
 doc.set_content(std::string{std::istreambuf_iterator<char>(is), {}});
 auto resp = client.ProcessDocument(std::move(req));
 if (!resp) throw std::move(resp).status();
 std::cout << resp->document().text() << "\n";
 return 0;
} catch (google::cloud::Status const& status) {
 std::cerr << "google::cloud::Status thrown: " << status << "\n";
 return 1;
}

Main classes

The main class in this library is documentai_v1::DocumentProcessorServiceClient. All RPCs are exposed as member functions of this class. Other classes provide helpers, configuration parameters, and infrastructure to mock documentai_v1::DocumentProcessorServiceClient when testing your application.

More Information

Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2025年10月30日 UTC.