Skip to main content
Interwork Corporation
IDR Solutions Product Support Portal
モードの切替 ダーク/ライト/自動 モードの切替 ダーク/ライト/自動 モードの切替 ダーク/ライト/自動

スケーリング

変換されたコンテンツのスケーリング値を設定します。

期待される値:

  • 1 (浮動小数点数の倍率)
  • 1000x1000 (幅/高さに最適なフィット)
  • fitWidth1000 (幅に最適なフィット)
  • fitHeight1000 (高さに最適なフィット)

デフォルト: 1

使用例

コマンドライン

-Dorg.jpedal.pdf2html.scaling="1.5"
-Dorg.jpedal.pdf2html.scaling="1000x1000"
-Dorg.jpedal.pdf2html.scaling="fitWidth1000"
-Dorg.jpedal.pdf2html.scaling="fitHeight1000"

Cloud

{ "org.jpedal.pdf2html.scaling": "1.5" }
{ "org.jpedal.pdf2html.scaling": "1000x1000" }
{ "org.jpedal.pdf2html.scaling": "fitWidth1000" }
{ "org.jpedal.pdf2html.scaling": "fitHeight1000" }

Java

conversionOptions.setScaling(1.5f);
conversionOptions.setScalingFitWidthHeight(1000, 1000);
conversionOptions.setScalingFitWidth(1000);
conversionOptions.setScalingFitHeight(1000);