-
まずはお試しください
-
BuildVuを実行する
-
Webサービスとクラウド
-
- マイクロサービスの設定
- Rubyを使ってBuildVuマイクロサービスにアクセスする
- Pythonを使ってBuildVu Microserviceにアクセスする
- PHPを使ってBuildVuマイクロサービスにアクセスする
- NodeJSを使用してBuildVuマイクロサービスにアクセスする
- Javascriptを使用してBuildVuマイクロサービスにアクセスする
- Javaを使ってBuildVu Microserviceにアクセスする
- cURLを使ってBuildVu Microserviceにアクセスする
- C#を使ってBuildVuマイクロサービスにアクセスする
- すべて表示 ( 4 ) 折り畳む
-
変換オプション
- クリップオフセット値の設定
- コンプリートドキュメント
- 画像の圧縮
- SVGの圧縮
- ページあたりの画像数のしきい値設定
- 画像をBase64ストリームとして埋め込む
- SVGをBase64画像として埋め込む
- インライン SVG
- 画像スケール
- コメントの無効化
- オリジナルのファイル名を作成する
- 起動アクションを有効にする
- フォントをテキストモードでラスタライズする
- 検索ファイルの生成
- ページ範囲の設定(論理ページ番号)
- ページ範囲の設定(実際のページ番号)
- 最大ページ高
- 最大ページ幅
- 1インチあたりのピクセル数
- スケール設定
- 収録フォントの設定
- 最小フォントサイズ
- 小さなテキスト除去のしきい値
- 出力するディレクトリ名の削除
- テキストを単語に分割
- テキストモード - textMode
- サムネイルの出力
- サムネイルの最大高
- サムネイルの最大幅
- レガシー画像ファイルタイプの使用
- ビューアのユーザーインターフェース - Viewer UI
- 表示モード
- パスワード
- CSS Suffix (CSS 接尾辞)
- テンポラリファイルの暗号化
- すべて表示 ( 30 ) 折り畳む
-
テキストとフォント
-
IDRViewer-専用ビューア
-
アノテーション
-
ヒント&テクニック
-
困ったときの対処法
-
よくある質問
-
APIドキュメント
-
アップデート情報
- BuildVu 2024.11 Release Notes
- BuildVu 2024.10 Release Notes
- BuildVu 2024.08 Release Notes
- BuildVu 2024.07 Release Notes
- BuildVuマイクロサービスにおけるAPIの変更
- 白い線が表示される問題の改善
- BuildVu 2024.05 Release Notes
- BuildVu 2024.04 Release Notes
- BuildVu 2024.03 Release Notes
- BuildVu 2024.01 Release Notes
- BuildVu 2023.12 Release Notes
- BuildVu 2023.10 Release Notes
- BuildVu 2023.09 Release Notes
- BuildVu 2023.08 Release Notes
- BuildVu 2023.06 Release Notes
- BuildVu 2023.05 Release Notes
- BuildVu 2023.04 Release Notes
- BuildVu 2023.02 Release Notes
- BuildVu 2023.01 Release Notes
- すべて表示 ( 14 ) 折り畳む
-
- BuildVu 2021.05 Release Notes
- BuildVu 2021.06 Release Notes
- BuildVu 2021.08 Release Notes
- BuildVu 2021.09 Release Notes
- BuildVu 2021.11 Release Notes
- BuildVu 2021.12 Release Notes
- BuildVu 2021.04 Release Notes
- BuildVu 2021.02 Release Notes
- BuildVu 2021.01 Release Notes
- 2021.06リリースでのdivタグの変更点とその理由?
- すべて表示 ( 5 ) 折り畳む
-
- BuildVu 2019.12 Release Notes
- BuildVu April 2019 Release Notes
- BuildVu August 2019 Release Notes
- BuildVu February 2019 Release Notes
- BuildVu January 2019 Release Notes
- BuildVu June 2019 Release Notes
- BuildVu May 2019 Release Notes
- BuildVu October 2019 Release Notes
- BuildVu September 2019 Release Notes
- すべて表示 ( 4 ) 折り畳む
-
ライセンスとバージョン
Gradleの依存関係として追加する
BuildVuをGradleプロジェクトで使用するためには、jarを依存関係としてプロジェクトに追加する必要があります。この作業はHTML版、SVG版ともに同じです。
これを行うには2つのオプションがあります。
手動で行う:
このチュートリアルでは、BuildVuのjarファイル名が「buildvu.jar」であることを前提としています。試用版のjarを使用している場合は、このステップに進む前にファイル名を「buildvu.jar」に変更することを確認してください。
まず、BuildVuのトライアルに申し込むか、専用のダウンロードページでBuildVuのjarをダウンロードする必要があります。
そして、BuildVuのjarをプロジェクトのlibフォルダに追加し、次のどちらかを行います。
オプション1
build.gradle ファイルに flatDir リポジトリと依存関係を追加します。
repositories {
flatDir {
dirs 'lib'
}
}
dependencies {
implementation 'idrsolutions:buildvu'
}
オプション2
build.gradleファイルにファイルの依存関係を追加します。
dependencies {
implementation files('lib/buildvu.jar')
}
(Version tested: Gradle 7.5.1)
リモートMavenリポジトリの使用
1. build.gradleにログイン情報を入力して、当社のリポジトリをrepositoriesに追加します
repositories {
maven {
url = "https://files.idrsolutions.com/dl/maven/"
credentials {
username "{Your username}"
password "{Your password}"
}
}
}
トライアル
mavenのリポジトリからトライアルを取得したい場合は、代わりにこのようにリポジトリを設定する必要があります:
repositories {
maven {
url = "https://files.idrsolutions.com/dl/maven/"
credentials {
username "{Your Token}"
password "{Your Token}"
}
}
}
代替資格情報
ログイン情報をメインのgradleファイルに追加するのはとても危険ですので、代わりに以下のようにしてリポジトリを追加します。
repositories {
maven {
url = "https://maven.idrsolutions.com"
name = 'IDRsolutions'
credentials(PasswordCredentials)
}
}
次に、gradle.properties ファイル(プロジェクトのルートディレクトリ、または GRADLE_USER_HOME ディレクトリのいずれかを使用できます)に、以下を追加します。
トライアル
リポジトリのクレデンシャルと同様に、ユーザー名とパスワードの代わりにトークンを供給する必要があります。
IDRsolutionsUsername={Your Token}
IDRSolutionsPassword={Your Token}
gradle.propertiesファイルについての詳細はこちらをご覧ください。
2.次に、BuildVuを依存関係として追加します
通常のフルリリースの場合:
HTML
dependencies {
implementation 'com.idrsolutions:buildvu-html:{version}'
}
SVG
dependencies {
implementation 'com.idrsolutions:buildvu-svg:{version}'
}
versionはYYYY.MM
の形式でいずれかのリリースを指定します(2021.11以降のバージョンしか利用できないことに注意してください、またBuildVuの最新バージョンのみサポートを提供します)。
デイリービルドの場合:
HTML
dependencies {
implementation 'com.idrsolutions:buildvu-html-daily:{version}'
}
SVG
dependencies {
implementation 'com.idrsolutions:buildvu-svg-daily:{version}'
}
バージョンはYYYY.MM.DD
のフォーマットでリリースされたものの1つです(最新のデイリービルドのみ保存されることに注意してください)
トライアル版の場合:
HTML
dependencies {
implementation 'com.idrsolutions:buildvu-html-trial:{version}'
}
SVG
dependencies {
implementation 'com.idrsolutions:buildvu-svg-trial:{version}'
}
ここで、バージョンはYYYY.MM
のフォーマットで最新のリリースを示します。