Scale (enum)

API

Scale.java
enum Scale {
  AUTOMATIC     (1)
  ACTUAL_SIZE
  PAGE_FIT
  PAGE_WIDTH
  _0_50     (2)
  _0_75     (3)
  _1_00     (4)
  _1_25     (5)
  _1_50     (6)
  _2_00     (7)
  _3_00     (8)
  _4_00     (9)
  Scale forValue(String scaleValue)
}
1 AUTOMATIC

predefined scaling strategies, depend on the width/height of the panel available to render in

2 _0_50

50%

3 _0_75

75%

4 _1_00

100%

5 _1_25

125%

6 _1_50

150%

7 _2_00

200%

8 _3_00

300%

9 _4_00

400%

Members

AUTOMATIC

predefined scaling strategies, depend on the width/height of the panel available to render in

_0_50

50%

_0_75

75%

_1_00

100%

_1_25

125%

_1_50

150%

_2_00

200%

_3_00

300%

_4_00

400%