Skip to content

Commit fb040aa

Browse files
committed
Update FontStretches constants to PDF notation.
DEVSIX-1468
1 parent 9be6b6a commit fb040aa

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

io/src/main/java/com/itextpdf/io/font/constants/FontStretches.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,23 +16,23 @@ private FontStretches() {
1616
private static final int FWIDTH_ULTRA_EXPANDED = 9;
1717

1818

19-
public static final String ULTRA_CONDENSED = "ultra-condensed";
19+
public static final String ULTRA_CONDENSED = "UltraCondensed";
2020

21-
public static final String EXTRA_CONDENSED = "extra-condensed";
21+
public static final String EXTRA_CONDENSED = "ExtraCondensed";
2222

23-
public static final String CONDENSED = "condensed";
23+
public static final String CONDENSED = "Condensed";
2424

25-
public static final String SEMI_CONDENSED = "semi-condensed";
25+
public static final String SEMI_CONDENSED = "SemiCondensed";
2626

27-
public static final String NORMAL = "normal";
27+
public static final String NORMAL = "Normal";
2828

29-
public static final String SEMI_EXPANDED = "semi-expanded";
29+
public static final String SEMI_EXPANDED = "SemiExpanded";
3030

31-
public static final String EXPANDED = "expanded";
31+
public static final String EXPANDED = "Expanded";
3232

33-
public static final String EXTRA_EXPANDED = "extra-expanded";
33+
public static final String EXTRA_EXPANDED = "ExtraExpanded";
3434

35-
public static final String ULTRA_EXPANDED = "ultra-expanded";
35+
public static final String ULTRA_EXPANDED = "UltraExpanded";
3636

3737
/**
3838
* Convert from Open Type font width class notation.

0 commit comments

Comments
 (0)