Skip to content

Commit 83e8a33

Browse files
author
Evgeniy Sidenko
committed
Aspose.Imaging for Java 26.5
1 parent 0fbacaa commit 83e8a33

162 files changed

Lines changed: 294 additions & 272 deletions

File tree

Some content is hidden

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

Examples/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.aspose</groupId>
55
<artifactId>imaging-java-examples</artifactId>
6-
<version>25.10</version>
6+
<version>26.5</version>
77
<packaging>jar</packaging>
88
<properties>
99
<maven.compiler.source>1.8</maven.compiler.source>
@@ -15,12 +15,12 @@
1515
<dependency>
1616
<groupId>com.aspose</groupId>
1717
<artifactId>aspose-imaging</artifactId>
18-
<version>25.10</version>
18+
<version>26.5</version>
1919
</dependency>
2020
<dependency>
2121
<groupId>com.aspose</groupId>
2222
<artifactId>aspose-imaging</artifactId>
23-
<version>25.10</version>
23+
<version>26.5</version>
2424
<classifier>javadoc</classifier>
2525
</dependency>
2626
</dependencies>

Examples/src/main/java/com/aspose/imaging/examples/CDR/SupportOfCDR.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public class SupportOfCDR {
1717
public static void main(String[] args)
1818
{
1919
Logger.startExample("SupportOfCDR");
20-
// The path to the documents directory.
20+
// The path to the document directory.
2121
String baseFolder = Utils.getSharedDataDir() + "CDR/";
2222
String inputFileName = baseFolder + "test.cdr";
2323

Examples/src/main/java/com/aspose/imaging/examples/CMX/CMXToPNGConversion.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public class CMXToPNGConversion {
1616

1717
public static void main(String[] args) {
1818
Logger.startExample("CMXToPNGConversion");
19-
// The path to the documents directory.
19+
// The path to the document directory.
2020
String dataDir = Utils.getSharedDataDir() + "CMX/";
2121

2222

Examples/src/main/java/com/aspose/imaging/examples/ConvertingImages/AddDiagonalWatermarkToImage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public static void main(String... args)
1111
{
1212
Logger.startExample("AddDiagonalWatermarkToImage");
1313

14-
// The path to the documents directory.
14+
// The path to the document directory.
1515
String dataDir = Utils.getSharedDataDir() + "ModifyingImages/";
1616

1717
// Load an existing JPG image

Examples/src/main/java/com/aspose/imaging/examples/ConvertingImages/AlignHorizontalAndVeticalResolutionsOfImage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public class AlignHorizontalAndVeticalResolutionsOfImage
1010
public static void main(String... args)
1111
{
1212
Logger.startExample("AlignHorizontalAndVeticalResolutionsOfImage");
13-
// The path to the documents directory.
13+
// The path to the document directory.
1414
String dataDir = Utils.getSharedDataDir() + "ConvertingImages/";
1515

1616
try (TiffImage image = (TiffImage) com.aspose.imaging.Image.load(dataDir + "sample.tiff"))

Examples/src/main/java/com/aspose/imaging/examples/ConvertingImages/ApplyCorrectionFilterOnImage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
public class ApplyCorrectionFilterOnImage {
99
public static void main(String... args) {
1010
Logger.startExample("ApplyCorrectionFilterOnImage");
11-
// The path to the documents directory.
11+
// The path to the document directory.
1212
String dataDir = Utils.getSharedDataDir() + "ConvertingImages/";
1313

1414
try (RasterImage rasterImage = (RasterImage)Image.load(dataDir + "aspose-logo.jpg"))

Examples/src/main/java/com/aspose/imaging/examples/ConvertingImages/ApplyGaussWienerFilter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public class ApplyGaussWienerFilter
1010
{
1111
public static void main(String... args) {
1212
Logger.startExample("ApplyGaussWienerFilter");
13-
// The path to the documents directory.
13+
// The path to the document directory.
1414
String dataDir = Utils.getSharedDataDir() + "ConvertingImages/";
1515
Image image = Image.load(dataDir + "aspose-logo.gif");
1616
try

Examples/src/main/java/com/aspose/imaging/examples/ConvertingImages/ApplyGaussWienerFilterForColoredImage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public class ApplyGaussWienerFilterForColoredImage
1111
public static void main(String... args) {
1212
Logger.startExample("ApplyGaussWienerFilterForColoredImage");
1313

14-
// The path to the documents directory.
14+
// The path to the document directory.
1515
String dataDir = Utils.getSharedDataDir() + "ConvertingImages/";
1616

1717
try (Image image = Image.load(dataDir + "aspose-logo.gif"))

Examples/src/main/java/com/aspose/imaging/examples/ConvertingImages/ApplyMedianAndWienerFilters.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@ public class ApplyMedianAndWienerFilters
1111
public static void main(String... args) {
1212
Logger.startExample("ApplyMedianAndWienerFilters");
1313

14-
// The path to the documents directory.
14+
// The path to the document directory.
1515
String dataDir = Utils.getSharedDataDir() + "ConvertingImages/";
1616

1717
// Load the noisy image
1818
try (Image image = Image.load(dataDir + "aspose-logo.gif"))
1919
{
20-
// caste the image into RasterImage
20+
// Cast the image to a RasterImage
2121
RasterImage rasterImage = (RasterImage) image;
2222

23-
// Create an instance of MedianFilterOptions class and set the size.
23+
// Create an instance of MedianFilterOptions with the desired size, apply the filter to the RasterImage, and save the resulting image
2424
MedianFilterOptions options = new MedianFilterOptions(4);
2525

2626
// Apply MedianFilterOptions filter to RasterImage object.
@@ -31,5 +31,4 @@ public static void main(String... args) {
3131
}
3232
Logger.endExample();
3333
}
34-
3534
}

Examples/src/main/java/com/aspose/imaging/examples/ConvertingImages/ApplyMotionWienerFilter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
public class ApplyMotionWienerFilter {
1010
public static void main(String... args) {
1111
Logger.startExample("ApplyMotionWienerFilter");
12-
// The path to the documents directory.
12+
// The path to the document directory.
1313
String dataDir = Utils.getSharedDataDir() + "ConvertingImages/";
1414
try (Image image = Image.load(dataDir + "aspose-logo.gif"))
1515
{

0 commit comments

Comments
 (0)