C++ SDKでWordまたはPDFファイルを編集する

REST APIを使用して、C++内のファイルをプログラムで編集します

開発者が特定のC++ソリューションを使用してドキュメントを変更する場合、実際に編集されるのはドキュメントオブジェクトモデル(DOM)です。したがって、DOMとして表されるドキュメントにほとんどすべての変更を加えることができます。提供されているC++ SDKを使用すると、開発者はドキュメントを簡単に編集できます。テキストの変更、テーブルの更新、画像の追加などが可能です。 Word、PDF、またはファイルをサポートされているロード形式でロードし、プログラムで必要な変更を加えて、結果をサポートされている保存形式にエクスポートするだけです。

コードスニペットを表示

REST APIを使用して C++ でドキュメントを編集する

C++ ライブラリを使用すると、開発者はドキュメントオブジェクトモデル (DOM) を編集してドキュメントを直接変更できます。つまり、追加のソフトウェアをインストールする必要はありません。

この C++ ソリューションを使用すると、サポートされている任意の形式でドキュメントを編集できることを知っておくことが重要です。たとえば、PDF、DOCX、DOC、RTF、ODT、EPUB、HTMLなどの形式でファイルを読み込んでから、このファイルを変更して、同じ形式またはその他のサポートされている形式で保存することができます。

C++ でテキストを編集する

Word、PDF、またはその他のドキュメントを編集する最も一般的なケースは、テキスト編集です。特定のソフトウェアソリューションを使用すると、ドキュメント内で C++ を使用してテキストを追加、変更、または削除できます。

C++ でテーブルを編集する

もう1つの一般的なドキュメント編集オプションは、テーブル編集です。 C++ SDKを使用すると、テーブルとテーブルセル内のテキストを操作できます。

C++ 開発者は、テーブルとテーブルセルを追加または削除したり、それらのセル内のテキストを追加、編集、削除したりできます。

C++ を使用してドキュメントに画像を追加する

テキストと表の編集に加えて、別の一般的なオプションがあります。C++ のドキュメントに画像を追加することです。 C++ 開発者は、DOMを使用してファイルにイメージを追加することもできます。

オンラインでドキュメントを編集する

この強力な C++ SDKを試して、ドキュメント編集のいくつかのオプションを評価してください。次の例を使用して、ドキュメントをロードし、いくつかの変更を加えます。テキストを追加するか、テーブルとテキストを含むテーブルセルを追加するか、ドキュメントに画像を挿入します。

変更するドキュメントをアップロードする
コードを実行する
挿入したい画像をアップロードする
リストからターゲットフォーマットを選択します
using namespace aspose::words::cloud;

auto config = std::make_shared<ApiConfiguration>(L"####-####-####-####-####", 
   L"##################");
auto wordsApi = std::make_shared<WordsApi>(config);

auto requestDocument = std::shared_ptr<std::istream>(new std::ifstream(
   std::filesystem::path(L"Input.docx"), std::istream::binary));
auto requestParagraph = std::make_shared<aspose::words::cloud::models::ParagraphInsert>();
requestParagraph->setText(std::make_shared<std::wstring>(L"Morbi enim nunc faucibus a."));

std::shared_ptr<requests::InsertParagraphOnlineRequest> insertParagraphRequest(
    new requests::InsertParagraphOnlineRequest(
        requestDocument, requestParagraph
    )
);
auto insertParagraph = wordsApi->insertParagraphOnline(insertParagraphRequest);

std::shared_ptr<requests::ConvertDocumentRequest> convertRequest(
    new requests::ConvertDocumentRequest(
        insertParagraph->document->values.begin,
          std::make_shared<std::wstring>(L"docx")
    )
);
auto convert = wordsApi->convertDocument(convertRequest);
using namespace aspose::words::cloud;

auto config = std::make_shared<ApiConfiguration>(L"####-####-####-####-####", 
   L"##################");
auto wordsApi = std::make_shared<WordsApi>(config);

auto requestDocument = std::shared_ptr<std::istream>(new std::ifstream(
   std::filesystem::path(L"Input.docx"), std::istream::binary));
