@@ -240,7 +240,7 @@ public void setLineWidth(float lineWidth) {
240
240
241
241
242
242
/**
243
- * Gets the current cap style, see ISO-320001, 8.4.3.3 Line Cap Style.
243
+ * Gets the current line cap style, see ISO-320001, 8.4.3.3 Line Cap Style.
244
244
*
245
245
* @return The current cap style.
246
246
* @see PdfCanvas#setLineCapStyle(int) for more info.
@@ -250,7 +250,7 @@ public int getLineCapStyle() {
250
250
}
251
251
252
252
/**
253
- * Sets the current cap style, see ISO-320001, 8.4.3.3 Line Cap Style.
253
+ * Sets the current line cap style, see ISO-320001, 8.4.3.3 Line Cap Style.
254
254
*
255
255
* @param lineCapStyle The new cap style value.
256
256
* @see PdfCanvas#setLineCapStyle(int) for more info.
@@ -301,7 +301,8 @@ public void setMiterLimit(float miterLimit) {
301
301
302
302
303
303
/**
304
- * Gets line dash pattern value, {@code D} key, see ISO-320001, 8.4.3.6 Line Dash Pattern.
304
+ * Gets line dash pattern value, {@code D} key, see ISO-320001, 8.4.3.6 Line Dash Pattern,
305
+ * {@link com.itextpdf.kernel.pdf.extgstate.PdfExtGState#setDashPattern }.
305
306
*
306
307
* @return a {@code PdfArray}, that represents line dash pattern.
307
308
*/
@@ -310,7 +311,8 @@ public PdfArray getDashPattern() {
310
311
}
311
312
312
313
/**
313
- * Sets line dash pattern value, {@code D} key, see ISO-320001, 8.4.3.6 Line Dash Pattern.
314
+ * Sets line dash pattern value, {@code D} key, see ISO-320001, 8.4.3.6 Line Dash Pattern,
315
+ * {@link com.itextpdf.kernel.pdf.extgstate.PdfExtGState#setDashPattern }.
314
316
*
315
317
* @param dashPattern a {@code PdfArray}, that represents line dash pattern.
316
318
*/
@@ -319,15 +321,15 @@ public void setDashPattern(PdfArray dashPattern) {
319
321
}
320
322
321
323
/**
322
- * Gets the rendering intent see {@link PdfExtGState#getRenderingIntent()}.
324
+ * Gets the rendering intent, see {@link PdfExtGState#getRenderingIntent()}.
323
325
*
324
326
* @return the rendering intent name.
325
327
*/
326
328
public PdfName getRenderingIntent () {
327
329
return renderingIntent ;
328
330
}
329
331
/**
330
- * Sets the rendering intent see {@link PdfExtGState#getRenderingIntent()}.
332
+ * Sets the rendering intent, see {@link PdfExtGState#getRenderingIntent()}.
331
333
*
332
334
* @param renderingIntent the rendering intent name.
333
335
*/
@@ -373,7 +375,8 @@ public void setFont(PdfFont font) {
373
375
}
374
376
375
377
/**
376
- * Gets the current Text Rendering Mode, see ISO-320001, 9.3.6 Text Rendering Mode.
378
+ * Gets the current Text Rendering Mode, see ISO-320001, 9.3.6 Text Rendering Mode,
379
+ * {@link PdfCanvas#setTextRenderingMode}.
377
380
*
378
381
* @return The current text rendering mode.
379
382
*/
@@ -382,7 +385,8 @@ public int getTextRenderingMode() {
382
385
}
383
386
384
387
/**
385
- * Sets the current Text Rendering Mode, see ISO-320001, 9.3.6 Text Rendering Mode.
388
+ * Sets the current Text Rendering Mode, see ISO-320001, 9.3.6 Text Rendering Mode,
389
+ * {@link PdfCanvas#setTextRenderingMode}.
386
390
*
387
391
* @param textRenderingMode The new text rendering mode.
388
392
*/
@@ -391,7 +395,8 @@ public void setTextRenderingMode(int textRenderingMode) {
391
395
}
392
396
393
397
/**
394
- * Get the current Text Rise, see ISO-320001, 9.3.7 Text Rise.
398
+ * Get the current Text Rise, see ISO-320001, 9.3.7 Text Rise,
399
+ * {@link PdfCanvas#setTextRise}.
395
400
*
396
401
* @return The current text rise.
397
402
*/
@@ -400,7 +405,8 @@ public float getTextRise() {
400
405
}
401
406
402
407
/**
403
- * Set the current Text Rise, see ISO-320001, 9.3.7 Text Rise.
408
+ * Set the current Text Rise, see ISO-320001, 9.3.7 Text Rise
409
+ * {@link PdfCanvas#setTextRise}.
404
410
*
405
411
* @param textRise The new text rise value.
406
412
*/
@@ -409,7 +415,8 @@ public void setTextRise(float textRise) {
409
415
}
410
416
411
417
/**
412
- * Gets the current Flatness Tolerance, see ISO-320001, 10.6.2 Flatness Tolerance.
418
+ * Gets the current Flatness Tolerance, see ISO-320001, 10.6.2 Flatness Tolerance,
419
+ * {@link PdfCanvas#setFlatnessTolerance(float)}.
413
420
*
414
421
* @return The current flatness tolerance.
415
422
*/
@@ -418,7 +425,8 @@ public float getFlatnessTolerance() {
418
425
}
419
426
420
427
/**
421
- * Sets the current Flatness Tolerance, see ISO-320001, 10.6.2 Flatness Tolerance.
428
+ * Sets the current Flatness Tolerance, see ISO-320001, 10.6.2 Flatness Tolerance,
429
+ * {@link PdfCanvas#setFlatnessTolerance(float)}.
422
430
*
423
431
* @param flatnessTolerance The new flatness tolerance value.
424
432
*/
@@ -427,7 +435,8 @@ public void setFlatnessTolerance(float flatnessTolerance) {
427
435
}
428
436
429
437
/**
430
- * Sets the Word Spacing, see ISO-320001, 9.3.3 Word Spacing.
438
+ * Sets the Word Spacing, see ISO-320001, 9.3.3 Word Spacing,
439
+ * {@link PdfCanvas#setWordSpacing(float)}.
431
440
*
432
441
* @param wordSpacing The new word spacing value.
433
442
*/
@@ -436,7 +445,8 @@ public void setWordSpacing(float wordSpacing) {
436
445
}
437
446
438
447
/**
439
- * Gets the current Word Spacing, see ISO-320001, 9.3.3 Word Spacing.
448
+ * Gets the current Word Spacing, see ISO-320001, 9.3.3 Word Spacing,
449
+ * {@link PdfCanvas#setWordSpacing(float)}
440
450
*
441
451
* @return The current word spacing
442
452
*/
@@ -445,7 +455,8 @@ public float getWordSpacing() {
445
455
}
446
456
447
457
/**
448
- * Sets the Character Spacing, see ISO-320001, 9.3.2 Character Spacing.
458
+ * Sets the Character Spacing, see ISO-320001, 9.3.2 Character Spacing,
459
+ * {@link PdfCanvas#setCharacterSpacing(float)}
449
460
*
450
461
* @param characterSpacing The new character spacing value.
451
462
*/
@@ -454,7 +465,8 @@ public void setCharSpacing(float characterSpacing) {
454
465
}
455
466
456
467
/**
457
- * Gets the current Character Spacing, see ISO-320001, 9.3.2 Character Spacing.
468
+ * Gets the current Character Spacing, see ISO-320001, 9.3.2 Character Spacing,
469
+ * {@link PdfCanvas#setCharacterSpacing(float)}.
458
470
*
459
471
* @return The current character spacing value.
460
472
*/
@@ -463,7 +475,8 @@ public float getCharSpacing() {
463
475
}
464
476
465
477
/**
466
- * Gets the current Leading, see ISO-320001, 9.3.5 Leading.
478
+ * Gets the current Leading, see ISO-320001, 9.3.5 Leading,
479
+ * {@link PdfCanvas#setLeading(float)}.
467
480
*
468
481
* @return The current leading value.
469
482
*/
@@ -472,7 +485,8 @@ public float getLeading() {
472
485
}
473
486
474
487
/**
475
- * Sets the Leading, see ISO-320001, 9.3.5 Leading
488
+ * Sets the Leading, see ISO-320001, 9.3.5 Leading,
489
+ * {@link PdfCanvas#setLeading(float)}.
476
490
*
477
491
* @param leading The new leading value.
478
492
*/
@@ -481,7 +495,8 @@ public void setLeading(float leading) {
481
495
}
482
496
483
497
/**
484
- * Gets the current Horizontal Scaling percentage, see ISO-320001, 9.3.4 Horizontal Scaling
498
+ * Gets the current Horizontal Scaling percentage, see ISO-320001, 9.3.4 Horizontal Scaling.
499
+ * {@link PdfCanvas#setHorizontalScaling(float)}.
485
500
*
486
501
* @return The current horizontal scaling factor.
487
502
*/
@@ -490,7 +505,8 @@ public float getHorizontalScaling() {
490
505
}
491
506
492
507
/**
493
- * Sets the Horizontal Scaling percentage for text, see ISO-320001, 9.3.4 Horizontal Scaling
508
+ * Sets the Horizontal Scaling percentage for text, see ISO-320001, 9.3.4 Horizontal Scaling,
509
+ * {@link PdfCanvas#setHorizontalScaling(float)}.
494
510
*
495
511
* @param scale The new horizontal scaling factor.
496
512
*/
@@ -499,8 +515,8 @@ public void setHorizontalScaling(float scale) {
499
515
}
500
516
501
517
/**
502
- * Get the Stroke Overprint flag, see ISO 32000-1, see ISO 32000-1, 8.6.7 Overprint Control
503
- * and 11.7.4.5 Summary of Overprinting Behaviour.
518
+ * Get the Stroke Overprint flag, see ISO 32000-1, 8.6.7 Overprint Control
519
+ * and 11.7.4.5 Summary of Overprinting Behaviour, {@link PdfExtGState#getStrokeOverprintFlag()} .
504
520
*
505
521
* @return The current stroke overprint flag.
506
522
*/
@@ -510,7 +526,7 @@ public boolean getStrokeOverprint() {
510
526
511
527
/**
512
528
* Get the Fill Overprint flag, see ISO 32000-1, 8.6.7 Overprint Control
513
- * and 11.7.4.5 Summary of Overprinting Behaviour.
529
+ * and 11.7.4.5 Summary of Overprinting Behaviour, {@link PdfExtGState#getFillOverprintFlag()} .
514
530
*
515
531
* @return The current stroke overprint flag.
516
532
*/
@@ -519,8 +535,8 @@ public boolean getFillOverprint() {
519
535
}
520
536
521
537
/**
522
- * Get the Overprint Mode, see ISO 32000-1, see ISO 32000-1, 8.6.7 Overprint Control
523
- * and 11.7.4.5 Summary of Overprinting Behaviour.
538
+ * Get the Overprint Mode, see ISO 32000-1, 8.6.7 Overprint Control
539
+ * and 11.7.4.5 Summary of Overprinting Behaviour, {@link PdfExtGState#getOverprintMode()} .
524
540
*
525
541
* @return The current overprint mode.
526
542
*/
@@ -531,7 +547,8 @@ public int getOverprintMode() {
531
547
532
548
/**
533
549
* Gets the current Black-generation function, see ISO32000-1, 11.7.5.3 Rendering Intent and Colour Conversions and
534
- * Table 58 – Entries in a Graphics State Parameter Dictionary.
550
+ * Table 58 – Entries in a Graphics State Parameter Dictionary,
551
+ * {@link PdfExtGState#getBlackGenerationFunction()}.
535
552
*
536
553
* @return the current black-generation function.
537
554
*/
@@ -542,7 +559,8 @@ public PdfObject getBlackGenerationFunction() {
542
559
/**
543
560
* Gets the current overruling Black-generation function,
544
561
* see ISO32000-1, 11.7.5.3 Rendering Intent and Colour Conversions and
545
- * Table 58 – Entries in a Graphics State Parameter Dictionary.
562
+ * Table 58 – Entries in a Graphics State Parameter Dictionary,
563
+ * {@link PdfExtGState#getBlackGenerationFunction2()}.
546
564
*
547
565
* @return the current overruling black-generation function.
548
566
*/
@@ -553,7 +571,8 @@ public PdfObject getBlackGenerationFunction2() {
553
571
/**
554
572
* Gets the current Undercolor-removal function,
555
573
* see ISO32000-1, 11.7.5.3 Rendering Intent and Colour Conversions and
556
- * Table 58 – Entries in a Graphics State Parameter Dictionary.
574
+ * Table 58 – Entries in a Graphics State Parameter Dictionary
575
+ * {@link PdfExtGState#getUndercolorRemovalFunction()}.
557
576
*
558
577
* @return the current black-generation function.
559
578
*/
@@ -564,7 +583,8 @@ public PdfObject getUnderColorRemovalFunction() {
564
583
/**
565
584
* Gets the current overruling Undercolor-removal function,
566
585
* see ISO32000-1, 11.7.5.3 Rendering Intent and Colour Conversions and
567
- * Table 58 – Entries in a Graphics State Parameter Dictionary.
586
+ * Table 58 – Entries in a Graphics State Parameter Dictionary,
587
+ * {@link PdfExtGState#getUndercolorRemovalFunction2()}.
568
588
*
569
589
* @return the current undercolor-removal function.
570
590
*/
@@ -575,7 +595,8 @@ public PdfObject getUnderColorRemovalFunction2() {
575
595
/**
576
596
* Gets the current Transfer function,
577
597
* see ISO32000-1, 11.7.5.3 Rendering Intent and Colour Conversions and
578
- * Table 58 – Entries in a Graphics State Parameter Dictionary.
598
+ * Table 58 – Entries in a Graphics State Parameter Dictionary,
599
+ * {@link PdfExtGState#getTransferFunction()}.
579
600
*
580
601
* @return the current transfer function.
581
602
*/
@@ -586,7 +607,8 @@ public PdfObject getTransferFunction() {
586
607
/**
587
608
* Gets the current overruling transer function,
588
609
* see ISO32000-1, 11.7.5.3 Rendering Intent and Colour Conversions and
589
- * Table 58 – Entries in a Graphics State Parameter Dictionary.
610
+ * Table 58 – Entries in a Graphics State Parameter Dictionary,
611
+ * {@link PdfExtGState#getTransferFunction2()}.
590
612
*
591
613
* @return the current overruling transer function.
592
614
*/
@@ -596,7 +618,8 @@ public PdfObject getTransferFunction2() {
596
618
597
619
/**
598
620
* Gets the current halftone ,
599
- * see ISO32000-1, 10.5 Halftones and Table 58 – Entries in a Graphics State Parameter Dictionary.
621
+ * see ISO32000-1, 10.5 Halftones and Table 58 – Entries in a Graphics State Parameter Dictionary,
622
+ * {@link PdfExtGState#getHalftone()}.
600
623
*
601
624
* @return the current halftone.
602
625
*/
@@ -607,7 +630,8 @@ public PdfObject getHalftone() {
607
630
608
631
/**
609
632
* Gets the current Smoothness Tolerance,
610
- * see ISO32000-1, 10.6.3 Smoothness Tolerance and Table 58 – Entries in a Graphics State Parameter Dictionary.
633
+ * see ISO32000-1, 10.6.3 Smoothness Tolerance and Table 58 – Entries in a Graphics State Parameter Dictionary,
634
+ * {@link PdfExtGState#getSmothnessTolerance()}.
611
635
*
612
636
* @return the current smoothness tolerance function.
613
637
*/
@@ -616,7 +640,8 @@ public Float getSmoothnessTolerance() {
616
640
}
617
641
618
642
/**
619
- * Gets the current Apply Automatic Stroke Adjustment flag, see ISO 32000-1, 10.6.5 Automatic Stroke Adjustment.
643
+ * Gets the current Apply Automatic Stroke Adjustment flag, see ISO 32000-1, 10.6.5 Automatic Stroke Adjustment,
644
+ * {@link PdfExtGState#getAutomaticStrokeAdjustmentFlag()}.
620
645
*
621
646
* @return The current automatic stroke adjustment flag.
622
647
*/
@@ -626,7 +651,8 @@ public boolean getAutomaticStrokeAdjustment() {
626
651
627
652
/**
628
653
* Gets the current Blend Mode, see ISO 32000-1, 11.3.5 Blend Mode and
629
- * 11.6.3 Specifying Blending Colour Space and Blend Mode.
654
+ * 11.6.3 Specifying Blending Colour Space and Blend Mode,
655
+ * {@link PdfExtGState#getBlendMode()}.
630
656
*
631
657
* @return The current blend mode.
632
658
*/
@@ -636,7 +662,8 @@ public PdfObject getBlendMode() {
636
662
637
663
/**
638
664
* Gets the current Soft Mask, see ISO 32000-1, 11.3.7.2 Source Shape and Opacity,
639
- * 11.6.4.3 Mask Shape and Opacity and 11.6.5.2 Soft-Mask Dictionaries.
665
+ * 11.6.4.3 Mask Shape and Opacity and 11.6.5.2 Soft-Mask Dictionaries,
666
+ * {@link PdfExtGState#getSoftMask()}.
640
667
*
641
668
* @return The current soft mask.
642
669
*/
@@ -646,7 +673,7 @@ public PdfObject getSoftMask() {
646
673
647
674
/**
648
675
* Gets the current Stroke Opacity value, see ISO 32000-1, 11.3.7.2 Source Shape and Opacity
649
- * and 11.6.4.4 Constant Shape and Opacity.
676
+ * and 11.6.4.4 Constant Shape and Opacity, {@link PdfExtGState#getStrokeOpacity()} .
650
677
*
651
678
* @return the current stroke opacity value.
652
679
*/
@@ -656,7 +683,7 @@ public float getStrokeOpacity() {
656
683
657
684
/**
658
685
* Gets the current Fill Opacity value, see ISO 32000-1, 11.3.7.2 Source Shape and Opacity
659
- * and 11.6.4.4 Constant Shape and Opacity.
686
+ * and 11.6.4.4 Constant Shape and Opacity, {@link PdfExtGState#getFillOpacity()} .
660
687
*
661
688
* @return the current fill opacity value.
662
689
*/
@@ -666,7 +693,7 @@ public float getFillOpacity() {
666
693
667
694
/**
668
695
* Gets the current Alpha is shape flag, see ISO 32000-1, 11.3.7.2 Source Shape and Opacity and
669
- * 11.6.4.3 Mask Shape and Opacity.
696
+ * 11.6.4.3 Mask Shape and Opacity, {@link PdfExtGState#getAlphaSourceFlag()} .
670
697
*
671
698
* @return The current alpha is shape flag.
672
699
*/
@@ -675,7 +702,8 @@ public boolean getAlphaIsShape() {
675
702
}
676
703
677
704
/**
678
- * Gets the current Text Knockout flag, see ISO 32000-1, 9.3.8 Text Knockout.
705
+ * Gets the current Text Knockout flag, see ISO 32000-1, 9.3.8 Text Knockout,
706
+ * {@link PdfExtGState#getTextKnockoutFlag()}.
679
707
*
680
708
* @return The current text knockout flag.
681
709
*/
@@ -686,7 +714,7 @@ public boolean getTextKnockout() {
686
714
/**
687
715
* Gets the current Halftone Phase, see Portable Document Format Reference Manual Version 1.2,
688
716
* 7.12 Extended graphics states and PostScript Language Reference Manual, Second Edition,
689
- * 7.3.3, “ Halftone Phase.
717
+ * 7.3.3, Halftone Phase.
690
718
*
691
719
* @return the current halftone phase.
692
720
*/
0 commit comments