unit.gl 0.0.39 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -1
- package/css/unit.gl.css +54 -42
- package/css/unit.gl.min.css +1 -1
- package/package.json +2 -22
- package/scss/_reset.scss +20 -12
- package/scss/classes/_guide.scss +35 -40
- package/scss/classes/_guides.scss +141 -0
- package/scss/classes/_index.scss +3 -5
- package/scss/classes/_ratio.scss +3 -5
- package/scss/dev/_banner.scss +4 -7
- package/scss/dev/_index.scss +7 -0
- package/scss/functions/_color.scss +8 -11
- package/scss/functions/_index.scss +18 -11
- package/scss/functions/_layer.scss +6 -10
- package/scss/functions/_ratio.scss +13 -16
- package/scss/functions/_scale.scss +20 -18
- package/scss/functions/_sequence.scss +64 -72
- package/scss/functions/_view.scss +6 -9
- package/scss/functions/math/_arithmetic.scss +21 -30
- package/scss/functions/math/_index.scss +4 -7
- package/scss/functions/unit/_index.scss +8 -7
- package/scss/functions/unit/_unit_conversion.scss +42 -29
- package/scss/functions/unit/_unit_functions.scss +55 -43
- package/scss/index.scss +0 -1
- package/scss/maps/_color.scss +14 -14
- package/scss/maps/_index.scss +26 -0
- package/scss/mixins/_device.scss +9 -10
- package/scss/mixins/_display.scss +52 -57
- package/scss/mixins/_guide.scss +59 -81
- package/scss/mixins/_helper.scss +74 -92
- package/scss/mixins/_index.scss +12 -14
- package/scss/mixins/_paper.scss +10 -11
- package/scss/mixins/_ratio.scss +172 -76
- package/scss/mixins/_unit.scss +33 -23
- package/scss/mixins/_view.scss +47 -54
- package/scss/{_global.scss → tags/_global.scss} +12 -11
- package/scss/tags/_index.scss +5 -6
- package/scss/tags/_unit.scss +4 -11
- package/scss/variables/_color.scss +18 -20
- package/scss/variables/_device.scss +179 -73
- package/scss/variables/_index.scss +21 -22
- package/scss/variables/_layer.scss +26 -35
- package/scss/variables/_paper.scss +1022 -241
- package/scss/variables/_ratio.scss +148 -90
- package/scss/variables/_scale.scss +141 -115
- package/scss/variables/_unit.scss +20 -35
- package/scss/variables/_view.scss +54 -57
- package/ts/AspectRatio.ts +27 -6
- package/ts/Border.ts +35 -4
- package/ts/BoxModel.ts +32 -4
- package/ts/FlexContainer.ts +36 -9
- package/ts/Grid.ts +28 -3
- package/ts/GridContainer.ts +29 -3
- package/ts/Layout.ts +37 -7
- package/ts/Position.ts +29 -4
- package/ts/Rectangle.ts +26 -3
- package/ts/ResponsiveImage.ts +22 -3
- package/ts/ResponsiveScale.ts +25 -2
- package/ts/Size.ts +25 -3
- package/ts/Spacing.ts +45 -7
- package/ts/Transform.ts +37 -4
- package/ts/Typography.ts +40 -6
- package/ts/Unit.ts +34 -10
- package/ts/Viewport.ts +31 -3
- package/ts/index.ts +1 -16
- package/scss/utilities/_guides.scss +0 -103
- package/scss/utilities/_index.scss +0 -6
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
// ============================================================================
|
|
4
4
|
|
|
5
5
|
////
|
|
6
|
-
///
|
|
6
|
+
///
|
|
7
7
|
/// Paper Variables Module
|
|
8
8
|
/// ===========================================================================
|
|
9
|
-
///
|
|
9
|
+
///
|
|
10
10
|
/// This module defines standard paper sizes, organized into various series and
|
|
11
11
|
/// categories. These sizes are stored in the `$paper_sizes` map, making them
|
|
12
12
|
/// easily accessible throughout the project for consistent layout and design.
|
|
@@ -17,13 +17,13 @@
|
|
|
17
17
|
/// @since 0.1.0 initial release
|
|
18
18
|
/// @todo None
|
|
19
19
|
/// @access public
|
|
20
|
-
///
|
|
20
|
+
///
|
|
21
21
|
/// @example
|
|
22
22
|
/// .element {
|
|
23
|
-
/// width: map-get($paper_sizes,
|
|
24
|
-
/// height: map-get($paper_sizes,
|
|
23
|
+
/// width: map-get($paper_sizes, "a4")["width"];
|
|
24
|
+
/// height: map-get($paper_sizes, "a4")["height"];
|
|
25
25
|
/// }
|
|
26
|
-
///
|
|
26
|
+
///
|
|
27
27
|
////
|
|
28
28
|
|
|
29
29
|
|
|
@@ -31,21 +31,19 @@
|
|
|
31
31
|
// Use
|
|
32
32
|
// ============================================================================
|
|
33
33
|
|
|
34
|
-
|
|
35
34
|
// ============================================================================
|
|
36
35
|
// Variables
|
|
37
36
|
// ============================================================================
|
|
38
37
|
|
|
39
|
-
|
|
40
38
|
///
|
|
41
39
|
/// Paper Size Map
|
|
42
40
|
/// ============================================================================
|
|
43
41
|
///
|
|
44
42
|
/// A map of standard paper sizes, categorized by various series.
|
|
45
|
-
///
|
|
43
|
+
///
|
|
46
44
|
/// @name $paper_sizes
|
|
47
45
|
/// @type Map
|
|
48
|
-
///
|
|
46
|
+
///
|
|
49
47
|
/// @prop {Map} q0 [width: 720.00mm, height: 1080.00mm] - Q0 paper size.
|
|
50
48
|
/// @prop {Map} q1 [width: 540.00mm, height: 720.00mm] - Q1 paper size.
|
|
51
49
|
/// @prop {Map} q2 [width: 360.00mm, height: 540.00mm] - Q2 paper size.
|
|
@@ -250,285 +248,1068 @@
|
|
|
250
248
|
/// @prop {Map} music_sheet [width: 9in, height: 12in] - Standard music sheet size.
|
|
251
249
|
/// @prop {Map} playing_card [width: 2.5in, height: 3.5in] - Standard playing card size.
|
|
252
250
|
$paper_sizes: (
|
|
253
|
-
|
|
254
251
|
// Q Series (Custom)
|
|
255
252
|
// ------------------------------------------------------------------------
|
|
256
|
-
"q0":
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
"
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
"
|
|
267
|
-
|
|
253
|
+
"q0": (
|
|
254
|
+
width: 720mm,
|
|
255
|
+
height: 1080mm,
|
|
256
|
+
),
|
|
257
|
+
// Q0
|
|
258
|
+
"q1": (
|
|
259
|
+
width: 540mm,
|
|
260
|
+
height: 720mm,
|
|
261
|
+
),
|
|
262
|
+
// Q1
|
|
263
|
+
"q2": (
|
|
264
|
+
width: 360mm,
|
|
265
|
+
height: 540mm,
|
|
266
|
+
),
|
|
267
|
+
// Q2
|
|
268
|
+
"q3": (
|
|
269
|
+
width: 270mm,
|
|
270
|
+
height: 360mm,
|
|
271
|
+
),
|
|
272
|
+
// Q3
|
|
273
|
+
"q4": (
|
|
274
|
+
width: 180mm,
|
|
275
|
+
height: 270mm,
|
|
276
|
+
),
|
|
277
|
+
// Q4
|
|
278
|
+
"q5": (
|
|
279
|
+
width: 135mm,
|
|
280
|
+
height: 180mm,
|
|
281
|
+
),
|
|
282
|
+
// Q5
|
|
283
|
+
"q6": (
|
|
284
|
+
width: 90mm,
|
|
285
|
+
height: 135mm,
|
|
286
|
+
),
|
|
287
|
+
// Q6
|
|
288
|
+
"q7": (
|
|
289
|
+
width: 62.5mm,
|
|
290
|
+
height: 90mm,
|
|
291
|
+
),
|
|
292
|
+
// Q7
|
|
293
|
+
"q8": (
|
|
294
|
+
width: 45mm,
|
|
295
|
+
height: 62.5mm,
|
|
296
|
+
),
|
|
297
|
+
// Q8
|
|
298
|
+
"q9": (
|
|
299
|
+
width: 31.25mm,
|
|
300
|
+
height: 45mm,
|
|
301
|
+
),
|
|
302
|
+
// Q9
|
|
303
|
+
"q10": (
|
|
304
|
+
width: 22.5mm,
|
|
305
|
+
height: 31.25mm,
|
|
306
|
+
),
|
|
307
|
+
// Q10
|
|
268
308
|
// ANSI Series
|
|
269
309
|
// ------------------------------------------------------------------------
|
|
270
|
-
"ansi_a":
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
310
|
+
"ansi_a": (
|
|
311
|
+
width: 8.5in,
|
|
312
|
+
height: 11in,
|
|
313
|
+
),
|
|
314
|
+
// ANSI A (Letter)
|
|
315
|
+
"ansi_b": (
|
|
316
|
+
width: 11in,
|
|
317
|
+
height: 17in,
|
|
318
|
+
),
|
|
319
|
+
// ANSI B (Ledger)
|
|
320
|
+
"ansi_c": (
|
|
321
|
+
width: 17in,
|
|
322
|
+
height: 22in,
|
|
323
|
+
),
|
|
324
|
+
// ANSI C
|
|
325
|
+
"ansi_d": (
|
|
326
|
+
width: 22in,
|
|
327
|
+
height: 34in,
|
|
328
|
+
),
|
|
329
|
+
// ANSI D
|
|
330
|
+
"ansi_e": (
|
|
331
|
+
width: 34in,
|
|
332
|
+
height: 44in,
|
|
333
|
+
),
|
|
334
|
+
// ANSI E
|
|
276
335
|
// Arch Series (Engineering Drawing Sizes)
|
|
277
336
|
// ------------------------------------------------------------------------
|
|
278
|
-
"arch_a":
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
337
|
+
"arch_a": (
|
|
338
|
+
width: 9in,
|
|
339
|
+
height: 12in,
|
|
340
|
+
),
|
|
341
|
+
// Arch A
|
|
342
|
+
"arch_b": (
|
|
343
|
+
width: 12in,
|
|
344
|
+
height: 18in,
|
|
345
|
+
),
|
|
346
|
+
// Arch B
|
|
347
|
+
"arch_c": (
|
|
348
|
+
width: 18in,
|
|
349
|
+
height: 24in,
|
|
350
|
+
),
|
|
351
|
+
// Arch C
|
|
352
|
+
"arch_d": (
|
|
353
|
+
width: 24in,
|
|
354
|
+
height: 36in,
|
|
355
|
+
),
|
|
356
|
+
// Arch D
|
|
357
|
+
"arch_e": (
|
|
358
|
+
width: 36in,
|
|
359
|
+
height: 48in,
|
|
360
|
+
),
|
|
361
|
+
// Arch E
|
|
284
362
|
// DIN A Series
|
|
285
363
|
// ------------------------------------------------------------------------
|
|
286
|
-
"din_a0":
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
"
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
"
|
|
297
|
-
|
|
364
|
+
"din_a0": (
|
|
365
|
+
width: 841mm,
|
|
366
|
+
height: 1189mm,
|
|
367
|
+
),
|
|
368
|
+
// DIN A0
|
|
369
|
+
"din_a1": (
|
|
370
|
+
width: 594mm,
|
|
371
|
+
height: 841mm,
|
|
372
|
+
),
|
|
373
|
+
// DIN A1
|
|
374
|
+
"din_a2": (
|
|
375
|
+
width: 420mm,
|
|
376
|
+
height: 594mm,
|
|
377
|
+
),
|
|
378
|
+
// DIN A2
|
|
379
|
+
"din_a3": (
|
|
380
|
+
width: 297mm,
|
|
381
|
+
height: 420mm,
|
|
382
|
+
),
|
|
383
|
+
// DIN A3
|
|
384
|
+
"din_a4": (
|
|
385
|
+
width: 210mm,
|
|
386
|
+
height: 297mm,
|
|
387
|
+
),
|
|
388
|
+
// DIN A4
|
|
389
|
+
"din_a5": (
|
|
390
|
+
width: 148mm,
|
|
391
|
+
height: 210mm,
|
|
392
|
+
),
|
|
393
|
+
// DIN A5
|
|
394
|
+
"din_a6": (
|
|
395
|
+
width: 105mm,
|
|
396
|
+
height: 148mm,
|
|
397
|
+
),
|
|
398
|
+
// DIN A6
|
|
399
|
+
"din_a7": (
|
|
400
|
+
width: 74mm,
|
|
401
|
+
height: 105mm,
|
|
402
|
+
),
|
|
403
|
+
// DIN A7
|
|
404
|
+
"din_a8": (
|
|
405
|
+
width: 52mm,
|
|
406
|
+
height: 74mm,
|
|
407
|
+
),
|
|
408
|
+
// DIN A8
|
|
409
|
+
"din_a9": (
|
|
410
|
+
width: 37mm,
|
|
411
|
+
height: 52mm,
|
|
412
|
+
),
|
|
413
|
+
// DIN A9
|
|
414
|
+
"din_a10": (
|
|
415
|
+
width: 26mm,
|
|
416
|
+
height: 37mm,
|
|
417
|
+
),
|
|
418
|
+
// DIN A10
|
|
298
419
|
// ISO A Series
|
|
299
420
|
// ------------------------------------------------------------------------
|
|
300
|
-
"iso_a0":
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
"
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
"
|
|
311
|
-
|
|
421
|
+
"iso_a0": (
|
|
422
|
+
width: 841mm,
|
|
423
|
+
height: 1189mm,
|
|
424
|
+
),
|
|
425
|
+
// ISO A0
|
|
426
|
+
"iso_a1": (
|
|
427
|
+
width: 594mm,
|
|
428
|
+
height: 841mm,
|
|
429
|
+
),
|
|
430
|
+
// ISO A1
|
|
431
|
+
"iso_a2": (
|
|
432
|
+
width: 420mm,
|
|
433
|
+
height: 594mm,
|
|
434
|
+
),
|
|
435
|
+
// ISO A2
|
|
436
|
+
"iso_a3": (
|
|
437
|
+
width: 297mm,
|
|
438
|
+
height: 420mm,
|
|
439
|
+
),
|
|
440
|
+
// ISO A3
|
|
441
|
+
"iso_a4": (
|
|
442
|
+
width: 210mm,
|
|
443
|
+
height: 297mm,
|
|
444
|
+
),
|
|
445
|
+
// ISO A4
|
|
446
|
+
"iso_a5": (
|
|
447
|
+
width: 148mm,
|
|
448
|
+
height: 210mm,
|
|
449
|
+
),
|
|
450
|
+
// ISO A5
|
|
451
|
+
"iso_a6": (
|
|
452
|
+
width: 105mm,
|
|
453
|
+
height: 148mm,
|
|
454
|
+
),
|
|
455
|
+
// ISO A6
|
|
456
|
+
"iso_a7": (
|
|
457
|
+
width: 74mm,
|
|
458
|
+
height: 105mm,
|
|
459
|
+
),
|
|
460
|
+
// ISO A7
|
|
461
|
+
"iso_a8": (
|
|
462
|
+
width: 52mm,
|
|
463
|
+
height: 74mm,
|
|
464
|
+
),
|
|
465
|
+
// ISO A8
|
|
466
|
+
"iso_a9": (
|
|
467
|
+
width: 37mm,
|
|
468
|
+
height: 52mm,
|
|
469
|
+
),
|
|
470
|
+
// ISO A9
|
|
471
|
+
"iso_a10": (
|
|
472
|
+
width: 26mm,
|
|
473
|
+
height: 37mm,
|
|
474
|
+
),
|
|
475
|
+
// ISO A10
|
|
312
476
|
// ISO B Series
|
|
313
477
|
// ------------------------------------------------------------------------
|
|
314
|
-
"iso_b0":
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
"
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
"
|
|
325
|
-
|
|
478
|
+
"iso_b0": (
|
|
479
|
+
width: 1000mm,
|
|
480
|
+
height: 1414mm,
|
|
481
|
+
),
|
|
482
|
+
// ISO B0
|
|
483
|
+
"iso_b1": (
|
|
484
|
+
width: 707mm,
|
|
485
|
+
height: 1000mm,
|
|
486
|
+
),
|
|
487
|
+
// ISO B1
|
|
488
|
+
"iso_b2": (
|
|
489
|
+
width: 500mm,
|
|
490
|
+
height: 707mm,
|
|
491
|
+
),
|
|
492
|
+
// ISO B2
|
|
493
|
+
"iso_b3": (
|
|
494
|
+
width: 353mm,
|
|
495
|
+
height: 500mm,
|
|
496
|
+
),
|
|
497
|
+
// ISO B3
|
|
498
|
+
"iso_b4": (
|
|
499
|
+
width: 250mm,
|
|
500
|
+
height: 353mm,
|
|
501
|
+
),
|
|
502
|
+
// ISO B4
|
|
503
|
+
"iso_b5": (
|
|
504
|
+
width: 176mm,
|
|
505
|
+
height: 250mm,
|
|
506
|
+
),
|
|
507
|
+
// ISO B5
|
|
508
|
+
"iso_b6": (
|
|
509
|
+
width: 125mm,
|
|
510
|
+
height: 176mm,
|
|
511
|
+
),
|
|
512
|
+
// ISO B6
|
|
513
|
+
"iso_b7": (
|
|
514
|
+
width: 88mm,
|
|
515
|
+
height: 125mm,
|
|
516
|
+
),
|
|
517
|
+
// ISO B7
|
|
518
|
+
"iso_b8": (
|
|
519
|
+
width: 62mm,
|
|
520
|
+
height: 88mm,
|
|
521
|
+
),
|
|
522
|
+
// ISO B8
|
|
523
|
+
"iso_b9": (
|
|
524
|
+
width: 44mm,
|
|
525
|
+
height: 62mm,
|
|
526
|
+
),
|
|
527
|
+
// ISO B9
|
|
528
|
+
"iso_b10": (
|
|
529
|
+
width: 31mm,
|
|
530
|
+
height: 44mm,
|
|
531
|
+
),
|
|
532
|
+
// ISO B10
|
|
326
533
|
// ISO C Series (International Envelope Sizes)
|
|
327
534
|
// ------------------------------------------------------------------------
|
|
328
|
-
"iso_c0":
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
"
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
"
|
|
339
|
-
|
|
535
|
+
"iso_c0": (
|
|
536
|
+
width: 917mm,
|
|
537
|
+
height: 1297mm,
|
|
538
|
+
),
|
|
539
|
+
// ISO C0
|
|
540
|
+
"iso_c1": (
|
|
541
|
+
width: 648mm,
|
|
542
|
+
height: 917mm,
|
|
543
|
+
),
|
|
544
|
+
// ISO C1
|
|
545
|
+
"iso_c2": (
|
|
546
|
+
width: 458mm,
|
|
547
|
+
height: 648mm,
|
|
548
|
+
),
|
|
549
|
+
// ISO C2
|
|
550
|
+
"iso_c3": (
|
|
551
|
+
width: 324mm,
|
|
552
|
+
height: 458mm,
|
|
553
|
+
),
|
|
554
|
+
// ISO C3
|
|
555
|
+
"iso_c4": (
|
|
556
|
+
width: 229mm,
|
|
557
|
+
height: 324mm,
|
|
558
|
+
),
|
|
559
|
+
// ISO C4
|
|
560
|
+
"iso_c5": (
|
|
561
|
+
width: 162mm,
|
|
562
|
+
height: 229mm,
|
|
563
|
+
),
|
|
564
|
+
// ISO C5
|
|
565
|
+
"iso_c6": (
|
|
566
|
+
width: 114mm,
|
|
567
|
+
height: 162mm,
|
|
568
|
+
),
|
|
569
|
+
// ISO C6
|
|
570
|
+
"iso_c7": (
|
|
571
|
+
width: 81mm,
|
|
572
|
+
height: 114mm,
|
|
573
|
+
),
|
|
574
|
+
// ISO C7
|
|
575
|
+
"iso_c8": (
|
|
576
|
+
width: 57mm,
|
|
577
|
+
height: 81mm,
|
|
578
|
+
),
|
|
579
|
+
// ISO C8
|
|
580
|
+
"iso_c9": (
|
|
581
|
+
width: 40mm,
|
|
582
|
+
height: 57mm,
|
|
583
|
+
),
|
|
584
|
+
// ISO C9
|
|
585
|
+
"iso_c10": (
|
|
586
|
+
width: 28mm,
|
|
587
|
+
height: 40mm,
|
|
588
|
+
),
|
|
589
|
+
// ISO C10
|
|
340
590
|
// ISO RA Series (ISO 217:2013)
|
|
341
591
|
// ------------------------------------------------------------------------
|
|
342
|
-
"iso_ra0":
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
592
|
+
"iso_ra0": (
|
|
593
|
+
width: 860mm,
|
|
594
|
+
height: 1220mm,
|
|
595
|
+
),
|
|
596
|
+
// ISO RA0
|
|
597
|
+
"iso_ra1": (
|
|
598
|
+
width: 610mm,
|
|
599
|
+
height: 860mm,
|
|
600
|
+
),
|
|
601
|
+
// ISO RA1
|
|
602
|
+
"iso_ra2": (
|
|
603
|
+
width: 430mm,
|
|
604
|
+
height: 610mm,
|
|
605
|
+
),
|
|
606
|
+
// ISO RA2
|
|
607
|
+
"iso_ra3": (
|
|
608
|
+
width: 305mm,
|
|
609
|
+
height: 430mm,
|
|
610
|
+
),
|
|
611
|
+
// ISO RA3
|
|
612
|
+
"iso_ra4": (
|
|
613
|
+
width: 215mm,
|
|
614
|
+
height: 305mm,
|
|
615
|
+
),
|
|
616
|
+
// ISO RA4
|
|
348
617
|
// ISO SRA Series (ISO 217:2013)
|
|
349
618
|
// ------------------------------------------------------------------------
|
|
350
|
-
"iso_sra0":
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
619
|
+
"iso_sra0": (
|
|
620
|
+
width: 900mm,
|
|
621
|
+
height: 1280mm,
|
|
622
|
+
),
|
|
623
|
+
// ISO SRA0
|
|
624
|
+
"iso_sra1": (
|
|
625
|
+
width: 640mm,
|
|
626
|
+
height: 900mm,
|
|
627
|
+
),
|
|
628
|
+
// ISO SRA1
|
|
629
|
+
"iso_sra2": (
|
|
630
|
+
width: 450mm,
|
|
631
|
+
height: 640mm,
|
|
632
|
+
),
|
|
633
|
+
// ISO SRA2
|
|
634
|
+
"iso_sra3": (
|
|
635
|
+
width: 320mm,
|
|
636
|
+
height: 450mm,
|
|
637
|
+
),
|
|
638
|
+
// ISO SRA3
|
|
639
|
+
"iso_sra4": (
|
|
640
|
+
width: 225mm,
|
|
641
|
+
height: 320mm,
|
|
642
|
+
),
|
|
643
|
+
// ISO SRA4
|
|
356
644
|
// JIS A Series
|
|
357
645
|
// ------------------------------------------------------------------------
|
|
358
|
-
"jis_a0":
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
"
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
"
|
|
369
|
-
|
|
646
|
+
"jis_a0": (
|
|
647
|
+
width: 841mm,
|
|
648
|
+
height: 1189mm,
|
|
649
|
+
),
|
|
650
|
+
// JIS A0
|
|
651
|
+
"jis_a1": (
|
|
652
|
+
width: 594mm,
|
|
653
|
+
height: 841mm,
|
|
654
|
+
),
|
|
655
|
+
// JIS A1
|
|
656
|
+
"jis_a2": (
|
|
657
|
+
width: 420mm,
|
|
658
|
+
height: 594mm,
|
|
659
|
+
),
|
|
660
|
+
// JIS A2
|
|
661
|
+
"jis_a3": (
|
|
662
|
+
width: 297mm,
|
|
663
|
+
height: 420mm,
|
|
664
|
+
),
|
|
665
|
+
// JIS A3
|
|
666
|
+
"jis_a4": (
|
|
667
|
+
width: 210mm,
|
|
668
|
+
height: 297mm,
|
|
669
|
+
),
|
|
670
|
+
// JIS A4
|
|
671
|
+
"jis_a5": (
|
|
672
|
+
width: 148mm,
|
|
673
|
+
height: 210mm,
|
|
674
|
+
),
|
|
675
|
+
// JIS A5
|
|
676
|
+
"jis_a6": (
|
|
677
|
+
width: 105mm,
|
|
678
|
+
height: 148mm,
|
|
679
|
+
),
|
|
680
|
+
// JIS A6
|
|
681
|
+
"jis_a7": (
|
|
682
|
+
width: 74mm,
|
|
683
|
+
height: 105mm,
|
|
684
|
+
),
|
|
685
|
+
// JIS A7
|
|
686
|
+
"jis_a8": (
|
|
687
|
+
width: 52mm,
|
|
688
|
+
height: 74mm,
|
|
689
|
+
),
|
|
690
|
+
// JIS A8
|
|
691
|
+
"jis_a9": (
|
|
692
|
+
width: 37mm,
|
|
693
|
+
height: 52mm,
|
|
694
|
+
),
|
|
695
|
+
// JIS A9
|
|
696
|
+
"jis_a10": (
|
|
697
|
+
width: 26mm,
|
|
698
|
+
height: 37mm,
|
|
699
|
+
),
|
|
700
|
+
// JIS A10
|
|
370
701
|
// JIS B Series
|
|
371
702
|
// ------------------------------------------------------------------------
|
|
372
|
-
"jis_b0":
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
"
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
"
|
|
383
|
-
|
|
703
|
+
"jis_b0": (
|
|
704
|
+
width: 1030mm,
|
|
705
|
+
height: 1456mm,
|
|
706
|
+
),
|
|
707
|
+
// JIS B0
|
|
708
|
+
"jis_b1": (
|
|
709
|
+
width: 728mm,
|
|
710
|
+
height: 1030mm,
|
|
711
|
+
),
|
|
712
|
+
// JIS B1
|
|
713
|
+
"jis_b2": (
|
|
714
|
+
width: 515mm,
|
|
715
|
+
height: 728mm,
|
|
716
|
+
),
|
|
717
|
+
// JIS B2
|
|
718
|
+
"jis_b3": (
|
|
719
|
+
width: 364mm,
|
|
720
|
+
height: 515mm,
|
|
721
|
+
),
|
|
722
|
+
// JIS B3
|
|
723
|
+
"jis_b4": (
|
|
724
|
+
width: 257mm,
|
|
725
|
+
height: 364mm,
|
|
726
|
+
),
|
|
727
|
+
// JIS B4
|
|
728
|
+
"jis_b5": (
|
|
729
|
+
width: 182mm,
|
|
730
|
+
height: 257mm,
|
|
731
|
+
),
|
|
732
|
+
// JIS B5
|
|
733
|
+
"jis_b6": (
|
|
734
|
+
width: 128mm,
|
|
735
|
+
height: 182mm,
|
|
736
|
+
),
|
|
737
|
+
// JIS B6
|
|
738
|
+
"jis_b7": (
|
|
739
|
+
width: 91mm,
|
|
740
|
+
height: 128mm,
|
|
741
|
+
),
|
|
742
|
+
// JIS B7
|
|
743
|
+
"jis_b8": (
|
|
744
|
+
width: 64mm,
|
|
745
|
+
height: 91mm,
|
|
746
|
+
),
|
|
747
|
+
// JIS B8
|
|
748
|
+
"jis_b9": (
|
|
749
|
+
width: 45mm,
|
|
750
|
+
height: 64mm,
|
|
751
|
+
),
|
|
752
|
+
// JIS B9
|
|
753
|
+
"jis_b10": (
|
|
754
|
+
width: 32mm,
|
|
755
|
+
height: 45mm,
|
|
756
|
+
),
|
|
757
|
+
// JIS B10
|
|
384
758
|
// JIS C Series
|
|
385
759
|
// ------------------------------------------------------------------------
|
|
386
|
-
"jis_c0":
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
"
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
"
|
|
397
|
-
|
|
760
|
+
"jis_c0": (
|
|
761
|
+
width: 917mm,
|
|
762
|
+
height: 1297mm,
|
|
763
|
+
),
|
|
764
|
+
// JIS C0
|
|
765
|
+
"jis_c1": (
|
|
766
|
+
width: 648mm,
|
|
767
|
+
height: 917mm,
|
|
768
|
+
),
|
|
769
|
+
// JIS C1
|
|
770
|
+
"jis_c2": (
|
|
771
|
+
width: 458mm,
|
|
772
|
+
height: 648mm,
|
|
773
|
+
),
|
|
774
|
+
// JIS C2
|
|
775
|
+
"jis_c3": (
|
|
776
|
+
width: 324mm,
|
|
777
|
+
height: 458mm,
|
|
778
|
+
),
|
|
779
|
+
// JIS C3
|
|
780
|
+
"jis_c4": (
|
|
781
|
+
width: 229mm,
|
|
782
|
+
height: 324mm,
|
|
783
|
+
),
|
|
784
|
+
// JIS C4
|
|
785
|
+
"jis_c5": (
|
|
786
|
+
width: 162mm,
|
|
787
|
+
height: 229mm,
|
|
788
|
+
),
|
|
789
|
+
// JIS C5
|
|
790
|
+
"jis_c6": (
|
|
791
|
+
width: 114mm,
|
|
792
|
+
height: 162mm,
|
|
793
|
+
),
|
|
794
|
+
// JIS C6
|
|
795
|
+
"jis_c7": (
|
|
796
|
+
width: 81mm,
|
|
797
|
+
height: 114mm,
|
|
798
|
+
),
|
|
799
|
+
// JIS C7
|
|
800
|
+
"jis_c8": (
|
|
801
|
+
width: 57mm,
|
|
802
|
+
height: 81mm,
|
|
803
|
+
),
|
|
804
|
+
// JIS C8
|
|
805
|
+
"jis_c9": (
|
|
806
|
+
width: 40mm,
|
|
807
|
+
height: 57mm,
|
|
808
|
+
),
|
|
809
|
+
// JIS C9
|
|
810
|
+
"jis_c10": (
|
|
811
|
+
width: 28mm,
|
|
812
|
+
height: 40mm,
|
|
813
|
+
),
|
|
814
|
+
// JIS C10
|
|
398
815
|
// PA (Alternate) Series
|
|
399
816
|
// ------------------------------------------------------------------------
|
|
400
|
-
"pa0":
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
"
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
"
|
|
411
|
-
|
|
817
|
+
"pa0": (
|
|
818
|
+
width: 840mm,
|
|
819
|
+
height: 1120mm,
|
|
820
|
+
),
|
|
821
|
+
// PA0
|
|
822
|
+
"pa1": (
|
|
823
|
+
width: 560mm,
|
|
824
|
+
height: 840mm,
|
|
825
|
+
),
|
|
826
|
+
// PA1
|
|
827
|
+
"pa2": (
|
|
828
|
+
width: 420mm,
|
|
829
|
+
height: 560mm,
|
|
830
|
+
),
|
|
831
|
+
// PA2
|
|
832
|
+
"pa3": (
|
|
833
|
+
width: 280mm,
|
|
834
|
+
height: 420mm,
|
|
835
|
+
),
|
|
836
|
+
// PA3
|
|
837
|
+
"pa4": (
|
|
838
|
+
width: 210mm,
|
|
839
|
+
height: 280mm,
|
|
840
|
+
),
|
|
841
|
+
// PA4
|
|
842
|
+
"pa5": (
|
|
843
|
+
width: 140mm,
|
|
844
|
+
height: 210mm,
|
|
845
|
+
),
|
|
846
|
+
// PA5
|
|
847
|
+
"pa6": (
|
|
848
|
+
width: 105mm,
|
|
849
|
+
height: 140mm,
|
|
850
|
+
),
|
|
851
|
+
// PA6
|
|
852
|
+
"pa7": (
|
|
853
|
+
width: 70mm,
|
|
854
|
+
height: 105mm,
|
|
855
|
+
),
|
|
856
|
+
// PA7
|
|
857
|
+
"pa8": (
|
|
858
|
+
width: 52mm,
|
|
859
|
+
height: 70mm,
|
|
860
|
+
),
|
|
861
|
+
// PA8
|
|
862
|
+
"pa9": (
|
|
863
|
+
width: 35mm,
|
|
864
|
+
height: 52mm,
|
|
865
|
+
),
|
|
866
|
+
// PA9
|
|
867
|
+
"pa10": (
|
|
868
|
+
width: 26mm,
|
|
869
|
+
height: 35mm,
|
|
870
|
+
),
|
|
871
|
+
// PA10
|
|
412
872
|
// Photographic Paper Sizes (ISO 1008)
|
|
413
873
|
// ------------------------------------------------------------------------
|
|
414
|
-
"photo_3x3":
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
"
|
|
420
|
-
|
|
874
|
+
"photo_3x3": (
|
|
875
|
+
width: 3in,
|
|
876
|
+
height: 3in,
|
|
877
|
+
),
|
|
878
|
+
// 3" x 3"
|
|
879
|
+
"photo_4x5": (
|
|
880
|
+
width: 4in,
|
|
881
|
+
height: 5in,
|
|
882
|
+
),
|
|
883
|
+
// 4" x 5"
|
|
884
|
+
"photo_5x7": (
|
|
885
|
+
width: 5in,
|
|
886
|
+
height: 7in,
|
|
887
|
+
),
|
|
888
|
+
// 5" x 7"
|
|
889
|
+
"photo_8x10": (
|
|
890
|
+
width: 8in,
|
|
891
|
+
height: 10in,
|
|
892
|
+
),
|
|
893
|
+
// 8" x 10"
|
|
894
|
+
"photo_10x12": (
|
|
895
|
+
width: 10in,
|
|
896
|
+
height: 12in,
|
|
897
|
+
),
|
|
898
|
+
// 10" x 12"
|
|
899
|
+
"photo_16x20": (
|
|
900
|
+
width: 16in,
|
|
901
|
+
height: 20in,
|
|
902
|
+
),
|
|
903
|
+
// 16" x 20"
|
|
421
904
|
// Photographic Paper Sizes (US)
|
|
422
905
|
// ------------------------------------------------------------------------
|
|
423
|
-
"photo_2r":
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
"
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
"
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
"
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
"
|
|
444
|
-
|
|
445
|
-
|
|
906
|
+
"photo_2r": (
|
|
907
|
+
width: 2.5in,
|
|
908
|
+
height: 3.5in,
|
|
909
|
+
),
|
|
910
|
+
// 2R (Wallet)
|
|
911
|
+
"photo_3r": (
|
|
912
|
+
width: 3.5in,
|
|
913
|
+
height: 5in,
|
|
914
|
+
),
|
|
915
|
+
// 3R
|
|
916
|
+
"photo_4r": (
|
|
917
|
+
width: 4in,
|
|
918
|
+
height: 6in,
|
|
919
|
+
),
|
|
920
|
+
// 4R
|
|
921
|
+
"photo_5r": (
|
|
922
|
+
width: 5in,
|
|
923
|
+
height: 7in,
|
|
924
|
+
),
|
|
925
|
+
// 5R
|
|
926
|
+
"photo_6r": (
|
|
927
|
+
width: 6in,
|
|
928
|
+
height: 8in,
|
|
929
|
+
),
|
|
930
|
+
// 6R
|
|
931
|
+
"photo_8r": (
|
|
932
|
+
width: 8in,
|
|
933
|
+
height: 10in,
|
|
934
|
+
),
|
|
935
|
+
// 8R
|
|
936
|
+
"photo_8r_plus": (
|
|
937
|
+
width: 8in,
|
|
938
|
+
height: 12in,
|
|
939
|
+
),
|
|
940
|
+
// 8R+
|
|
941
|
+
"photo_10r": (
|
|
942
|
+
width: 10in,
|
|
943
|
+
height: 12in,
|
|
944
|
+
),
|
|
945
|
+
// 10R
|
|
946
|
+
"photo_10r_plus": (
|
|
947
|
+
width: 10in,
|
|
948
|
+
height: 15in,
|
|
949
|
+
),
|
|
950
|
+
// 10R+
|
|
951
|
+
"photo_11r": (
|
|
952
|
+
width: 11in,
|
|
953
|
+
height: 14in,
|
|
954
|
+
),
|
|
955
|
+
// 11R
|
|
956
|
+
"photo_11r_plus": (
|
|
957
|
+
width: 11in,
|
|
958
|
+
height: 17in,
|
|
959
|
+
),
|
|
960
|
+
// 11R+
|
|
961
|
+
"photo_12r": (
|
|
962
|
+
width: 12in,
|
|
963
|
+
height: 15in,
|
|
964
|
+
),
|
|
965
|
+
// 12R
|
|
966
|
+
"photo_12r_plus": (
|
|
967
|
+
width: 12in,
|
|
968
|
+
height: 18in,
|
|
969
|
+
),
|
|
970
|
+
// 12R+
|
|
971
|
+
"photo_14r": (
|
|
972
|
+
width: 14in,
|
|
973
|
+
height: 17in,
|
|
974
|
+
),
|
|
975
|
+
// 14R
|
|
976
|
+
"photo_16r": (
|
|
977
|
+
width: 16in,
|
|
978
|
+
height: 20in,
|
|
979
|
+
),
|
|
980
|
+
// 16R
|
|
981
|
+
"photo_16r_plus": (
|
|
982
|
+
width: 16in,
|
|
983
|
+
height: 24in,
|
|
984
|
+
),
|
|
985
|
+
// 16R+
|
|
986
|
+
"photo_20r": (
|
|
987
|
+
width: 20in,
|
|
988
|
+
height: 24in,
|
|
989
|
+
),
|
|
990
|
+
// 20R
|
|
991
|
+
"photo_20r_plus": (
|
|
992
|
+
width: 20in,
|
|
993
|
+
height: 28in,
|
|
994
|
+
),
|
|
995
|
+
// 20R+
|
|
996
|
+
"photo_22r": (
|
|
997
|
+
width: 20in,
|
|
998
|
+
height: 29.5in,
|
|
999
|
+
),
|
|
1000
|
+
// 22R
|
|
1001
|
+
"photo_24r": (
|
|
1002
|
+
width: 24in,
|
|
1003
|
+
height: 31.5in,
|
|
1004
|
+
),
|
|
1005
|
+
// 24R
|
|
1006
|
+
"photo_24r_plus": (
|
|
1007
|
+
width: 24in,
|
|
1008
|
+
height: 35.5in,
|
|
1009
|
+
),
|
|
1010
|
+
// 24R+
|
|
1011
|
+
"photo_30r": (
|
|
1012
|
+
width: 30in,
|
|
1013
|
+
height: 40in,
|
|
1014
|
+
),
|
|
1015
|
+
// 30R
|
|
446
1016
|
// US Paper Sizes
|
|
447
1017
|
// ------------------------------------------------------------------------
|
|
448
|
-
"us_letter":
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
"
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
"
|
|
459
|
-
|
|
1018
|
+
"us_letter": (
|
|
1019
|
+
width: 8.5in,
|
|
1020
|
+
height: 11in,
|
|
1021
|
+
),
|
|
1022
|
+
// US Letter
|
|
1023
|
+
"us_legal": (
|
|
1024
|
+
width: 8.5in,
|
|
1025
|
+
height: 14in,
|
|
1026
|
+
),
|
|
1027
|
+
// US Legal
|
|
1028
|
+
"us_ledger": (
|
|
1029
|
+
width: 11in,
|
|
1030
|
+
height: 17in,
|
|
1031
|
+
),
|
|
1032
|
+
// US Ledger/Tabloid
|
|
1033
|
+
"us_junior": (
|
|
1034
|
+
width: 5in,
|
|
1035
|
+
height: 8in,
|
|
1036
|
+
),
|
|
1037
|
+
// US Junior Legal
|
|
1038
|
+
"us_half_letter": (
|
|
1039
|
+
width: 5.5in,
|
|
1040
|
+
height: 8.5in,
|
|
1041
|
+
),
|
|
1042
|
+
// US Half Letter
|
|
1043
|
+
"us_government_letter": (
|
|
1044
|
+
width: 8in,
|
|
1045
|
+
height: 10.5in,
|
|
1046
|
+
),
|
|
1047
|
+
// US Government Letter
|
|
1048
|
+
"us_executive": (
|
|
1049
|
+
width: 7.25in,
|
|
1050
|
+
height: 10.5in,
|
|
1051
|
+
),
|
|
1052
|
+
// US Executive
|
|
1053
|
+
"us_statement": (
|
|
1054
|
+
width: 5.5in,
|
|
1055
|
+
height: 8.5in,
|
|
1056
|
+
),
|
|
1057
|
+
// US Statement
|
|
1058
|
+
"us_folio": (
|
|
1059
|
+
width: 8.5in,
|
|
1060
|
+
height: 13in,
|
|
1061
|
+
),
|
|
1062
|
+
// US Folio
|
|
1063
|
+
"us_quarto": (
|
|
1064
|
+
width: 8in,
|
|
1065
|
+
height: 10in,
|
|
1066
|
+
),
|
|
1067
|
+
// US Quarto
|
|
1068
|
+
"us_tabloid_extra": (
|
|
1069
|
+
width: 12in,
|
|
1070
|
+
height: 18in,
|
|
1071
|
+
),
|
|
1072
|
+
// US Tabloid Extra
|
|
460
1073
|
// US Poster Sizes
|
|
461
1074
|
// ------------------------------------------------------------------------
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
1075
|
+
"poster_small": (
|
|
1076
|
+
width: 11in,
|
|
1077
|
+
height: 17in,
|
|
1078
|
+
),
|
|
1079
|
+
// Small Poster
|
|
1080
|
+
"poster_medium": (
|
|
1081
|
+
width: 18in,
|
|
1082
|
+
height: 24in,
|
|
1083
|
+
),
|
|
1084
|
+
// Medium Poster
|
|
1085
|
+
"poster_large": (
|
|
1086
|
+
width: 24in,
|
|
1087
|
+
height: 36in,
|
|
1088
|
+
),
|
|
1089
|
+
// Large Poster
|
|
1090
|
+
"poster_movie": (
|
|
1091
|
+
width: 27in,
|
|
1092
|
+
height: 40in,
|
|
1093
|
+
),
|
|
1094
|
+
// Movie Poster
|
|
1095
|
+
"poster_xlarge": (
|
|
1096
|
+
width: 36in,
|
|
1097
|
+
height: 48in,
|
|
1098
|
+
),
|
|
1099
|
+
// Extra Large Poster
|
|
468
1100
|
// Art Canvas Sizes
|
|
469
1101
|
// ------------------------------------------------------------------------
|
|
470
|
-
"canvas_8x10":
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
"
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
"
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
"
|
|
486
|
-
|
|
487
|
-
|
|
1102
|
+
"canvas_8x10": (
|
|
1103
|
+
width: 8in,
|
|
1104
|
+
height: 10in,
|
|
1105
|
+
),
|
|
1106
|
+
// 8" x 10" (4:5 ratio)
|
|
1107
|
+
"canvas_10x14": (
|
|
1108
|
+
width: 10in,
|
|
1109
|
+
height: 14in,
|
|
1110
|
+
),
|
|
1111
|
+
// 10" x 14"
|
|
1112
|
+
"canvas_10x24": (
|
|
1113
|
+
width: 10in,
|
|
1114
|
+
height: 24in,
|
|
1115
|
+
),
|
|
1116
|
+
// 10" x 24" (5:12 ratio)
|
|
1117
|
+
"canvas_12x12": (
|
|
1118
|
+
width: 12in,
|
|
1119
|
+
height: 12in,
|
|
1120
|
+
),
|
|
1121
|
+
// 12" x 12" (1:1 ratio)
|
|
1122
|
+
"canvas_12x36": (
|
|
1123
|
+
width: 12in,
|
|
1124
|
+
height: 36in,
|
|
1125
|
+
),
|
|
1126
|
+
// 12" x 36" (1:3 ratio)
|
|
1127
|
+
"canvas_16x16": (
|
|
1128
|
+
width: 16in,
|
|
1129
|
+
height: 16in,
|
|
1130
|
+
),
|
|
1131
|
+
// 16" x 16" (1:1 ratio)
|
|
1132
|
+
"canvas_16x20": (
|
|
1133
|
+
width: 16in,
|
|
1134
|
+
height: 20in,
|
|
1135
|
+
),
|
|
1136
|
+
// 16" x 20" (4:5 ratio)
|
|
1137
|
+
"canvas_18x24": (
|
|
1138
|
+
width: 18in,
|
|
1139
|
+
height: 24in,
|
|
1140
|
+
),
|
|
1141
|
+
// 18" x 24" (3:4 ratio)
|
|
1142
|
+
"canvas_20x30": (
|
|
1143
|
+
width: 20in,
|
|
1144
|
+
height: 30in,
|
|
1145
|
+
),
|
|
1146
|
+
// 20" x 30" (2:3 ratio)
|
|
1147
|
+
"canvas_20x60": (
|
|
1148
|
+
width: 20in,
|
|
1149
|
+
height: 60in,
|
|
1150
|
+
),
|
|
1151
|
+
// 20" x 60" (1:3 ratio)
|
|
1152
|
+
"canvas_24x36": (
|
|
1153
|
+
width: 24in,
|
|
1154
|
+
height: 36in,
|
|
1155
|
+
),
|
|
1156
|
+
// 24" x 36" (2:3 ratio)
|
|
1157
|
+
"canvas_30x40": (
|
|
1158
|
+
width: 30in,
|
|
1159
|
+
height: 40in,
|
|
1160
|
+
),
|
|
1161
|
+
// 30" x 40" (3:4 ratio)
|
|
1162
|
+
"canvas_30x90": (
|
|
1163
|
+
width: 30in,
|
|
1164
|
+
height: 90in,
|
|
1165
|
+
),
|
|
1166
|
+
// 30" x 90" (1:3 ratio)
|
|
1167
|
+
"canvas_36x48": (
|
|
1168
|
+
width: 36in,
|
|
1169
|
+
height: 48in,
|
|
1170
|
+
),
|
|
1171
|
+
// 36" x 48" (3:4 ratio)
|
|
1172
|
+
"canvas_40x40": (
|
|
1173
|
+
width: 40in,
|
|
1174
|
+
height: 40in,
|
|
1175
|
+
),
|
|
1176
|
+
// 40" x 40" (1:1 ratio)
|
|
1177
|
+
"canvas_40x60": (
|
|
1178
|
+
width: 40in,
|
|
1179
|
+
height: 60in,
|
|
1180
|
+
),
|
|
1181
|
+
// 40" x 60" (2:3 ratio)
|
|
1182
|
+
"canvas_48x72": (
|
|
1183
|
+
width: 48in,
|
|
1184
|
+
height: 72in,
|
|
1185
|
+
),
|
|
1186
|
+
// 48" x 72" (2:3 ratio)
|
|
488
1187
|
// Book Sizes (Common in Publishing)
|
|
489
1188
|
// ------------------------------------------------------------------------
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
1189
|
+
"book_small": (
|
|
1190
|
+
width: 5in,
|
|
1191
|
+
height: 8in,
|
|
1192
|
+
),
|
|
1193
|
+
// Small Book
|
|
1194
|
+
"book_medium": (
|
|
1195
|
+
width: 6in,
|
|
1196
|
+
height: 9in,
|
|
1197
|
+
),
|
|
1198
|
+
// Medium Book
|
|
1199
|
+
"book_large": (
|
|
1200
|
+
width: 7in,
|
|
1201
|
+
height: 10in,
|
|
1202
|
+
),
|
|
1203
|
+
// Large Book
|
|
1204
|
+
"book_collectors": (
|
|
1205
|
+
width: 9in,
|
|
1206
|
+
height: 12in,
|
|
1207
|
+
),
|
|
1208
|
+
// Collectors Edition Book
|
|
1209
|
+
"book_coffee_table": (
|
|
1210
|
+
width: 12in,
|
|
1211
|
+
height: 15in,
|
|
1212
|
+
),
|
|
1213
|
+
// Coffee Table Book
|
|
496
1214
|
// Business Card Standard Sizes
|
|
497
1215
|
// ------------------------------------------------------------------------
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
1216
|
+
"business_card_us": (
|
|
1217
|
+
width: 3.5in,
|
|
1218
|
+
height: 2in,
|
|
1219
|
+
),
|
|
1220
|
+
// US Standard Business Card
|
|
1221
|
+
"business_card_eu": (
|
|
1222
|
+
width: 85mm,
|
|
1223
|
+
height: 55mm,
|
|
1224
|
+
),
|
|
1225
|
+
// EU Standard Business Card
|
|
1226
|
+
"business_card_iso": (
|
|
1227
|
+
width: 90mm,
|
|
1228
|
+
height: 55mm,
|
|
1229
|
+
),
|
|
1230
|
+
// ISO Standard Business Card
|
|
502
1231
|
// Index Card Sizes
|
|
503
1232
|
// ------------------------------------------------------------------------
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
1233
|
+
"index_card_3x5": (
|
|
1234
|
+
width: 3in,
|
|
1235
|
+
height: 5in,
|
|
1236
|
+
),
|
|
1237
|
+
// 3" x 5" Index Card
|
|
1238
|
+
"index_card_4x6": (
|
|
1239
|
+
width: 4in,
|
|
1240
|
+
height: 6in,
|
|
1241
|
+
),
|
|
1242
|
+
// 4" x 6" Index Card
|
|
1243
|
+
"index_card_5x8": (
|
|
1244
|
+
width: 5in,
|
|
1245
|
+
height: 8in,
|
|
1246
|
+
),
|
|
1247
|
+
// 5" x 8" Index Card
|
|
508
1248
|
// Commercial Printing Sizes
|
|
509
1249
|
// ------------------------------------------------------------------------
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
1250
|
+
"brochure_8x10": (
|
|
1251
|
+
width: 8in,
|
|
1252
|
+
height: 10in,
|
|
1253
|
+
),
|
|
1254
|
+
// 8" x 10" Brochure
|
|
1255
|
+
"brochure_11x17": (
|
|
1256
|
+
width: 11in,
|
|
1257
|
+
height: 17in,
|
|
1258
|
+
),
|
|
1259
|
+
// 11" x 17" Brochure
|
|
513
1260
|
// Advertising Flyer Sizes
|
|
514
1261
|
// ------------------------------------------------------------------------
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
1262
|
+
"flyer_small": (
|
|
1263
|
+
width: 4.25in,
|
|
1264
|
+
height: 5.5in,
|
|
1265
|
+
),
|
|
1266
|
+
// Small Flyer
|
|
1267
|
+
"flyer_medium": (
|
|
1268
|
+
width: 5.5in,
|
|
1269
|
+
height: 8.5in,
|
|
1270
|
+
),
|
|
1271
|
+
// Medium Flyer
|
|
1272
|
+
"flyer_large": (
|
|
1273
|
+
width: 8.5in,
|
|
1274
|
+
height: 11in,
|
|
1275
|
+
),
|
|
1276
|
+
// Large Flyer
|
|
520
1277
|
// Academic Paper Sizes
|
|
521
1278
|
// ------------------------------------------------------------------------
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
1279
|
+
"journal_standard": (
|
|
1280
|
+
width: 6in,
|
|
1281
|
+
height: 9in,
|
|
1282
|
+
),
|
|
1283
|
+
// Standard Academic Journal
|
|
1284
|
+
"journal_large": (
|
|
1285
|
+
width: 7in,
|
|
1286
|
+
height: 10in,
|
|
1287
|
+
),
|
|
1288
|
+
// Large Academic Journal
|
|
1289
|
+
"thesis_standard": (
|
|
1290
|
+
width: 8.5in,
|
|
1291
|
+
height: 11in,
|
|
1292
|
+
),
|
|
1293
|
+
// Standard Thesis Paper
|
|
1294
|
+
"thesis_large": (
|
|
1295
|
+
width: 11in,
|
|
1296
|
+
height: 17in,
|
|
1297
|
+
),
|
|
1298
|
+
// Large Thesis Paper
|
|
528
1299
|
// Other Standard Sizes
|
|
529
1300
|
// ------------------------------------------------------------------------
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
1301
|
+
"comic_book": (
|
|
1302
|
+
width: 6.625in,
|
|
1303
|
+
height: 10.25in,
|
|
1304
|
+
),
|
|
1305
|
+
// Standard Comic Book
|
|
1306
|
+
"music_sheet": (
|
|
1307
|
+
width: 9in,
|
|
1308
|
+
height: 12in,
|
|
1309
|
+
),
|
|
1310
|
+
// Standard Music Sheet
|
|
1311
|
+
"playing_card": (
|
|
1312
|
+
width: 2.5in,
|
|
1313
|
+
height: 3.5in,
|
|
1314
|
+
) // Standard Playing Card
|
|
534
1315
|
) !default;
|