Skip to content

Commit 12574c8

Browse files
author
Samer El-Khatib
committed
Net 25.11
1 parent 24178cc commit 12574c8

File tree

268 files changed

+1001
-252
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

268 files changed

+1001
-252
lines changed
Lines changed: 210 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,210 @@
1+
---
2+
title: BlendingMode
3+
second_title: Aspose.Imaging for Java API Reference
4+
description: The blending mode
5+
type: docs
6+
weight: 26
7+
url: /java/com.aspose.imaging.imagefilters.filteroptions/blendingmode/
8+
---
9+
**Inheritance:**
10+
java.lang.Object, java.lang.Enum
11+
```
12+
public enum BlendingMode extends Enum<BlendingMode>
13+
```
14+
15+
The blending mode
16+
## Fields
17+
18+
| Field | Description |
19+
| --- | --- |
20+
| [NORMAL](#NORMAL) | The normal |
21+
| [MULTIPLY](#MULTIPLY) | The multiply |
22+
| [SCREEN](#SCREEN) | The screen |
23+
| [OVERLAY](#OVERLAY) | The overlay |
24+
| [DARKEN](#DARKEN) | The darken |
25+
| [LIGHTEN](#LIGHTEN) | The lighten |
26+
| [COLOR_DODGE](#COLOR-DODGE) | The color dodge |
27+
| [COLOR_BURN](#COLOR-BURN) | The color burn |
28+
| [HARD_LIGHT](#HARD-LIGHT) | The hard light |
29+
| [SOFT_LIGHT](#SOFT-LIGHT) | The soft light |
30+
| [DIFFERENCE](#DIFFERENCE) | The difference |
31+
| [EXCLUSION](#EXCLUSION) | The exclusion |
32+
| [HUE](#HUE) | The hue mode |
33+
| [SATURATION](#SATURATION) | The saturation |
34+
| [COLOR](#COLOR) | The color mode |
35+
| [LUMINOSITY](#LUMINOSITY) | The luminosity |
36+
## Methods
37+
38+
| Method | Description |
39+
| --- | --- |
40+
| [values()](#values--) | |
41+
| [valueOf(String name)](#valueOf-java.lang.String-) | |
42+
| [get(int value)](#get-int-) | |
43+
### NORMAL {#NORMAL}
44+
```
45+
public static final BlendingMode NORMAL
46+
```
47+
48+
49+
The normal
50+
51+
### MULTIPLY {#MULTIPLY}
52+
```
53+
public static final BlendingMode MULTIPLY
54+
```
55+
56+
57+
The multiply
58+
59+
### SCREEN {#SCREEN}
60+
```
61+
public static final BlendingMode SCREEN
62+
```
63+
64+
65+
The screen
66+
67+
### OVERLAY {#OVERLAY}
68+
```
69+
public static final BlendingMode OVERLAY
70+
```
71+
72+
73+
The overlay
74+
75+
### DARKEN {#DARKEN}
76+
```
77+
public static final BlendingMode DARKEN
78+
```
79+
80+
81+
The darken
82+
83+
### LIGHTEN {#LIGHTEN}
84+
```
85+
public static final BlendingMode LIGHTEN
86+
```
87+
88+
89+
The lighten
90+
91+
### COLOR_DODGE {#COLOR-DODGE}
92+
```
93+
public static final BlendingMode COLOR_DODGE
94+
```
95+
96+
97+
The color dodge
98+
99+
### COLOR_BURN {#COLOR-BURN}
100+
```
101+
public static final BlendingMode COLOR_BURN
102+
```
103+
104+
105+
The color burn
106+
107+
### HARD_LIGHT {#HARD-LIGHT}
108+
```
109+
public static final BlendingMode HARD_LIGHT
110+
```
111+
112+
113+
The hard light
114+
115+
### SOFT_LIGHT {#SOFT-LIGHT}
116+
```
117+
public static final BlendingMode SOFT_LIGHT
118+
```
119+
120+
121+
The soft light
122+
123+
### DIFFERENCE {#DIFFERENCE}
124+
```
125+
public static final BlendingMode DIFFERENCE
126+
```
127+
128+
129+
The difference
130+
131+
### EXCLUSION {#EXCLUSION}
132+
```
133+
public static final BlendingMode EXCLUSION
134+
```
135+
136+
137+
The exclusion
138+
139+
### HUE {#HUE}
140+
```
141+
public static final BlendingMode HUE
142+
```
143+
144+
145+
The hue mode
146+
147+
### SATURATION {#SATURATION}
148+
```
149+
public static final BlendingMode SATURATION
150+
```
151+
152+
153+
The saturation
154+
155+
### COLOR {#COLOR}
156+
```
157+
public static final BlendingMode COLOR
158+
```
159+
160+
161+
The color mode
162+
163+
### LUMINOSITY {#LUMINOSITY}
164+
```
165+
public static final BlendingMode LUMINOSITY
166+
```
167+
168+
169+
The luminosity
170+
171+
### values() {#values--}
172+
```
173+
public static BlendingMode[] values()
174+
```
175+
176+
177+
178+
179+
**Returns:**
180+
com.aspose.imaging.imagefilters.filteroptions.BlendingMode[]
181+
### valueOf(String name) {#valueOf-java.lang.String-}
182+
```
183+
public static BlendingMode valueOf(String name)
184+
```
185+
186+
187+
188+
189+
**Parameters:**
190+
| Parameter | Type | Description |
191+
| --- | --- | --- |
192+
| name | java.lang.String | |
193+
194+
**Returns:**
195+
[BlendingMode](../../com.aspose.imaging.imagefilters.filteroptions/blendingmode)
196+
### get(int value) {#get-int-}
197+
```
198+
public static BlendingMode get(int value)
199+
```
200+
201+
202+
203+
204+
**Parameters:**
205+
| Parameter | Type | Description |
206+
| --- | --- | --- |
207+
| value | int | |
208+
209+
**Returns:**
210+
[BlendingMode](../../com.aspose.imaging.imagefilters.filteroptions/blendingmode)
Lines changed: 146 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,146 @@
1+
---
2+
title: ImageBlendingFilterOptions
3+
second_title: Aspose.Imaging for Java API Reference
4+
description: The image blending filter options
5+
type: docs
6+
weight: 21
7+
url: /java/com.aspose.imaging.imagefilters.filteroptions/imageblendingfilteroptions/
8+
---
9+
**Inheritance:**
10+
java.lang.Object, [com.aspose.imaging.imagefilters.filteroptions.FilterOptionsBase](../../com.aspose.imaging.imagefilters.filteroptions/filteroptionsbase)
11+
```
12+
public class ImageBlendingFilterOptions extends FilterOptionsBase
13+
```
14+
15+
The image blending filter options
16+
## Constructors
17+
18+
| Constructor | Description |
19+
| --- | --- |
20+
| [ImageBlendingFilterOptions()](#ImageBlendingFilterOptions--) | |
21+
## Methods
22+
23+
| Method | Description |
24+
| --- | --- |
25+
| [getImage()](#getImage--) | Gets the image. |
26+
| [setImage(RasterImage value)](#setImage-com.aspose.imaging.RasterImage-) | Sets the image. |
27+
| [getPosition()](#getPosition--) | Gets the position. |
28+
| [setPosition(Point value)](#setPosition-com.aspose.imaging.Point-) | Sets the position. |
29+
| [getBlendingMode()](#getBlendingMode--) | Gets the blending mode. |
30+
| [setBlendingMode(BlendingMode value)](#setBlendingMode-com.aspose.imaging.imagefilters.filteroptions.BlendingMode-) | Sets the blending mode. |
31+
| [getOpacity()](#getOpacity--) | Gets the opacity. |
32+
| [setOpacity(float value)](#setOpacity-float-) | Sets the opacity. |
33+
### ImageBlendingFilterOptions() {#ImageBlendingFilterOptions--}
34+
```
35+
public ImageBlendingFilterOptions()
36+
```
37+
38+
39+
### getImage() {#getImage--}
40+
```
41+
public final RasterImage getImage()
42+
```
43+
44+
45+
Gets the image.
46+
47+
Value: The image.
48+
49+
**Returns:**
50+
[RasterImage](../../com.aspose.imaging/rasterimage) - the image.
51+
### setImage(RasterImage value) {#setImage-com.aspose.imaging.RasterImage-}
52+
```
53+
public final void setImage(RasterImage value)
54+
```
55+
56+
57+
Sets the image.
58+
59+
Value: The image.
60+
61+
**Parameters:**
62+
| Parameter | Type | Description |
63+
| --- | --- | --- |
64+
| value | [RasterImage](../../com.aspose.imaging/rasterimage) | the image. |
65+
66+
### getPosition() {#getPosition--}
67+
```
68+
public final Point getPosition()
69+
```
70+
71+
72+
Gets the position.
73+
74+
Value: The position.
75+
76+
**Returns:**
77+
[Point](../../com.aspose.imaging/point) - the position.
78+
### setPosition(Point value) {#setPosition-com.aspose.imaging.Point-}
79+
```
80+
public final void setPosition(Point value)
81+
```
82+
83+
84+
Sets the position.
85+
86+
Value: The position.
87+
88+
**Parameters:**
89+
| Parameter | Type | Description |
90+
| --- | --- | --- |
91+
| value | [Point](../../com.aspose.imaging/point) | the position. |
92+
93+
### getBlendingMode() {#getBlendingMode--}
94+
```
95+
public final BlendingMode getBlendingMode()
96+
```
97+
98+
99+
Gets the blending mode.
100+
101+
Value: The blending mode.
102+
103+
**Returns:**
104+
[BlendingMode](../../com.aspose.imaging.imagefilters.filteroptions/blendingmode) - the blending mode.
105+
### setBlendingMode(BlendingMode value) {#setBlendingMode-com.aspose.imaging.imagefilters.filteroptions.BlendingMode-}
106+
```
107+
public final void setBlendingMode(BlendingMode value)
108+
```
109+
110+
111+
Sets the blending mode.
112+
113+
Value: The blending mode.
114+
115+
**Parameters:**
116+
| Parameter | Type | Description |
117+
| --- | --- | --- |
118+
| value | [BlendingMode](../../com.aspose.imaging.imagefilters.filteroptions/blendingmode) | the blending mode. |
119+
120+
### getOpacity() {#getOpacity--}
121+
```
122+
public final float getOpacity()
123+
```
124+
125+
126+
Gets the opacity.
127+
128+
Value: The opacity.
129+
130+
**Returns:**
131+
float - the opacity.
132+
### setOpacity(float value) {#setOpacity-float-}
133+
```
134+
public final void setOpacity(float value)
135+
```
136+
137+
138+
Sets the opacity.
139+
140+
Value: The opacity.
141+
142+
**Parameters:**
143+
| Parameter | Type | Description |
144+
| --- | --- | --- |
145+
| value | float | the opacity. |
146+

english/net/aspose.imaging.exif/exifdata/_index.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ public class ExifData : TiffDataTypeController, IImageMetadataFormat
1919
| Name | Description |
2020
| --- | --- |
2121
| [ExifData](exifdata/#constructor)() | Initializes a new instance of the `ExifData` class. |
22+
| [ExifData](exifdata/#constructor_4)(byte[]) | Initializes a new instance of the `ExifData` class. |
2223
| [ExifData](exifdata/#constructor_1)(ExifData) | Initializes a new instance of the `ExifData` class with data from array. |
2324
| [ExifData](exifdata/#constructor_2)(TiffDataType[]) | Initializes a new instance of the `ExifData` class with data from array. |
2425
| [ExifData](exifdata/#constructor_3)(TiffDataType[], TiffDataType[], TiffDataType[]) | Initializes a new instance of the `ExifData` class with data from array. |
@@ -138,11 +139,14 @@ public class ExifData : TiffDataTypeController, IImageMetadataFormat
138139
| [UserComment](../../aspose.imaging.exif/exifdata/usercomment/) { getset; } | Gets or sets the user comment. |
139140
| [WhiteBalance](../../aspose.imaging.exif/exifdata/whitebalance/) { getset; } | Gets or sets the white balance. |
140141
| [WhitePoint](../../aspose.imaging.exif/exifdata/whitepoint/) { getset; } | Gets or sets the chromaticity of the white point of the image. |
142+
| [XResolution](../../aspose.imaging.exif/exifdata/xresolution/) { getset; } | Gets or sets the x resolution. |
143+
| [YResolution](../../aspose.imaging.exif/exifdata/yresolution/) { getset; } | Gets or sets the y resolution. |
141144

142145
## Methods
143146

144147
| Name | Description |
145148
| --- | --- |
149+
| [GetTagValue](../../aspose.imaging.exif/exifdata/gettagvalue/)(ExifProperties) | Gets the tag value. |
146150
| [RemoveTag](../../aspose.imaging.exif/exifdata/removetag/#removetag)(ExifProperties) | Remove tag from container |
147151
| [RemoveTag](../../aspose.imaging.exif/exifdata/removetag/#removetag_1)(ushort) | Remove tag from container |
148152

0 commit comments

Comments
 (0)