Skip to content

Commit

Permalink
Fixes #694 Incorrect size for B3 paper.
Browse files Browse the repository at this point in the history
Thanks a lot @lfintalan!
  • Loading branch information
danfickle committed May 14, 2021
1 parent 39fa14b commit fdac18f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,11 @@ public class PageSize {
new PropertyValue(CSSPrimitiveValue.CSS_MM, 420f, "420mm"));

/**
* ISO B3 media: 176mm wide by 250mm high
* ISO B3 media: 353mm wide by 500mm high
*/
public static final PageSize B3 = new PageSize(
new PropertyValue(CSSPrimitiveValue.CSS_MM, 176f, "176mm"),
new PropertyValue(CSSPrimitiveValue.CSS_MM, 250, "250mm"));
new PropertyValue(CSSPrimitiveValue.CSS_MM, 353f, "353mm"),
new PropertyValue(CSSPrimitiveValue.CSS_MM, 500f, "500mm"));

/**
* ISO B4 media: 250mm wide by 353mm high
Expand Down

0 comments on commit fdac18f

Please sign in to comment.