Printserver: Add JIS B5 paper size

Signed-off-by: Matt Madia <mattmadia@gmail.com>
This commit is contained in:
Murai Takashi 2013-03-15 21:22:30 +09:00 committed by Matt Madia
parent 043f96686e
commit 2c74d7a458

View File

@ -58,6 +58,8 @@ static const float ledger_width = 1224.0;
static const float ledger_height = 792.0;
static const float tabloid_width = 792.0;
static const float tabloid_height = 1224.0;
static const float jis_b5_width = 516.0;
static const float jis_b5_height = 729.0;
static struct PageFormat
@ -91,6 +93,8 @@ static struct PageFormat
a6_width, a6_height },
{B_TRANSLATE_MARK_COMMENT("B5", "ISO 216 paper size"),
b5_width, b5_height },
{B_TRANSLATE_MARK_COMMENT("B5 (JIS)", "JIS P0138 B5, a Japanese "
"paper size"), jis_b5_width, jis_b5_height },
};