@@ -8,7 +8,7 @@ class BandFormat(object):
8
8
The format used for each band element.
9
9
10
10
Each corresponds to a native C type for the current machine. For example,
11
- [enum@Vips. BandFormat.USHORT] is `unsigned short`.
11
+ :class:`.enums. BandFormat.USHORT` is `unsigned short`.
12
12
13
13
Attributes:
14
14
@@ -52,7 +52,7 @@ class BandFormat(object):
52
52
class BlendMode (object ):
53
53
"""BlendMode.
54
54
55
- The various Porter-Duff and PDF blend modes. See [func@ Image.composite] ,
55
+ The various Porter-Duff and PDF blend modes. See :meth:`. Image.composite` ,
56
56
for example.
57
57
58
58
The Cairo docs have a nice explanation of all the blend modes:
@@ -250,13 +250,13 @@ class Interpretation(object):
250
250
class DemandStyle (object ):
251
251
"""DemandStyle.
252
252
253
- See [method@ Image.pipelinev] . Operations can hint
253
+ See :meth:`. Image.pipelinev` . Operations can hint
254
254
the kind of demand geometry they prefer
255
255
to the VIPS image IO system.
256
256
257
257
These demand styles are given below in order of increasing
258
258
specialisation. When demanding output from a pipeline,
259
- [method@ Image.generate]
259
+ :meth:`. Image.generate`
260
260
will use the most general style requested by the operations
261
261
in the pipeline.
262
262
@@ -267,18 +267,18 @@ class DemandStyle(object):
267
267
@VIPS_DEMAND_STYLE_FATSTRIP -- This operation would like to output strips
268
268
the width of the image and as high as possible. This option is suitable
269
269
for area operations which do not violently transform coordinates, such
270
- as [method@ Image.conv] .
270
+ as :meth:`. Image.conv` .
271
271
272
272
@VIPS_DEMAND_STYLE_THINSTRIP -- This operation would like to output strips
273
273
the width of the image and a few pels high. This option is suitable for
274
274
point-to-point operations, such as those in the arithmetic package.
275
275
276
276
@VIPS_DEMAND_STYLE_ANY -- This image is not being demand-read from a disc
277
277
file (even indirectly) so any demand style is OK. It's used for things like
278
- [ctor@ Image.black] where the pixels are calculated.
278
+ :meth:`. Image.black` where the pixels are calculated.
279
279
280
280
::: seealso
281
- [method@ Image.pipelinev] .
281
+ :meth:`. Image.pipelinev` .
282
282
283
283
Attributes:
284
284
@@ -504,7 +504,7 @@ class OperationComplexget(object):
504
504
class Combine (object ):
505
505
"""Combine.
506
506
507
- How to combine values. See [method@ Image.compass] , for example.
507
+ How to combine values. See :meth:`. Image.compass` , for example.
508
508
509
509
Attributes:
510
510
@@ -524,8 +524,8 @@ class Combine(object):
524
524
class Access (object ):
525
525
"""Access.
526
526
527
- The type of access an operation has to supply. See [method@ Image.tilecache]
528
- and [ class@ Foreign] .
527
+ The type of access an operation has to supply. See :meth:`. Image.tilecache`
528
+ and : class:`. Foreign` .
529
529
530
530
@VIPS_ACCESS_RANDOM means requests can come in any order.
531
531
@@ -548,7 +548,7 @@ class Access(object):
548
548
class Extend (object ):
549
549
"""Extend.
550
550
551
- See [method@ Image.embed], [method@ Image.conv], [method@ Image.affine] and so on.
551
+ See :meth:`. Image.embed`, :meth:`. Image.conv`, :meth:`. Image.affine` and so on.
552
552
553
553
When the edges of an image are extended, you can specify
554
554
how you want the extension done.
@@ -571,7 +571,7 @@ class Extend(object):
571
571
keep these frozen for back compat with vips7.
572
572
573
573
::: seealso
574
- [method@ Image.embed] .
574
+ :meth:`. Image.embed` .
575
575
576
576
Attributes:
577
577
@@ -600,7 +600,7 @@ class Extend(object):
600
600
class CompassDirection (object ):
601
601
"""CompassDirection.
602
602
603
- A direction on a compass. Used for [method@ Image.gravity] , for example.
603
+ A direction on a compass. Used for :meth:`. Image.gravity` , for example.
604
604
605
605
Attributes:
606
606
@@ -638,13 +638,13 @@ class CompassDirection(object):
638
638
class Direction (object ):
639
639
"""Direction.
640
640
641
- See [method@ Image.flip], [method@ Image.join] and so on.
641
+ See :meth:`. Image.flip`, :meth:`. Image.join` and so on.
642
642
643
- Operations like [method@ Image.flip] need to be told whether to flip left-right or
643
+ Operations like :meth:`. Image.flip` need to be told whether to flip left-right or
644
644
top-bottom.
645
645
646
646
::: seealso
647
- [method@ Image.flip], [method@ Image.join] .
647
+ :meth:`. Image.flip`, :meth:`. Image.join` .
648
648
649
649
Attributes:
650
650
@@ -661,13 +661,13 @@ class Direction(object):
661
661
class Align (object ):
662
662
"""Align.
663
663
664
- See [method@ Image.join] and so on.
664
+ See :meth:`. Image.join` and so on.
665
665
666
- Operations like [method@ Image.join] need to be told whether to align images on the
666
+ Operations like :meth:`. Image.join` need to be told whether to align images on the
667
667
low or high coordinate edge, or centre.
668
668
669
669
::: seealso
670
- [method@ Image.join] .
670
+ :meth:`. Image.join` .
671
671
672
672
Attributes:
673
673
@@ -688,15 +688,15 @@ class Interesting(object):
688
688
"""Interesting.
689
689
690
690
Pick the algorithm vips uses to decide image "interestingness". This is used
691
- by [method@ Image.smartcrop] , for example, to decide what parts of the image to
691
+ by :meth:`. Image.smartcrop` , for example, to decide what parts of the image to
692
692
keep.
693
693
694
694
#VIPS_INTERESTING_NONE and #VIPS_INTERESTING_LOW mean the same -- the
695
695
crop is positioned at the top or left. #VIPS_INTERESTING_HIGH positions at
696
696
the bottom or right.
697
697
698
698
::: seealso
699
- [method@ Image.smartcrop] .
699
+ :meth:`. Image.smartcrop` .
700
700
701
701
Attributes:
702
702
@@ -728,12 +728,12 @@ class Interesting(object):
728
728
class Angle (object ):
729
729
"""Angle.
730
730
731
- See [method@ Image.rot] and so on.
731
+ See :meth:`. Image.rot` and so on.
732
732
733
733
Fixed rotate angles.
734
734
735
735
::: seealso
736
- [method@ Image.rot] .
736
+ :meth:`. Image.rot` .
737
737
738
738
Attributes:
739
739
@@ -756,12 +756,12 @@ class Angle(object):
756
756
class Angle45 (object ):
757
757
"""Angle45.
758
758
759
- See [method@ Image.rot45] and so on.
759
+ See :meth:`. Image.rot45` and so on.
760
760
761
761
Fixed rotate angles.
762
762
763
763
::: seealso
764
- [method@ Image.rot45] .
764
+ :meth:`. Image.rot45` .
765
765
766
766
Attributes:
767
767
@@ -816,11 +816,11 @@ class Precision(object):
816
816
class TextWrap (object ):
817
817
"""TextWrap.
818
818
819
- Sets the word wrapping style for [ctor@ Image.text] when used with a maximum
819
+ Sets the word wrapping style for :meth:`. Image.text` when used with a maximum
820
820
width.
821
821
822
822
::: seealso
823
- [ctor@ Image.text] .
823
+ :meth:`. Image.text` .
824
824
825
825
Attributes:
826
826
@@ -846,7 +846,7 @@ class SdfShape(object):
846
846
The SDF to generate,
847
847
848
848
::: seealso
849
- [ctor@ Image.sdf] .
849
+ :meth:`. Image.sdf` .
850
850
851
851
Attributes:
852
852
@@ -1257,8 +1257,8 @@ class Kernel(object):
1257
1257
class PCS (object ):
1258
1258
"""PCS.
1259
1259
1260
- Pick a Profile Connection Space for [method@ Image.icc_import] and
1261
- [method@ Image.icc_export] . LAB is usually best, XYZ can be more convenient in some
1260
+ Pick a Profile Connection Space for :meth:`. Image.icc_import` and
1261
+ :meth:`. Image.icc_export` . LAB is usually best, XYZ can be more convenient in some
1262
1262
cases.
1263
1263
1264
1264
Attributes:
0 commit comments