- BuildVuで注釈(アノテーション)はどのように機能しますか?
- BuildVuはメモリ内のファイルを変換できますか?
- 一部のファイルでわずかに白い線が表示されるのはなぜですか?
- BuildVuはハイパーリンクをサポートしていますか?
- BuildVuはドキュメント間でフォントを共有できますか?
- 書き出すファイルを小さくしたい
- 右綴じの書類がうまく表示されません
- BuildVuは編集可能なHTML5を生成できますか?
- IDRViewerは印刷をサポートしていますか?
- BuildVuはテーブル構造を再現しますか?
- BuildVuでサポートされるフォントは?
- BuildVuはフォントをどのように処理しますか?
- 通常のリリースとDaily Customer JARの違いは何ですか?
- IDRViewerの検索機能
- IDRViewerのインターフェースを変更する
- 暗号化ファイルに別のプロバイダを使用する
- BuildVuのバージョンを確認する方法
- BuildVuはどのJavaバージョンをサポートしますか?
- デフォルトのIDRViewer ユーザーインターフェースを変更する
- IDRViewerのページビューをGoogle Analyticsでトラッキングする方法
- BuildVuが処理できる最大ファイルサイズは?
- PDFのフォントライセンスはどのように扱われますか?
- BuildVuで作成したHTMLはスマートフォンで見られますか?
- BuildVuで作成したドキュメントをメールに埋め込むことができますか?
- BuildVuは注釈(アノテーション)とフォームをどのように扱いますか?
- BuildVuはType3フォントはどのように処理しますか?
- どのキャラクターセット(文字コード)が使用されていますか?
- IDRViewerを変更するにはどうすればよいですか?
- BuildVuは単一のファイルで出力できますか?
- BuildVuはメモリに出力できますか?
- BuildVuはレスポンシブのHTMLを生成できますか?
- すべて表示 ( 26 ) 折り畳む
- BuildVu 2021.01 Release Notes
- BuildVu 2020.11 Release Notes
- BuildVu 2020.10 Release Notes
- BuildVu 2020.08 Release Notes
- BuildVu 2020.07 Release Notes
- BuildVu 2020.06 Release Notes
- BuildVu 2020.04 Release Notes
- BuildVu 2020.03 Release Notes
- BuildVu 2020.01 Release Notes
- BuildVu 2019.12 Release Notes
- BuildVu October 2019 Release Notes
- BuildVu September 2019 Release Notes
- BuildVu August 2019 Release Notes
- BuildVu June 2019 Release Notes
- BuildVu May 2019 Release Notes
- BuildVu April 2019 Release Notes
- BuildVu February 2019 Release Notes
- BuildVu January 2019 Release Notes
- BuildVu December 2018 Release Notes
- BuildVu November 2018 Release Notes
- BuildVu October 2018 Release Notes
- BuildVu September 2018 Release Notes
- BuildVu August 2018 Release Notes
- BuildVu July 2018 Release Notes
- BuildVu June 2018 Release Notes
- すべて表示 ( 20 ) 折り畳む
C#からBuildVuを使用するには2つの方法があります。 最初の方法は、Process を介してコマンドラインを使用します。 2番目の方法は、アプリケーションサーバー上でBuildVuをホストし、それをREST API経由でWebサービスとして実行することです。
オプション1:Process を使用してコマンドラインからBuildVuを実行する
※このオプションを使用するには、Javaのインストールが必要です。
次のコードは、バックグラウンドで新しいコマンドラインプロセスを開始し、指定されたコマンドを実行して、出力をデバッグコンソールに出力します。
using System.Diagnostics;
var command = "java -Xmx1024M -jar /path/to/buildvu.jar /path/to/input.pdf /path/to/output/dir/";
var startInfo = new ProcessStartInfo
{
FileName = "cmd.exe",
RedirectStandardInput = true,
RedirectStandardOutput = true,
CreateNoWindow = true,
UseShellExecute = false
};
var process = new Process(){ StartInfo = startInfo };
process.Start();
process.StandardInput.WriteLine(command);
process.StandardInput.Flush();
process.StandardInput.Close();
process.WaitForExit();
Debug.WriteLine(process.StandardOutput.ReadToEnd());
変換設定は、コマンドでシステムプロパティを渡すことによって制御されます。 詳しはこちらをご覧ください。
オプション2:アプリケーションサーバー経由でBuildVuを実行する
1.アプリケーションサーバーやDockerででBuildVuを設定する手順については下記をご覧ください。
2. Nugetを使用して、IDRSolutions C# Clientパッケージを次のコマンドでインストールします。
nuget install idrsolutions-csharp-client
3.BuildVuの使い方とサンプルコードは、BuildVu C#Client GitHubリポジトリを参照してください。
NugetでBuildVu C#Clientパッケージを表示することもできます。