Skip to content

Commit 5d3e86a

Browse files
committed
feat Aspose.PDF NET 25.7
1 parent b34144c commit 5d3e86a

File tree

295 files changed

+948
-308
lines changed

Some content is hidden

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

295 files changed

+948
-308
lines changed

english/net/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ is_root: true
2828
| [Aspose.Pdf.Printing](./aspose.pdf.printing/) | The **Aspose.Pdf.Printing** namespace provides classes and functionalities for handling PDF printing operations, including printer settings, page settings, and extensions for managing print-related configurations. |
2929
| [Aspose.Pdf.Sanitization](./aspose.pdf.sanitization/) | The **Aspose.Pdf.Sanitization** is a namespace for sanitization operations. |
3030
| [Aspose.Pdf.Security](./aspose.pdf.security/) | The **Aspose.Pdf.Security** namespace contains classes used for encryption and digital signing. |
31+
| [Aspose.Pdf.Signatures](./aspose.pdf.signatures/) | The **Aspose.Pdf.Signatures** namespace contains classes used for detecting compromised signatures. |
3132
| [Aspose.Pdf.Structure](./aspose.pdf.structure/) | The **Aspose.Pdf.Structure** namespace provides classes which help to work with a logical structure of a document which presents the organization of the document into chapters and sections or the identification of special elements such as figures, tables, and footnotes. |
3233
| [Aspose.Pdf.Tagged](./aspose.pdf.tagged/) | The **Aspose.Pdf.Tagged** is a namespace for classes for support of Tagged PDF documents. |
3334
| [Aspose.Pdf.Text](./aspose.pdf.text/) | The **Aspose.Pdf.Text** namespace provides classes that allow to extract text, add text, manipulate existing text of a document. It also contain classes that allow to extract, replace, substitute fonts of a document. |

english/net/aspose.pdf.devices/bmpdevice/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ public sealed class BmpDevice : ImageDevice
4040

