You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: english/java/com.aspose.imaging.fileformats.jpeg/jpegimage/_index.md
+11Lines changed: 11 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -59,6 +59,7 @@ Efficiently manipulate JPEG raster images with our API, offering support for var
59
59
|[setDestinationCmykColorProfile(StreamSource value)](#setDestinationCmykColorProfile-com.aspose.imaging.sources.StreamSource-)| The CMYK color profile is vital for the accurate color conversion of CMYK and YCCK JPEG images during the saving process. |
60
60
|[getIgnoreEmbeddedColorProfile()](#getIgnoreEmbeddedColorProfile--)| Retrieves or modifies the flag denoting whether the embedded color profile is disregarded. |
61
61
|[setIgnoreEmbeddedColorProfile(boolean value)](#setIgnoreEmbeddedColorProfile-boolean-)| Retrieves or modifies the flag denoting whether the embedded color profile is disregarded. |
62
+
|[getOriginalOptions()](#getOriginalOptions--)| Gets the original image options of this [Image](../../com.aspose.imaging/image) instance. |
62
63
|[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-)) and `IHasExifData.ExifData`([IHasExifData.getExifData()](../../com.aspose.imaging.exif/ihasexifdata\#getExifData--)/[IHasExifData.setExifData(ExifData)](../../com.aspose.imaging.exif/ihasexifdata\#setExifData-ExifData-)) values to `null`. |
63
64
|[setResolution(double dpiX, double dpiY)](#setResolution-double-double-)| Establishes the resolution for the specified [RasterImage](../../com.aspose.imaging/rasterimage), ensuring accurate scaling and printing capabilities. |
64
65
|[autoRotate()](#autoRotate--)| Automatically rotates the image based on orientation data extracted from Exif metadata. |
@@ -791,6 +792,16 @@ Retrieves or modifies the flag denoting whether the embedded color profile is di
791
792
| --- | --- | --- |
792
793
| value | boolean ||
793
794
795
+
### getOriginalOptions() {#getOriginalOptions--}
796
+
```
797
+
public ImageOptionsBase getOriginalOptions()
798
+
```
799
+
800
+
801
+
Gets the original image options of this [Image](../../com.aspose.imaging/image) instance.
802
+
803
+
**Returns:**
804
+
[ImageOptionsBase](../../com.aspose.imaging/imageoptionsbase) - A clone of original image options.
Copy file name to clipboardExpand all lines: english/java/com.aspose.imaging/graphics/_index.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -62,8 +62,8 @@ Represents the graphics according to the graphics engine used in the current ass
62
62
|[drawLine(Pen pen, float x1, float y1, float x2, float y2)](#drawLine-com.aspose.imaging.Pen-float-float-float-float-)| Draws a line connecting the two points specified by the coordinate pairs. |
63
63
|[drawLines(Pen pen, Point[] points)](#drawLines-com.aspose.imaging.Pen-com.aspose.imaging.Point---)| Draws a series of line segments that connect an array of `Point` structures. |
64
64
|[drawLines(Pen pen, PointF[] points)](#drawLines-com.aspose.imaging.Pen-com.aspose.imaging.PointF---)| Draws a series of line segments that connect an array of `PointF` structures. |
65
-
|[fillRectangle(Brush brush, Rectangle rect)](#fillRectangle-com.aspose.imaging.Brush-com.aspose.imaging.Rectangle-)| Fills the interior of a rectangle specified by a `Rectangle` structure. |
66
-
|[fillRectangle(Brush brush, RectangleF rect)](#fillRectangle-com.aspose.imaging.Brush-com.aspose.imaging.RectangleF-)| Fills the interior of a rectangle specified by a `RectangleF` structure. |
65
+
|[fillRectangle(Brush brush, Rectangle rect)](#fillRectangle-com.aspose.imaging.Brush-com.aspose.imaging.Rectangle-)| Fills the rectangle specified by a `Rectangle` structure. |
66
+
|[fillRectangle(Brush brush, RectangleF rect)](#fillRectangle-com.aspose.imaging.Brush-com.aspose.imaging.RectangleF-)| Fills the rectangle specified by a `RectangleF` structure. |
67
67
|[fillRectangle(Brush brush, float x, float y, float width, float height)](#fillRectangle-com.aspose.imaging.Brush-float-float-float-float-)| Fills the interior of a rectangle specified by a pair of coordinates, a width and a height. |
68
68
|[fillRectangle(Brush brush, int x, int y, int width, int height)](#fillRectangle-com.aspose.imaging.Brush-int-int-int-int-)| Fills the interior of a rectangle specified by a pair of coordinates, a width and a height. |
69
69
|[fillRectangles(Brush brush, Rectangle[] rects)](#fillRectangles-com.aspose.imaging.Brush-com.aspose.imaging.Rectangle---)| Fills the interiors of a series of rectangles specified by `Rectangle` structures. |
@@ -686,7 +686,7 @@ public void beginUpdate()
686
686
```
687
687
688
688
689
-
Starts caching of the following graphics operations. The graphics effects applied afterwards will not be applied immediately instead the EndUpdate will cause applying all the effects at once.
689
+
Starts caching of the following graphics operations. The graphics effects applied afterward will not be applied immediately instead the EndUpdate will cause applying all the effects at once.
690
690
691
691
Note the effects after BeginUpdate is called will not be applied in case EndUpdate is not called.
692
692
@@ -1112,7 +1112,7 @@ public void fillRectangle(Brush brush, Rectangle rect)
1112
1112
```
1113
1113
1114
1114
1115
-
Fills the interior of a rectangle specified by a `Rectangle` structure.
1115
+
Fills the rectangle specified by a `Rectangle` structure.
1116
1116
1117
1117
**Parameters:**
1118
1118
| Parameter | Type | Description |
@@ -1126,7 +1126,7 @@ public void fillRectangle(Brush brush, RectangleF rect)
1126
1126
```
1127
1127
1128
1128
1129
-
Fills the interior of a rectangle specified by a `RectangleF` structure.
1129
+
Fills the rectangle specified by a `RectangleF` structure.
Loads a new image from the specified file path or URL. If `filePath` is a file path the method just opens the file. If `filePath` is an URL, the method downloads the file, stores it as a temporary one, and opens it.
442
+
Loads a new image from the specified file path or URL. If `filePath` is a file path the method just opens the file. If `filePath` is a URL, the method downloads the file, stores it as a temporary one, and opens it.
0 commit comments