Skip to content

Commit dcd437a

Browse files
author
Samer El-Khatib
committed
Release 25.8 - java updates
1 parent 23822c8 commit dcd437a

File tree

15 files changed

+71
-217
lines changed
  • english/java
    • com.aspose.imaging.fileformats.cdr.types/cdrgradient
    • com.aspose.imaging.fileformats.emf.emf.records/emfcontrolrecordtype
    • com.aspose.imaging.fileformats.emf.emfplus.objects/emfpluspalette
    • com.aspose.imaging.fileformats.opendocument/odimage
    • com.aspose.imaging.fileformats.tiff.filemanagement/tiffstreamreader
    • com.aspose.imaging.fileformats.tiff
    • com.aspose.imaging.imagefilters.filteroptions/gaussiandeconvolutionfilteroptions
    • com.aspose.imaging.imageoptions
    • com.aspose.imaging.shapes/rectangleprojectedshape
    • com.aspose.imaging

15 files changed

+71
-217
lines changed

english/java/com.aspose.imaging.fileformats.cdr.types/cdrgradient/_index.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ The cdr gradient
2828
| [setMode(int value)](#setMode-int-) | Sets the mode. |
2929
| [getAngle()](#getAngle--) | Gets the angle. |
3030
| [setAngle(double value)](#setAngle-double-) | Sets the angle. |
31-
| [getMidPoint()](#getMidPoint--) | Gets the mid point. |
32-
| [setMidPoint(double value)](#setMidPoint-double-) | Sets the mid point. |
31+
| [getMidPoint()](#getMidPoint--) | Gets the midpoint. |
32+
| [setMidPoint(double value)](#setMidPoint-double-) | Sets the midpoint. |
3333
| [getEdgeOffset()](#getEdgeOffset--) | Gets the edge offset. |
3434
| [setEdgeOffset(int value)](#setEdgeOffset-int-) | Sets the edge offset. |
3535
| [getCenterXOffset()](#getCenterXOffset--) | Gets the center x offset. |
@@ -121,22 +121,22 @@ public final double getMidPoint()
121121
```
122122

123123

124-
Gets the mid point.
124+
Gets the midpoint.
125125

126126
**Returns:**
127-
double - the mid point.
127+
double - the midpoint.
128128
### setMidPoint(double value) {#setMidPoint-double-}
129129
```
130130
public final void setMidPoint(double value)
131131
```
132132

133133

134-
Sets the mid point.
134+
Sets the midpoint.
135135

136136
**Parameters:**
137137
| Parameter | Type | Description |
138138
| --- | --- | --- |
139-
| value | double | the mid point. |
139+
| value | double | the midpoint. |
140140

141141
### getEdgeOffset() {#getEdgeOffset--}
142142
```

english/java/com.aspose.imaging.fileformats.emf.emf.records/emfcontrolrecordtype/_index.md

Lines changed: 0 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -13,35 +13,3 @@ public abstract class EmfControlRecordType extends EmfRecord
1313
```
1414

1515
The control record types define the start and end of an EMF metafile and properties of the metafile.
16-
## Constructors
17-
18-
| Constructor | Description |
19-
| --- | --- |
20-
| [EmfControlRecordType(EmfRecord source)](#EmfControlRecordType-com.aspose.imaging.fileformats.emf.emf.records.EmfRecord-) | Initializes a new instance of the `EmfControlRecordType` class. |
21-
| [EmfControlRecordType(int type)](#EmfControlRecordType-int-) | Initializes a new instance of the `EmfControlRecordType` class. |
22-
### EmfControlRecordType(EmfRecord source) {#EmfControlRecordType-com.aspose.imaging.fileformats.emf.emf.records.EmfRecord-}
23-
```
24-
public EmfControlRecordType(EmfRecord source)
25-
```
26-
27-
28-
Initializes a new instance of the `EmfControlRecordType` class.
29-
30-
**Parameters:**
31-
| Parameter | Type | Description |
32-
| --- | --- | --- |
33-
| source | [EmfRecord](../../com.aspose.imaging.fileformats.emf.emf.records/emfrecord) | The source. |
34-
35-
### EmfControlRecordType(int type) {#EmfControlRecordType-int-}
36-
```
37-
public EmfControlRecordType(int type)
38-
```
39-
40-
41-
Initializes a new instance of the `EmfControlRecordType` class.
42-
43-
**Parameters:**
44-
| Parameter | Type | Description |
45-
| --- | --- | --- |
46-
| type | int | The record type. |
47-

english/java/com.aspose.imaging.fileformats.emf.emfplus.objects/emfpluspalette/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ Gets or sets the palette entries.
7070
Value: PaletteEntries (variable): An array of PaletteCount 32-bit ARGB objects that specify the data in the palette.
7171

7272
**Returns:**
73-
int[]
73+
int[] - The copy of the palette entries.
7474
### setArgb32Entries(int[] value) {#setArgb32Entries-int---}
7575
```
7676
public void setArgb32Entries(int[] value)

english/java/com.aspose.imaging.fileformats.opendocument/odimage/_index.md

Lines changed: 1 addition & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,6 @@ public abstract class OdImage extends VectorMultipageImage implements IOdImage
1616
```
1717

1818
The open document
19-
## Constructors
20-
21-
| Constructor | Description |
22-
| --- | --- |
23-
| [OdImage(StreamContainer streamContainer, LoadOptions options)](#OdImage-com.aspose.imaging.StreamContainer-com.aspose.imaging.LoadOptions-) | Initialize a new [OdImage](../../com.aspose.imaging.fileformats.opendocument/odimage) object by providing a stream container along with load options, facilitating seamless integration into software applications. |
24-
| [OdImage(StreamContainer streamContainer)](#OdImage-com.aspose.imaging.StreamContainer-) | Creates a new instance of the [OdImage](../../com.aspose.imaging.fileformats.opendocument/odimage) class, designed specifically for initialization with a stream container. |
2519
## Methods
2620

2721
| Method | Description |
@@ -32,33 +26,6 @@ The open document
3226
| [getPageCount()](#getPageCount--) | Retrieves the total count of pages within the image. |
3327
| [getMetadata()](#getMetadata--) | Retrieves metadata specific to OpenDocument files. |
3428
| [getRecords()](#getRecords--) | Retrieves the OpenDocument records stored within the image. |
35-
### OdImage(StreamContainer streamContainer, LoadOptions options) {#OdImage-com.aspose.imaging.StreamContainer-com.aspose.imaging.LoadOptions-}
36-
```
37-
public OdImage(StreamContainer streamContainer, LoadOptions options)
38-
```
39-
40-
41-
Initialize a new [OdImage](../../com.aspose.imaging.fileformats.opendocument/odimage) object by providing a stream container along with load options, facilitating seamless integration into software applications. This constructor efficiently handle image data, offering flexibility and control over the loading process.
42-
43-
**Parameters:**
44-
| Parameter | Type | Description |
45-
| --- | --- | --- |
46-
| streamContainer | [StreamContainer](../../com.aspose.imaging/streamcontainer) | The stream. |
47-
| options | [LoadOptions](../../com.aspose.imaging/loadoptions) | The load options. |
48-
49-
### OdImage(StreamContainer streamContainer) {#OdImage-com.aspose.imaging.StreamContainer-}
50-
```
51-
public OdImage(StreamContainer streamContainer)
52-
```
53-
54-
55-
Creates a new instance of the [OdImage](../../com.aspose.imaging.fileformats.opendocument/odimage) class, designed specifically for initialization with a stream container. This constructor enables seamless integration with stream-based data sources, facilitating efficient handling of OdImage instances within software systems.
56-
57-
**Parameters:**
58-
| Parameter | Type | Description |
59-
| --- | --- | --- |
60-
| streamContainer | [StreamContainer](../../com.aspose.imaging/streamcontainer) | The stream container. |
61-
6229
### getDefaultPage() {#getDefaultPage--}
6330
```
6431
public Image getDefaultPage()
@@ -95,7 +62,7 @@ public int getPageCount()
9562
```
9663

9764

98-
Retrieves the total count of pages within the image. This property is essential for applications managing multi-page images, enabling them to accurately determine the number of pages available for processing or display.
65+
Retrieves the total count of pages within the image. This property is essential for applications managing multipage images, enabling them to accurately determine the number of pages available for processing or display.
9966

10067
**Returns:**
10168
int - the page count.

english/java/com.aspose.imaging.fileformats.tiff.filemanagement/tiffstreamreader/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ The tiff stream for handling little endian tiff file format.
4949
| [readUShort(long position)](#readUShort-long-) | Read unsigned short value from the stream. |
5050
| [readUShortArray(long position, long count)](#readUShortArray-long-long-) | Reads an array of unsigned integer values from the stream. |
5151
| [readLong(long position)](#readLong-long-) | Read unsigned long value from the stream. |
52-
| [readLongArray(long position, long count)](#readLongArray-long-long-) | Reads an array of ulong values from the stream. |
52+
| [readLongArray(long position, long count)](#readLongArray-long-long-) | Reads an array of long values from the stream. |
5353
| [readULong(long position)](#readULong-long-) | Read unsigned long value from the stream. |
5454
| [readULongArray(long position, long count)](#readULongArray-long-long-) | Reads an array of ulong values from the stream. |
5555
| [toStreamContainer(long startPosition)](#toStreamContainer-long-) | Converts the underlying data to the stream container. |
@@ -481,7 +481,7 @@ public final long[] readLongArray(long position, long count)
481481
```
482482

483483

484-
Reads an array of ulong values from the stream.
484+
Reads an array of long values from the stream.
485485

486486
**Parameters:**
487487
| Parameter | Type | Description |

english/java/com.aspose.imaging.fileformats.tiff/tiffdatatype/_index.md

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,6 @@ public abstract class TiffDataType implements Comparable<TiffDataType>
1616
```
1717

1818
The TIFF data type.
19-
## Constructors
20-
21-
| Constructor | Description |
22-
| --- | --- |
23-
| [TiffDataType()](#TiffDataType--) | |
2419
## Methods
2520

2621
| Method | Description |
@@ -44,12 +39,6 @@ The TIFF data type.
4439
| [writeTag(TiffStreamWriter dataStream, long additionalDataOffset)](#writeTag-com.aspose.imaging.fileformats.tiff.filemanagement.TiffStreamWriter-long-) | Writes the tag data. |
4540
| [writeAdditionalData(TiffStreamWriter dataStream)](#writeAdditionalData-com.aspose.imaging.fileformats.tiff.filemanagement.TiffStreamWriter-) | Writes the additional tag data. |
4641
| [toString()](#toString--) | Returns a `System.String` that represents this instance. |
47-
### TiffDataType() {#TiffDataType--}
48-
```
49-
public TiffDataType()
50-
```
51-
52-
5342
### getElementSize() {#getElementSize--}
5443
```
5544
public byte getElementSize()

english/java/com.aspose.imaging.fileformats.tiff/tiffimage/_index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Process Tagged Image File Format (TIFF) raster images with our API, offering com
4040
| [getFrames()](#getFrames--) | Retrieve an array of [TiffFrame](../../com.aspose.imaging.fileformats.tiff/tiffframe) instances, enabling comprehensive access and manipulation of individual frames within the TIFF image. |
4141
| [getExifData()](#getExifData--) | Access or modify EXIF data associated with the active frame seamlessly, empowering precise control over image metadata. |
4242
| [setExifData(ExifData value)](#setExifData-com.aspose.imaging.exif.ExifData-) | Access or modify EXIF data associated with the active frame seamlessly, empowering precise control over image metadata. |
43-
| [getPageCount()](#getPageCount--) | Retrieve the total count of pages within the specified document, facilitating efficient navigation and management of multi-page content. |
43+
| [getPageCount()](#getPageCount--) | Retrieve the total count of pages within the specified document, facilitating efficient navigation and management of multipage content. |
4444
| [getPages()](#getPages--) | Access the pages of the document seamlessly, enabling dynamic navigation and manipulation within the content structure. |
4545
| [hasAlpha()](#hasAlpha--) | Determine whether the image has an alpha channel, providing crucial information for rendering and compositing operations. |
4646
| [removeMetadata()](#removeMetadata--) | Removes this image instance metadata by setting this `IHasXmpData.XmpData`([IHasXmpData.getXmpData](../../com.aspose.imaging.xmp/ihasxmpdata\#getXmpData)/[IHasXmpData.setXmpData(XmpPacketWrapper)](../../com.aspose.imaging.xmp/ihasxmpdata\#setXmpData-XmpPacketWrapper-)) value to `null`. |
@@ -603,7 +603,7 @@ public int getPageCount()
603603
```
604604

605605

606-
Retrieve the total count of pages within the specified document, facilitating efficient navigation and management of multi-page content. Incorporate this functionality to enhance user experience, enabling seamless access to comprehensive document structures.
606+
Retrieve the total count of pages within the specified document, facilitating efficient navigation and management of multipage content. Incorporate this functionality to enhance user experience, enabling seamless access to comprehensive document structures.
607607

608608
**Returns:**
609609
int - the page count.
@@ -679,7 +679,7 @@ public void addPage(RasterImage page)
679679
```
680680

681681

682-
Incorporate a new page into the existing image seamlessly, expanding its content and versatility. Utilize this method to enhance document composition and management, empowering efficient handling of multi-page images within your application.
682+
Incorporate a new page into the existing image seamlessly, expanding its content and versatility. Utilize this method to enhance document composition and management, empowering efficient handling of multipage images within your application.
683683

684684
**Parameters:**
685685
| Parameter | Type | Description |

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

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,6 @@ public abstract class GaussianDeconvolutionFilterOptions extends DeconvolutionFi
1616
```
1717

1818
The deconvolution filter options using Gaussian blurring.
19-
## Constructors
20-
21-
| Constructor | Description |
22-
| --- | --- |
23-
| [GaussianDeconvolutionFilterOptions(int size, double sigma)](#GaussianDeconvolutionFilterOptions-int-double-) | Initializes a new instance of the [GaussianDeconvolutionFilterOptions](../../com.aspose.imaging.imagefilters.filteroptions/gaussiandeconvolutionfilteroptions) class. |
2419
## Methods
2520

2621
| Method | Description |
@@ -31,20 +26,6 @@ The deconvolution filter options using Gaussian blurring.
3126
| [setSigma(double value)](#setSigma-double-) | The Gaussian kernel sigma (smoothing). |
3227
| [getRadius()](#getRadius--) | Gets the radius of Gausseian ISquareConvolutionKernel. |
3328
| [setRadius(int value)](#setRadius-int-) | The radius of Gausseian ISquareConvolutionKernel. |
34-
### GaussianDeconvolutionFilterOptions(int size, double sigma) {#GaussianDeconvolutionFilterOptions-int-double-}
35-
```
36-
public GaussianDeconvolutionFilterOptions(int size, double sigma)
37-
```
38-
39-
40-
Initializes a new instance of the [GaussianDeconvolutionFilterOptions](../../com.aspose.imaging.imagefilters.filteroptions/gaussiandeconvolutionfilteroptions) class.
41-
42-
**Parameters:**
43-
| Parameter | Type | Description |
44-
| --- | --- | --- |
45-
| size | int | The Gaussian kernel size. |
46-
| sigma | double | The Gaussian kernel sigma. |
47-
4829
### getSize() {#getSize--}
4930
```
5031
public final int getSize()

english/java/com.aspose.imaging.imageoptions/metafilerasterizationoptions/_index.md

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,3 @@ public abstract class MetafileRasterizationOptions extends VectorRasterizationOp
1313
```
1414

1515
The metafile rasterization options
16-
## Constructors
17-
18-
| Constructor | Description |
19-
| --- | --- |
20-
| [MetafileRasterizationOptions()](#MetafileRasterizationOptions--) | Initializes a new instance of the `MetafileRasterizationOptions` class. |
21-
### MetafileRasterizationOptions() {#MetafileRasterizationOptions--}
22-
```
23-
public MetafileRasterizationOptions()
24-
```
25-
26-
27-
Initializes a new instance of the `MetafileRasterizationOptions` class.
28-

english/java/com.aspose.imaging.imageoptions/rdoptimizersettings/_index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ RD optimizer settings class
2424
| --- | --- |
2525
| [getBppScale()](#getBppScale--) | Gets the BPP (bits per pixel) scale factor. |
2626
| [setBppScale(int value)](#setBppScale-int-) | Sets the BPP (bits per pixel) scale factor. |
27-
| [getBppMax()](#getBppMax--) | Gets the maximum R value for consideration in in bits per pixel |
28-
| [setBppMax(double value)](#setBppMax-double-) | Sets the maximum R value for consideration in in bits per pixel |
27+
| [getBppMax()](#getBppMax--) | Gets the maximum R value for consideration in bits per pixel |
28+
| [setBppMax(double value)](#setBppMax-double-) | Sets the maximum R value for consideration in bits per pixel |
2929
| [getMaxQ()](#getMaxQ--) | Gets the maximum quantization value. |
3030
| [setMaxQ(int value)](#setMaxQ-int-) | Sets the maximum quantization value. |
3131
| [getMinQ()](#getMinQ--) | Gets the minimum allowed quantization value. |
@@ -70,7 +70,7 @@ public double getBppMax()
7070
```
7171

7272

73-
Gets the maximum R value for consideration in in bits per pixel
73+
Gets the maximum R value for consideration in bits per pixel
7474

7575
**Returns:**
7676
double - The maximum R value for consideration in bits per pixel.
@@ -80,7 +80,7 @@ public void setBppMax(double value)
8080
```
8181

8282

83-
Sets the maximum R value for consideration in in bits per pixel
83+
Sets the maximum R value for consideration in bits per pixel
8484

8585
**Parameters:**
8686
| Parameter | Type | Description |

0 commit comments

Comments
 (0)