4141
| Name | Description |
4242
| --- | --- |
43+
| [GetBitmap](../../aspose.pdf.devices/imagedevice/getbitmap/)(Page) | Converts the page into Bitmap. |
4344
| override [Process](../../aspose.pdf.devices/bmpdevice/process/#process)(PageStream) | Converts the page into bmp and saves it in the output stream. |
4445
| [Process](../../aspose.pdf.devices/pagedevice/process/)(Pagestring) | Perfoms some operation on the given page and saves results into the file. |
4546

english/net/aspose.pdf.devices/dicomdevice/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ public sealed class DicomDevice : ImageDevice
4040

4141
| Name | Description |
4242
| --- | --- |
43+
| [GetBitmap](../../aspose.pdf.devices/imagedevice/getbitmap/)(Page) | Converts the page into Bitmap. |
4344
| override [Process](../../aspose.pdf.devices/dicomdevice/process/#process)(PageStream) | Converts the page into Dicom and saves it in the output stream. |
4445
| [Process](../../aspose.pdf.devices/pagedevice/process/)(Pagestring) | Perfoms some operation on the given page and saves results into the file. |
4546

english/net/aspose.pdf.devices/emfdevice/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ public sealed class EmfDevice : ImageDevice
4040

4141
| Name | Description |
4242
| --- | --- |
43+
| [GetBitmap](../../aspose.pdf.devices/imagedevice/getbitmap/)(Page) | Converts the page into Bitmap. |
4344
| override [Process](../../aspose.pdf.devices/emfdevice/process/#process)(PageStream) | Converts the page into emf and saves it in the output stream. |
4445
| [Process](../../aspose.pdf.devices/pagedevice/process/)(Pagestring) | Perfoms some operation on the given page and saves results into the file. |
4546

english/net/aspose.pdf.devices/gifdevice/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ public sealed class GifDevice : ImageDevice
4040

4141
| Name | Description |
4242
| --- | --- |
43+
| [GetBitmap](../../aspose.pdf.devices/imagedevice/getbitmap/)(Page) | Converts the page into Bitmap. |
4344
| override [Process](../../aspose.pdf.devices/gifdevice/process/#process)(PageStream) | Converts the page into gif and saves it in the output stream. |
4445
| [Process](../../aspose.pdf.devices/pagedevice/process/)(Pagestring) | Perfoms some operation on the given page and saves results into the file. |
4546

english/net/aspose.pdf.devices/imagedevice/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ public abstract class ImageDevice : PageDevice
4040

4141
| Name | Description |
4242
| --- | --- |
43+
| [GetBitmap](../../aspose.pdf.devices/imagedevice/getbitmap/)(Page) | Converts the page into Bitmap. |
4344
| abstract [Process](../../aspose.pdf.devices/pagedevice/process/)(PageStream) | Perfoms some operation on the given page, e.g. converts page into graphic image. |
4445
| [Process](../../aspose.pdf.devices/pagedevice/process/)(Pagestring) | Perfoms some operation on the given page and saves results into the file. |
4546

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
title: ImageDevice.GetBitmap
3+
second_title: Aspose.PDF for .NET API Reference
4+
description: ImageDevice method. Converts the page into Bitmap
5+
type: docs
6+
weight: 80
7+
url: /net/aspose.pdf.devices/imagedevice/getbitmap/
8+
---
9+
## ImageDevice.GetBitmap method
10+
11+
Converts the page into Bitmap.
12+
13+
```csharp
14+
public Bitmap GetBitmap(Page page)
15+
```
16+
17+
| Parameter | Type | Description |
18+
| --- | --- | --- |
19+
| page | Page | The page to convert. |
20+
21+
### See Also
22+
23+
* class [Page](../../../aspose.pdf/page/)
24+
* class [ImageDevice](../)
25+
* namespace [Aspose.Pdf.Devices](../../../aspose.pdf.devices/)
26+
* assembly [Aspose.PDF](../../../)
27+
28+

english/net/aspose.pdf.devices/jpegdevice/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ public sealed class JpegDevice : ImageDevice
4444

4545
| Name | Description |
4646
| --- | --- |
47+
| [GetBitmap](../../aspose.pdf.devices/imagedevice/getbitmap/)(Page) | Converts the page into Bitmap. |
4748
| override [Process](../../aspose.pdf.devices/jpegdevice/process/#process)(PageStream) | Converts the page into jpeg and saves it in the output stream. |
4849
| [Process](../../aspose.pdf.devices/pagedevice/process/)(Pagestring) | Perfoms some operation on the given page and saves results into the file. |
4950

english/net/aspose.pdf.devices/pngdevice/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ public sealed class PngDevice : ImageDevice
4141

4242
| Name | Description |
4343
| --- | --- |
44+
| [GetBitmap](../../aspose.pdf.devices/imagedevice/getbitmap/)(Page) | Converts the page into Bitmap. |
4445
| override [Process](../../aspose.pdf.devices/pngdevice/process/#process)(PageStream) | Converts the page into png and saves it in the output stream. |
4546
| [Process](../../aspose.pdf.devices/pagedevice/process/)(Pagestring) | Perfoms some operation on the given page and saves results into the file. |
4647

english/net/aspose.pdf.devices/thumbnaildevice/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ public sealed class ThumbnailDevice : ImageDevice
3636

3737
| Name | Description |
3838
| --- | --- |
39+
| [GetBitmap](../../aspose.pdf.devices/imagedevice/getbitmap/)(Page) | Converts the page into Bitmap. |
3940
| override [Process](../../aspose.pdf.devices/thumbnaildevice/process/#process)(PageStream) | Converts the page into thumbnail image png and saves it in the output stream. |
4041
| [Process](../../aspose.pdf.devices/pagedevice/process/)(Pagestring) | Perfoms some operation on the given page and saves results into the file. |
4142

0 commit comments

Comments
 (0)