auto requestTable = std::make_shared<aspose::words::cloud::models::TableInsert>();
requestTable->setColumnsCount(std::make_shared<int32_t>(1));
requestTable->setRowsCount(std::make_shared<int32_t>(2));

std::shared_ptr<requests::InsertTableOnlineRequest> insertTableRequest(
    new requests::InsertTableOnlineRequest(
        requestDocument, requestTable, std::make_shared<std::wstring>(L"")
    )
);
auto insertTable = wordsApi->insertTableOnline(insertTableRequest);

std::shared_ptr<requests::ConvertDocumentRequest> convertRequest(
    new requests::ConvertDocumentRequest(
        insertTable->document->values.begin,
          std::make_shared<std::wstring>(L"docx")
    )
);
auto convert = wordsApi->convertDocument(convertRequest);
using namespace aspose::words::cloud;

auto config = std::make_shared<ApiConfiguration>(L"####-####-####-####-####", 
   L"##################");
auto wordsApi = std::make_shared<WordsApi>(config);

auto requestDocument = std::shared_ptr<std::istream>(new std::ifstream(
   std::filesystem::path(L"Input1.docx"), std::istream::binary));

auto requestDrawingObject = 
   std::make_shared<aspose::words::cloud::models::DrawingObjectInsert>();
requestDrawingObject->setHeight(std::make_shared<double>(0));
requestDrawingObject->setLeft(std::make_shared<double>(0));
requestDrawingObject->setTop(std::make_shared<double>(0));
requestDrawingObject->setWidth(std::make_shared<double>(0));
requestDrawingObject->setRelativeHorizontalPosition(
   std::make_shared<aspose::words::cloud::models::DrawingObjectInsert::RelativeHorizontalPosition>(
      aspose::words::cloud::models::DrawingObjectInsert::RelativeHorizontalPosition::MARGIN));
requestDrawingObject->setRelativeVerticalPosition(
   std::make_shared<aspose::words::cloud::models::DrawingObjectInsert::RelativeVerticalPosition>(
      aspose::words::cloud::models::DrawingObjectInsert::RelativeVerticalPosition::MARGIN));
requestDrawingObject->setWrapType(
   std::make_shared<aspose::words::cloud::models::DrawingObjectInsert::WrapType>(
      aspose::words::cloud::models::DrawingObjectInsert::WrapType::INLINE));

auto requestImageFile = std::shared_ptr<std::istream>(new std::ifstream(
   std::filesystem::path(L"Input2.docx"), std::istream::binary));
std::shared_ptr<requests::InsertDrawingObjectOnlineRequest> insertDrawingObjectRequest(
    new requests::InsertDrawingObjectOnlineRequest(
        requestDocument, requestDrawingObject, requestImageFile, 
		   std::make_shared<std::wstring>(L"sections/0")
    )
);
auto insertDrawingObject = wordsApi->insertDrawingObjectOnline(insertDrawingObjectRequest);

std::shared_ptr<requests::ConvertDocumentRequest> convertRequest(
    new requests::ConvertDocumentRequest(
        insertDrawingObject->document->values.begin,
          std::make_shared<std::wstring>(L"docx")
    )
);
auto convert = wordsApi->convertDocument(convertRequest);
コードを実行する
  
C++をクリップボードにコピーします

C++でファイルを編集する方法

  1. Aspose.Words Cloud for C++をインストールします
  2. C++プロジェクトにライブラリ参照を追加(ライブラリをインポート)
  3. C++で編集するドキュメントを読み込む
  4. ドキュメントの先頭にコンテンツを挿入します
  5. クラウドストレージから結果ドキュメントをダウンロードします

C++ドキュメント編集を使用するライブラリ

GitHub Aspose.Words Cloud SDK for C++ クローンを作成します。 SDKの構築と構成の詳細については、 "How to use the SDK" セクションを参照してください。

必要なセキュリティクレデンシャルをすばやく取得してRESTAPIにアクセスするには、ドキュメントの次の Instructions に従ってください。

システム要求

詳細については、 Repository Documentation を参照してください。

5%

Aspose製品アップデートを購読する

メールボックスに直接配信される月刊ニュースレターとオファーを入手してください。

© Aspose Pty Ltd 2001-2024. 全著作権所有。