Skip to content

Commit b4b4fb1

Browse files
author
Samer El-Khatib
committed
Release 24.8 - updates
1 parent bede6a3 commit b4b4fb1

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

english/net/aspose.imaging.fileformats.cdr.objects/cdrtransforms/transforms/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ url: /net/aspose.imaging.fileformats.cdr.objects/cdrtransforms/transforms/
1111
Gets or sets the transforms.
1212

1313
```csharp
14-
public List<#=zc2eJoM6xVUfuj_cEkQItiOg=> Transforms { get; set; }
14+
public List<#=z$mgggOyO50buIjKKoEuaTDk=> Transforms { get; set; }
1515
```
1616

1717
### Property Value

english/net/aspose.imaging.fileformats.tiff.filemanagement/tiffstreamreader/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ url: /net/aspose.imaging.fileformats.tiff.filemanagement/tiffstreamreader/
1111
The tiff stream for handling little endian tiff file format.
1212

1313
```csharp
14-
public class TiffStreamReader : #=zIXh65deFjZQqnYazfxvsg$wFr4HAFfhH_meUZbncCcISXKPucU7lXSk=
14+
public class TiffStreamReader : #=zjMjXwecFs8WIn6cGPl_1klo1mka1k$mO$qL$xFueJlCEDY9KZ9EhR7M=
1515
```
1616

1717
## Constructors

english/net/aspose.imaging.fileformats.tiff.filemanagement/tiffstreamwriter/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ url: /net/aspose.imaging.fileformats.tiff.filemanagement/tiffstreamwriter/
1111
The Tiff stream writer.
1212

1313
```csharp
14-
public class TiffStreamWriter : #=zIXh65deFjZQqnYazfxvsg$wFr4HAFfhH_meUZbncCcISXKPucU7lXSk=
14+
public class TiffStreamWriter : #=zjMjXwecFs8WIn6cGPl_1klo1mka1k$mO$qL$xFueJlCEDY9KZ9EhR7M=
1515
```
1616

1717
## Constructors

english/net/aspose.imaging/image/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ public abstract class Image : DataStreamSupporter, IObjectWithBounds
4444
| static [Create](../../aspose.imaging/image/create/#create_2)(Image[], bool) | Creates a new image the specified images as pages. |
4545
| static [Create](../../aspose.imaging/image/create/#create)(ImageOptionsBaseintint) | Creates a new image using the specified create options. |
4646
| static [Load](../../aspose.imaging/image/load/#load)(Stream) | Loads a new image from the specified stream. |
47-
| static [Load](../../aspose.imaging/image/load/#load_2)(string) | Loads a new image from the specified file. |
47+
| static [Load](../../aspose.imaging/image/load/#load_2)(string) | 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. |
4848
| static [Load](../../aspose.imaging/image/load/#load_1)(StreamLoadOptions) | Loads a new image from the specified stream. |
49-
| static [Load](../../aspose.imaging/image/load/#load_3)(stringLoadOptions) | Loads a new image from the specified file. |
49+
| static [Load](../../aspose.imaging/image/load/#load_3)(stringLoadOptions) | 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. |
5050
| abstract [CacheData](../../aspose.imaging/datastreamsupporter/cachedata/)() | Caches the data and ensures no additional data loading will be performed from the underlying [`DataStreamContainer`](../datastreamsupporter/datastreamcontainer/). |
5151
| [CanSave](../../aspose.imaging/image/cansave/)(ImageOptionsBase) | Determines whether image can be saved to the specified file format represented by the passed save options. |
5252
| [Dispose](../../aspose.imaging/disposableobject/dispose/)() | Disposes the current instance. |

english/net/aspose.imaging/image/load/_index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
---
22
title: Image.Load
33
second_title: Aspose.Imaging for .NET API Reference
4-
description: Image method. Loads a new image from the specified file
4+
description: Image method. 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
55
type: docs
66
weight: 20
77
url: /net/aspose.imaging/image/load/
88
---
99
## Load(string, LoadOptions) {#load_3}
1010

11-
Loads a new image from the specified file.
11+
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.
1212

1313
```csharp
1414
public static Image Load(string filePath, LoadOptions loadOptions)
1515
```
1616

1717
| Parameter | Type | Description |
1818
| --- | --- | --- |
19-
| filePath | String | The file path to load image from. |
19+
| filePath | String | The file path or URL to load image from. |
2020
| loadOptions | LoadOptions | The load options. |
2121

2222
### Return Value
@@ -34,15 +34,15 @@ The loaded image.
3434

3535
## Load(string) {#load_2}
3636

37-
Loads a new image from the specified file.
37+
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.
3838

3939
```csharp
4040
public static Image Load(string filePath)
4141
```
4242

4343
| Parameter | Type | Description |
4444
| --- | --- | --- |
45-
| filePath | String | The file path to load image from. |
45+
| filePath | String | The file path or URL to load image from. |
4646

4747
### Return Value
4848

0 commit comments

Comments
 (0)