Skip to content

Commit a7a2a73

Browse files
author
Samer El-Khatib
committed
Merge branch 'main' into production
2 parents e0c0682 + 24345e5 commit a7a2a73

File tree

1,556 files changed

+196935
-193529
lines changed

Some content is hidden

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

1,556 files changed

+196935
-193529
lines changed

english/java/com.aspose.imaging.exif/exifdata/_index.md

Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ EXIF data container.
2424
| [ExifData(TiffDataType[] exifdata)](#ExifData-com.aspose.imaging.fileformats.tiff.TiffDataType---) | Initializes a new instance of the `ExifData` class with data from array. |
2525
| [ExifData(TiffDataType[] commonTags, TiffDataType[] exifTags, TiffDataType[] gpsTags)](#ExifData-com.aspose.imaging.fileformats.tiff.TiffDataType---com.aspose.imaging.fileformats.tiff.TiffDataType---com.aspose.imaging.fileformats.tiff.TiffDataType---) | Initializes a new instance of the `ExifData` class with data from array. |
2626
| [ExifData(ExifData exifdata)](#ExifData-com.aspose.imaging.exif.ExifData-) | Initializes a new instance of the [ExifData](../../com.aspose.imaging.exif/exifdata) class with data from array. |
27+
| [ExifData(byte[] binaryData)](#ExifData-byte---) | Initializes a new instance of the [ExifData](../../com.aspose.imaging.exif/exifdata) class. |
2728
## Methods
2829

2930
| Method | Description |
@@ -248,7 +249,12 @@ EXIF data container.
248249
| [setGPSTags(TiffDataType[] value)](#setGPSTags-com.aspose.imaging.fileformats.tiff.TiffDataType---) | Gets or sets tags, which belong to GPS section only. |
249250
| [getThumbnail()](#getThumbnail--) | Gets the thumbnail image. |
250251
| [setThumbnail(RasterImage value)](#setThumbnail-com.aspose.imaging.RasterImage-) | Sets the thumbnail image. |
252+
| [getXResolutionInt()](#getXResolutionInt--) | Gets the x resolution. |
253+
| [setXResolution(int value)](#setXResolution-int-) | Sets the x resolution. |
254+
| [getYResolutionInt()](#getYResolutionInt--) | Gets the y resolution. |
255+
| [setYResolution(int value)](#setYResolution-int-) | Sets the y resolution. |
251256
| [removeTag(int tagId)](#removeTag-int-) | Remove tag from container |
257+
| [getTagValue(int key)](#getTagValue-int-) | Gets the tag value. |
252258

253259
## Example: Access camera manufacturer maker notes in Jpeg image.
254260

@@ -311,6 +317,19 @@ Initializes a new instance of the [ExifData](../../com.aspose.imaging.exif/exifd
311317
| --- | --- | --- |
312318
| exifdata | [ExifData](../../com.aspose.imaging.exif/exifdata) | Array of EXIF tags together with common and GPS tags. |
313319

320+
### ExifData(byte[] binaryData) {#ExifData-byte---}
321+
```
322+
public ExifData(byte[] binaryData)
323+
```
324+
325+
326+
Initializes a new instance of the [ExifData](../../com.aspose.imaging.exif/exifdata) class.
327+
328+
**Parameters:**
329+
| Parameter | Type | Description |
330+
| --- | --- | --- |
331+
| binaryData | byte[] | The binary data. |
332+
314333
### isBigEndian() {#isBigEndian--}
315334
```
316335
public boolean isBigEndian()
@@ -3295,6 +3314,60 @@ Sets the thumbnail image.
32953314
| --- | --- | --- |
32963315
| value | [RasterImage](../../com.aspose.imaging/rasterimage) | the thumbnail image. |
32973316

3317+
### getXResolutionInt() {#getXResolutionInt--}
3318+
```
3319+
public final int getXResolutionInt()
3320+
```
3321+
3322+
3323+
Gets the x resolution.
3324+
3325+
Value: The x resolution.
3326+
3327+
**Returns:**
3328+
int - the x resolution.
3329+
### setXResolution(int value) {#setXResolution-int-}
3330+
```
3331+
public final void setXResolution(int value)
3332+
```
3333+
3334+
3335+
Sets the x resolution.
3336+
3337+
Value: The x resolution.
3338+
3339+
**Parameters:**
3340+
| Parameter | Type | Description |
3341+
| --- | --- | --- |
3342+
| value | int | the x resolution. |
3343+
3344+
### getYResolutionInt() {#getYResolutionInt--}
3345+
```
3346+
public final int getYResolutionInt()
3347+
```
3348+
3349+
3350+
Gets the y resolution.
3351+
3352+
Value: The y resolution.
3353+
3354+
**Returns:**
3355+
int - the y resolution.
3356+
### setYResolution(int value) {#setYResolution-int-}
3357+
```
3358+
public final void setYResolution(int value)
3359+
```
3360+
3361+
3362+
Sets the y resolution.
3363+
3364+
Value: The y resolution.
3365+
3366+
**Parameters:**
3367+
| Parameter | Type | Description |
3368+
| --- | --- | --- |
3369+
| value | int | the y resolution. |
3370+
32983371
### removeTag(int tagId) {#removeTag-int-}
32993372
```
33003373
public void removeTag(int tagId)
@@ -3308,3 +3381,18 @@ Remove tag from container
33083381
| --- | --- | --- |
33093382
| tagId | int | The tag identifier to remove. |
33103383

3384+
### getTagValue(int key) {#getTagValue-int-}
3385+
```
3386+
public final TiffDataType getTagValue(int key)
3387+
```
3388+
3389+
3390+
Gets the tag value.
3391+
3392+
**Parameters:**
3393+
| Parameter | Type | Description |
3394+
| --- | --- | --- |
3395+
| key | int | The tag key [ExifProperties](../../com.aspose.imaging.exif/exifproperties). |
3396+
3397+
**Returns:**
3398+
[TiffDataType](../../com.aspose.imaging.fileformats.tiff/tiffdatatype) - The TiffDataType

english/java/com.aspose.imaging.exif/exifproperties/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ public static final int Artist
291291
```
292292

293293

294-
This tag records the name of the camera owner, photographer or image creator. The detailed format is not specified, but it is recommended that the information be written as in the example below for ease of Interoperability. When the field is left blank, it is treated as unknown. Ex.) "Camera owner, John Smith; Photographer, Michael Brown; Image creator, Ken James"
294+
This tag records the name of the camera owner, photographer or image creator. The detailed format is not specified, but it is recommended that the information be written as in the example below for ease of Interoperability. When the field is left blank, it is treated as unknown. (Ex. "Camera owner, John Smith; Photographer, Michael Brown; Image creator, Ken James")
295295

296296
### WhitePoint {#WhitePoint}
297297
```

english/java/com.aspose.imaging.fileformats.gif/igifblockloaderdescriptor/_index.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,36 +14,36 @@ Gif block Loader descriptor.
1414

1515
| Method | Description |
1616
| --- | --- |
17-
| [canLoad(StreamContainer streamContainer)](#canLoad-com.aspose.imaging.StreamContainer-) | |
18-
| [load(StreamContainer streamContainer, IColorPalette containerPalette)](#load-com.aspose.imaging.StreamContainer-com.aspose.imaging.IColorPalette-) | |
17+
| [canLoad(StreamContainer streamContainer)](#canLoad-com.aspose.imaging.StreamContainer-) | Determines whether loader can load the specified data. |
18+
| [load(StreamContainer streamContainer, IColorPalette containerPalette)](#load-com.aspose.imaging.StreamContainer-com.aspose.imaging.IColorPalette-) | Loads the gif block. |
1919
### canLoad(StreamContainer streamContainer) {#canLoad-com.aspose.imaging.StreamContainer-}
2020
```
2121
public abstract boolean canLoad(StreamContainer streamContainer)
2222
```
2323

2424

25-
25+
Determines whether loader can load the specified data.
2626

2727
**Parameters:**
2828
| Parameter | Type | Description |
2929
| --- | --- | --- |
30-
| streamContainer | [StreamContainer](../../com.aspose.imaging/streamcontainer) | |
30+
| streamContainer | [StreamContainer](../../com.aspose.imaging/streamcontainer) | The stream container to load data from. |
3131

3232
**Returns:**
33-
boolean
33+
boolean - `true` loader can load the specified data; otherwise, `false`.
3434
### load(StreamContainer streamContainer, IColorPalette containerPalette) {#load-com.aspose.imaging.StreamContainer-com.aspose.imaging.IColorPalette-}
3535
```
3636
public abstract IGifBlock load(StreamContainer streamContainer, IColorPalette containerPalette)
3737
```
3838

3939

40-
40+
Loads the gif block.
4141

4242
**Parameters:**
4343
| Parameter | Type | Description |
4444
| --- | --- | --- |
45-
| streamContainer | [StreamContainer](../../com.aspose.imaging/streamcontainer) | |
46-
| containerPalette | [IColorPalette](../../com.aspose.imaging/icolorpalette) | |
45+
| streamContainer | [StreamContainer](../../com.aspose.imaging/streamcontainer) | The stream container. |
46+
| containerPalette | [IColorPalette](../../com.aspose.imaging/icolorpalette) | The container palette. |
4747

4848
**Returns:**
49-
[IGifBlock](../../com.aspose.imaging.fileformats.gif/igifblock)
49+
[IGifBlock](../../com.aspose.imaging.fileformats.gif/igifblock) - A new gif block.

english/java/com.aspose.imaging.fileformats.opendocument.objects.brush/odbrush/_index.md

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ The open document brush
2626
| Method | Description |
2727
| --- | --- |
2828
| [getBrushStyle()](#getBrushStyle--) | Gets the style. |
29-
| [deepClone()](#deepClone--) | Clone this instance. |
3029
### OdBrush() {#OdBrush--}
3130
```
3231
public OdBrush()
@@ -43,13 +42,3 @@ Gets the style.
4342

4443
**Returns:**
4544
int - the style.
46-
### deepClone() {#deepClone--}
47-
```
48-
public abstract Object deepClone()
49-
```
50-
51-
52-
Clone this instance.
53-
54-
**Returns:**
55-
java.lang.Object - The return new instance of source brush

english/java/com.aspose.imaging.imagefilters.filteroptions/_index.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,14 @@ The package handles filter options.
2525
| [GaussWienerFilterOptions](../com.aspose.imaging.imagefilters.filteroptions/gausswienerfilteroptions) | Gauss Wiener filter options for image debluring. |
2626
| [GaussianBlurFilterOptions](../com.aspose.imaging.imagefilters.filteroptions/gaussianblurfilteroptions) | The Gaussian blur filter options. |
2727
| [GaussianDeconvolutionFilterOptions](../com.aspose.imaging.imagefilters.filteroptions/gaussiandeconvolutionfilteroptions) | The deconvolution filter options using Gaussian blurring. |
28+
| [ImageBlendingFilterOptions](../com.aspose.imaging.imagefilters.filteroptions/imageblendingfilteroptions) | The image blending filter options |
2829
| [MedianFilterOptions](../com.aspose.imaging.imagefilters.filteroptions/medianfilteroptions) | Median filter |
2930
| [MotionWienerFilterOptions](../com.aspose.imaging.imagefilters.filteroptions/motionwienerfilteroptions) | The motion de-blurring filter options. |
3031
| [SharpenFilterOptions](../com.aspose.imaging.imagefilters.filteroptions/sharpenfilteroptions) | The sharpen filter options. |
3132
| [SmallRectangularFilterOptions](../com.aspose.imaging.imagefilters.filteroptions/smallrectangularfilteroptions) | Small rectangular filter options |
33+
34+
## Enumerations
35+
36+
| Enum | Description |
37+
| --- | --- |
38+
| [BlendingMode](../com.aspose.imaging.imagefilters.filteroptions/blendingmode) | The blending mode |

english/java/com.aspose.imaging.imagefilters.filteroptions/adaptivewhitestretchfilteroptions/_index.md

Lines changed: 2 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,7 @@ Provides options for configuring the Adaptive White Stretch filter. Allows custo
1717

1818
| Constructor | Description |
1919
| --- | --- |
20-
| [AdaptiveWhiteStretchFilterOptions()](#AdaptiveWhiteStretchFilterOptions--) | |
21-
| [AdaptiveWhiteStretchFilterOptions(boolean isGrayscale)](#AdaptiveWhiteStretchFilterOptions-boolean-) | |
22-
| [AdaptiveWhiteStretchFilterOptions(boolean isGrayscale, int lowPercentile)](#AdaptiveWhiteStretchFilterOptions-boolean-int-) | |
23-
| [AdaptiveWhiteStretchFilterOptions(boolean isGrayscale, int lowPercentile, int highPercentile)](#AdaptiveWhiteStretchFilterOptions-boolean-int-int-) | |
24-
| [AdaptiveWhiteStretchFilterOptions(boolean isGrayscale, int lowPercentile, int highPercentile, int targetWhite)](#AdaptiveWhiteStretchFilterOptions-boolean-int-int-int-) | |
20+
| [AdaptiveWhiteStretchFilterOptions()](#AdaptiveWhiteStretchFilterOptions--) | Initializes a new instance of the AdaptiveWhiteStretchFilter class. |
2521
| [AdaptiveWhiteStretchFilterOptions(boolean isGrayscale, int lowPercentile, int highPercentile, int targetWhite, float maxScale)](#AdaptiveWhiteStretchFilterOptions-boolean-int-int-int-float-) | Initializes a new instance of the AdaptiveWhiteStretchFilter class. |
2622
## Methods
2723

@@ -38,55 +34,7 @@ public AdaptiveWhiteStretchFilterOptions()
3834
```
3935

4036

41-
### AdaptiveWhiteStretchFilterOptions(boolean isGrayscale) {#AdaptiveWhiteStretchFilterOptions-boolean-}
42-
```
43-
public AdaptiveWhiteStretchFilterOptions(boolean isGrayscale)
44-
```
45-
46-
47-
**Parameters:**
48-
| Parameter | Type | Description |
49-
| --- | --- | --- |
50-
| isGrayscale | boolean | |
51-
52-
### AdaptiveWhiteStretchFilterOptions(boolean isGrayscale, int lowPercentile) {#AdaptiveWhiteStretchFilterOptions-boolean-int-}
53-
```
54-
public AdaptiveWhiteStretchFilterOptions(boolean isGrayscale, int lowPercentile)
55-
```
56-
57-
58-
**Parameters:**
59-
| Parameter | Type | Description |
60-
| --- | --- | --- |
61-
| isGrayscale | boolean | |
62-
| lowPercentile | int | |
63-
64-
### AdaptiveWhiteStretchFilterOptions(boolean isGrayscale, int lowPercentile, int highPercentile) {#AdaptiveWhiteStretchFilterOptions-boolean-int-int-}
65-
```
66-
public AdaptiveWhiteStretchFilterOptions(boolean isGrayscale, int lowPercentile, int highPercentile)
67-
```
68-
69-
70-
**Parameters:**
71-
| Parameter | Type | Description |
72-
| --- | --- | --- |
73-
| isGrayscale | boolean | |
74-
| lowPercentile | int | |
75-
| highPercentile | int | |
76-
77-
### AdaptiveWhiteStretchFilterOptions(boolean isGrayscale, int lowPercentile, int highPercentile, int targetWhite) {#AdaptiveWhiteStretchFilterOptions-boolean-int-int-int-}
78-
```
79-
public AdaptiveWhiteStretchFilterOptions(boolean isGrayscale, int lowPercentile, int highPercentile, int targetWhite)
80-
```
81-
82-
83-
**Parameters:**
84-
| Parameter | Type | Description |
85-
| --- | --- | --- |
86-
| isGrayscale | boolean | |
87-
| lowPercentile | int | |
88-
| highPercentile | int | |
89-
| targetWhite | int | |
37+
Initializes a new instance of the AdaptiveWhiteStretchFilter class.
9038

9139
### AdaptiveWhiteStretchFilterOptions(boolean isGrayscale, int lowPercentile, int highPercentile, int targetWhite, float maxScale) {#AdaptiveWhiteStretchFilterOptions-boolean-int-int-int-float-}
9240
```

0 commit comments

Comments
 (0)