---
title: "Move or copy PDF pages and TIFF images in C# .NET | Nutrient .NET SDK"
canonical_url: "https://www.nutrient.io/guides/dotnet/editor/manipulation/move-or-copy-page/"
md_url: "https://www.nutrient.io/guides/dotnet/editor/manipulation/move-or-copy-page.md"
last_updated: "2026-05-15T19:10:04.984Z"
description: "Learn how to move and copy PDF pages using Nutrient .NET SDK. Follow our simple code examples to manage your PDF files."
---

# Move or copy PDF pages and TIFF images in C#

Nutrient.NET SDK (formerly GdPicture.NET) enables you to move and copy pages in PDF and TIFF files.

## Moving a PDF page

To move a single PDF page, use the [`MovePage`](https://www.nutrient.io/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPicturePDF~MovePage.html) method. Set the page number of the page you want to move (`PageNo`) and its destination (`Destination`). Use the [`GetPageCount`](https://www.nutrient.io/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPicturePDF~GetPageCount.html) method to get the last page number.

To move the last page of a PDF to the second page, use the following code:

### C#

```csharp

using GdPicturePDF gdpicturePDF = new GdPicturePDF();
gdpicturePDF.LoadFromFile(@"C:\temp\source.pdf");
// Move the last page to the second page.
gdpicturePDF.MovePage(PageNo: gdpicturePDF.GetPageCount(), Destination: 2);
gdpicturePDF.SaveToFile(@"C:\temp\output.pdf");

```

### VB.NET

```vb

Using gdpicturePDF As GdPicturePDF = New GdPicturePDF()
    gdpicturePDF.LoadFromFile("C:\temp\source.pdf")
    ' Move the last page to the second page.
    gdpicturePDF.MovePage(PageNo:=gdpicturePDF.GetPageCount(), Destination:=2)
    gdpicturePDF.SaveToFile("C:\temp\output.pdf")
End Using

```

#### Used methods

- [`GetPageCount`](https://www.nutrient.io/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPicturePDF~GetPageCount.html)

- [`LoadFromFile`](/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPicturePDF~LoadFromFile.html)

- [`MovePage`](https://www.nutrient.io/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPicturePDF~MovePage.html)

- [`SaveToFile`](/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPicturePDF~SaveToFile.html)

#### Related topics

- [Load a file](/guides/dotnet/load-a-file.md)

- [Save a ile](/guides/dotnet/save-a-file.md)

## Copying a PDF page

To copy a single PDF page, use the [`ClonePage`](https://www.nutrient.io/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPicturePDF~ClonePage.html) method. Specify the page you want to copy (`PageNo`). The copied page is always added to the end of the file. If you have multiple `GdPicturePDF` objects declared, specify the `FromPDF` parameter to select the PDF where you want to perform the copy operation.

You can reference the same PDF file in the `FromPDF` parameter.

To copy the second page of a PDF to the end of a file, use the following code:

### C#

```csharp

using GdPicturePDF gdpicturePDF = new GdPicturePDF();
gdpicturePDF.LoadFromFile(@"C:\temp\source.pdf");
// Copy the second page.
gdpicturePDF.ClonePage(FromPDF: gdpicturePDF, PageNo: 2);
gdpicturePDF.SaveToFile(@"C:\temp\output.pdf");

```

### VB.NET

```vb

Using gdpicturePDF As GdPicturePDF = New GdPicturePDF()
    gdpicturePDF.LoadFromFile("C:\temp\source.pdf")
    ' Copy the second page.
    gdpicturePDF.ClonePage(FromPDF:=gdpicturePDF, PageNo:=2)
    gdpicturePDF.SaveToFile("C:\temp\output.pdf")
End Using

```

#### Used methods

- [`ClonePage`](https://www.nutrient.io/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPicturePDF~ClonePage.html)

- [`LoadFromFile`](/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPicturePDF~LoadFromFile.html)

- [`SaveToFile`](/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPicturePDF~SaveToFile.html)

### Copying a PDF page to a specified location

To copy a single PDF page to a specific location of a file, follow these steps:

1. [Copy the PDF page](#copying-a-pdf-page).

2. [Move the copied PDF page to the desired location](#moving-a-pdf-page).

To copy the third page of a PDF and move it to the first position, use the following code:

### C#

```csharp

using GdPicturePDF gdpicturePDF = new GdPicturePDF();
gdpicturePDF.LoadFromFile(@"C:\temp\source.pdf");
// Copy the third page.
gdpicturePDF.ClonePage(gdpicturePDF, 3);
// Move the copied page to the first page.
gdpicturePDF.MovePage(gdpicturePDF.GetPageCount(), 1);
gdpicturePDF.SaveToFile(@"C:\temp\output.pdf");

```

### VB.NET

```vb

Using gdpicturePDF As GdPicturePDF = New GdPicturePDF()
    gdpicturePDF.LoadFromFile("C:\temp\source.pdf")
    ' Copy the third page.
    gdpicturePDF.ClonePage(gdpicturePDF, 3)
    ' Move the copied page to the first page.
    gdpicturePDF.MovePage(gdpicturePDF.GetPageCount(), 1)
    gdpicturePDF.SaveToFile("C:\temp\output.pdf")
End Using

```

#### Used methods

- [`ClonePage`](https://www.nutrient.io/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPicturePDF~ClonePage.html)

- [`GetPageCount`](https://www.nutrient.io/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPicturePDF~GetPageCount.html)

- [`LoadFromFile`](/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPicturePDF~LoadFromFile.html)

- [`MovePage`](https://www.nutrient.io/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPicturePDF~MovePage.html)

- [`SaveToFile`](/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPicturePDF~SaveToFile.html)

### Copying multiple PDF pages

To copy multiple PDF pages, use the [`ClonePages`](https://www.nutrient.io/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPicturePDF~ClonePages.html) method. Specify the PDF file you want to copy pages from (`FromPDF`) and the pages you want to copy (`PageRange`). To specify multiple pages or page ranges, separate each declaration with a semicolon. To copy all pages of a PDF, use the `"*"` syntax.

To copy the second page of a PDF to the end of a file, use the following code:

### C#

```csharp

using GdPicturePDF gdpicturePDF = new GdPicturePDF();
using GdPicturePDF gdpictureDestPDF = new GdPicturePDF();
gdpicturePDF.LoadFromFile(@"C:\temp\source.pdf");
gdpictureDestPDF.NewPDF();
for (int i = 0; i < 3; i++)
{
    gdpictureDestPDF.ClonePages(FromPDF: gdpicturePDF, PageRange: "2; 4-5");
}
gdpictureDestPDF.SaveToFile(@"C:\temp\output.pdf");

```

### VB.NET

```vb

Using gdpicturePDF As GdPicturePDF = New GdPicturePDF()
Using gdpictureDestPDF As GdPicturePDF = New GdPicturePDF()
    gdpicturePDF.LoadFromFile("C:\temp\source.pdf")
    gdpictureDestPDF.NewPDF()
    For i = 0 To 2
        gdpictureDestPDF.ClonePages(FromPDF:=gdpicturePDF, PageRange:="2; 4-5")
    Next
    gdpictureDestPDF.SaveToFile("C:\temp\output.pdf")
End Using
End Using

```

#### Used methods

- [`ClonePages`](https://www.nutrient.io/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPicturePDF~ClonePages.html)

- [`LoadFromFile`](/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPicturePDF~LoadFromFile.html)

- [`NewPDF`](/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPicturePDF~NewPDF.html)

- [`SaveToFile`](/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPicturePDF~SaveToFile.html)

#### Related topics

- [Load a file](/guides/dotnet/load-a-file.md)

- [Save a file](/guides/dotnet/save-a-file.md)

## Moving a TIFF page

To move a TIFF page, use the [`TiffMovePage`](https://www.nutrient.io/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPictureImaging~TiffMovePage.html) method. Set the image ID, the page number of the page you want to move, and its destination.

The following methods are used only for editable, multipage TIFF files. To check if a file meets the requirements, use the [`TiffIsEditableMultiPage`](/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPictureImaging~TiffIsEditableMultiPage.html) method. It returns a `true` value if a file is editable and multipage.

To move the second-to-last page of a PDF to the first page, use the following code:

### C#

```csharp

using GdPictureImaging gdpictureImaging = new GdPictureImaging();
int imageID = gdpictureImaging.TiffCreateMultiPageFromFile(@"C:\temp\source.tif");
// Move the second-to-last page to the first page.
gdpictureImaging.TiffMovePage(imageID, gdpictureImaging.GetPageCount(imageID) - 1, 1);
gdpictureImaging.TiffSaveMultiPageToFile(imageID, @"C:\temp\output.tif",
    TiffCompression.TiffCompressionAUTO);
gdpictureImaging.ReleaseGdPictureImage(imageID);

```

### VB.NET

```vb

Using gdpictureImaging As GdPictureImaging = New GdPictureImaging()
    Dim imageID As Integer = gdpictureImaging.TiffCreateMultiPageFromFile("C:\temp\source.tif")
    ' Move the second-to-last page to the first page.
    gdpictureImaging.TiffMovePage(imageID, gdpictureImaging.GetPageCount(imageID) - 1, 1)
    gdpictureImaging.TiffSaveMultiPageToFile(imageID, "C:\temp\output.tif",
        TiffCompression.TiffCompressionAUTO)
    gdpictureImaging.ReleaseGdPictureImage(imageID)
End Using

```

#### Used methods

- [`GetPageCount`](/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPictureImaging~GetPageCount.html)

- [`ReleaseGdPictureImage`](/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPictureImaging~ReleaseGdPictureImage.html)

- [`TiffCreateMultiPageFromFile`](/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPictureImaging~TiffCreateMultiPageFromFile.html)

- [`TiffMovePage`](https://www.nutrient.io/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPictureImaging~TiffMovePage.html)

- [`TiffSaveMultiPageToFile`](/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPictureImaging~TiffSaveMultiPageToFile.html)

#### Related topics

- [Load a file](/guides/dotnet/load-a-file.md)

- [Save a file](/guides/dotnet/save-a-file.md)

## Copying a TIFF page

To copy a TIFF page, you have to extract the desired page from the TIFF file and either save it to a file or as a GdPicture image. After that, either:

- [Append the copied image to the end of the file](#copying-a-tiff-page-to-the-end-of-a-file) with the [`TiffAppendPageFromFile`](https://www.nutrient.io/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPictureImaging~TiffAppendPageFromFile.html) method or the [`TiffAppendPageFromGdPictureImage`](https://www.nutrient.io/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPictureImaging~TiffAppendPageFromGdPictureImage.html) method.

- [Place the copied image at the desired location](#copying-a-tiff-page-to-a-desired-location) with the [`TiffInsertPageFromFile`](https://www.nutrient.io/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPictureImaging~TiffInsertPageFromFile.html) method or the [`TiffInsertPageFromGdPictureImage`](https://www.nutrient.io/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPictureImaging~TiffInsertPageFromGdPictureImage.html) method.

The following methods are used only for editable, multipage TIFF files. To check if a file meets the requirements, use the [`TiffIsEditableMultiPage`](/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPictureImaging~TiffIsEditableMultiPage.html) method. It returns a `true` value if a file is editable and multipage.

### Copying a TIFF page to the end of a file

To copy the last page of a TIFF image to the end of a file, which is done by saving it to a file first, use the following code:

### C#

```csharp

using GdPictureImaging gdpictureImaging = new GdPictureImaging();
int tiffID = gdpictureImaging.TiffCreateMultiPageFromFile("C:\temp\source.tif");
// Extract the last TIFF page to a temp.jpg file.
gdpictureImaging.TiffExtractPage(tiffID, gdpictureImaging.GetPageCount(tiffID),
    @"C:\temp\temp.jpg");
// Open a GdPicture image from the temp.jpg file.
int imageTempID = gdpictureImaging.CreateGdPictureImageFromFile(@"C:\temp\temp.jpg");
// Append the GdPicture image to a TIFF file.
gdpictureImaging.TiffAppendPageFromFile(tiffID, @"C:\temp\temp.jpg");
gdpictureImaging.TiffSaveMultiPageToFile(tiffID, @"C:\temp\output.tif",
    TiffCompression.TiffCompressionAUTO);
gdpictureImaging.ReleaseGdPictureImage(imageTempID);

```

### VB.NET

```vb

Using gdpictureImaging As GdPictureImaging = New GdPictureImaging()
    Dim tiffID As Integer = gdpictureImaging.TiffCreateMultiPageFromFile("C:\temp\source.tif")
    ' Extract the last TIFF page to a temp.jpg file.
    gdpictureImaging.TiffExtractPage(tiffID, gdpictureImaging.GetPageCount(tiffID),
        "C:\temp\temp.jpg")
    ' Open a GdPicture image from the temp.jpg file.
    Dim imageTempID As Integer = gdpictureImaging.CreateGdPictureImageFromFile("C:\temp\temp.jpg")
    ' Append the GdPicture image to the TIFF file.
    gdpictureImaging.TiffAppendPageFromFile(tiffID, "C:\temp\temp.jpg")
    gdpictureImaging.TiffSaveMultiPageToFile(tiffID, "C:\temp\output.tif",
        TiffCompression.TiffCompressionAUTO)
    gdpictureImaging.ReleaseGdPictureImage(imageTempID)
End Using

```

#### Used methods

- [`CreateGdPictureImageFromFile`](/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPictureImaging~CreateGdPictureImageFromFile.html)

- [`GetPageCount`](/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPictureImaging~GetPageCount.html)

- [`ReleaseGdPictureImage`](/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPictureImaging~ReleaseGdPictureImage.html)

- [`TiffAppendPageFromFile`]

- [`TiffCreateMultiPageFromFile`](/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPictureImaging~TiffCreateMultiPageFromFile.html)

- [`TiffExtractPage`](/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPictureImaging~TiffExtractPage.html)

- [`TiffSaveMultiPageToFile`](/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPictureImaging~TiffSaveMultiPageToFile.html)

### Copying a TIFF page to a desired location

To copy the last page of a TIFF image and insert it to the first position of a file, which is done by saving it to a stream, use the following code:

### C#

```csharp

using GdPictureImaging gdpictureImaging = new GdPictureImaging();
int imageID = gdpictureImaging.TiffCreateMultiPageFromFile(@"C:\temp\source.tif");
Stream pStream = new MemoryStream();
// Save the last page to a stream.
gdpictureImaging.TiffExtractPage(imageID, gdpictureImaging.GetPageCount(imageID), pStream);
// Create a new `imageID` from the stream.
int imageTempID = gdpictureImaging.CreateGdPictureImageFromStream(pStream);
// Add the `imageID` to the TIFF file and place it in the first position.
gdpictureImaging.TiffInsertPageFromGdPictureImage(imageID, 1, imageTempID);
gdpictureImaging.TiffSaveMultiPageToFile(imageID, @"C:\temp\output.tif",
    TiffCompression.TiffCompressionAUTO);
gdpictureImaging.ReleaseGdPictureImage(imageTempID);

```

### VB.NET

```vb

Using gdpictureImaging As GdPictureImaging = New GdPictureImaging()
    Dim imageID As Integer = gdpictureImaging.TiffCreateMultiPageFromFile("C:\temp\source.tif")
    Dim pStream As Stream = New MemoryStream()
    ' Save the last page to a stream.
    gdpictureImaging.TiffExtractPage(imageID, gdpictureImaging.GetPageCount(imageID), pStream)
    ' Create a new `imageID` from the stream.
    Dim imageTempID As Integer = gdpictureImaging.CreateGdPictureImageFromStream(pStream)
    ' Add the `imageID` to the TIFF file and place it in the first position.
    gdpictureImaging.TiffInsertPageFromGdPictureImage(imageID, 1, imageTempID)
    gdpictureImaging.TiffSaveMultiPageToFile(imageID, "C:\temp\output.tif",
        TiffCompression.TiffCompressionAUTO)
    gdpictureImaging.ReleaseGdPictureImage(imageTempID)
End Using

```

#### Used methods

- [`CreateGdPictureImageFromStream`](/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPictureImaging~CreateGdPictureImageFromStream.html)

- [`GetPageCount`](/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPictureImaging~GetPageCount.html)

- [`ReleaseGdPictureImage`](/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPictureImaging~ReleaseGdPictureImage.html)

- [`TiffCreateMultiPageFromFile`](/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPictureImaging~TiffCreateMultiPageFromFile.html)

- [`TiffExtractPage`](/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPictureImaging~TiffExtractPage.html)

- [`TiffInsertPageFromGdPictureImage`]

- [`TiffSaveMultiPageToFile`](/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPictureImaging~TiffSaveMultiPageToFile.html)

#### Related topics

- [Load a file](/guides/dotnet/load-a-file.md)

- [Save a file](/guides/dotnet/save-a-file.md)

## Copying an image to the clipboard

To copy an image or part of it to the clipboard, use the [`CopyToClipboard`](https://www.nutrient.io/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPictureImaging~CopyToClipboard.html) method or the [`CopyRegionToClipboard`](https://www.nutrient.io/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPictureImaging~CopyRegionToClipboard.html) method. You can save the copied area to a new GdPicture image and perform any other operation.

When using the [`CopyRegionToClipboard`](https://www.nutrient.io/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPictureImaging~CopyRegionToClipboard.html) method, specify the part of the image you want to copy with the following parameters:

- `SrcLeft` is the X coordinate of the top-left corner.

- `SrcTop` is the Y coordinate of the top-left corner.

- `Width` is the area width.

- `Height` is the area height.

The origin of the coordinate system is the top-left corner of the original image.

To copy an image to the clipboard and save it as a new image, use the following code:

### C#

```csharp

using GdPictureImaging gdpictureImaging = new GdPictureImaging();
int imageID = gdpictureImaging.CreateGdPictureImageFromFile(@"C:\temp\source.jpg");
// Copy the image to the clipboard.
gdpictureImaging.CopyToClipboard(imageID);
int imageDestID = gdpictureImaging.CreateGdPictureImageFromClipboard();
gdpictureImaging.SaveAsJPEG(imageDestID, @"C:\temp\output.jpg");
gdpictureImaging.ReleaseGdPictureImage(imageID);
gdpictureImaging.ReleaseGdPictureImage(imageDestID);

```

### VB.NET

```vb

Using gdpictureImaging As GdPictureImaging = New GdPictureImaging()
    Dim imageID As Integer = gdpictureImaging.CreateGdPictureImageFromFile("C:\temp\source.jpg")
    ' Copy the image to the clipboard.
    gdpictureImaging.CopyToClipboard(imageID)
    Dim imageDestID As Integer = gdpictureImaging.CreateGdPictureImageFromClipboard()
    gdpictureImaging.SaveAsJPEG(imageDestID, "C:\temp\output.jpg")
    gdpictureImaging.ReleaseGdPictureImage(imageID)
    gdpictureImaging.ReleaseGdPictureImage(imageDestID)
End Using

```

#### Used methods

- [`CreateGdPictureImageFromClipboard`](/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPictureImaging~CreateGdPictureImageFromClipboard.html)

- [`CreateGdPictureImageFromFile`](/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPictureImaging~CreateGdPictureImageFromFile.html)

- [`CopyToClipboard`]

- [`ReleaseGdPictureImage`](/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPictureImaging~ReleaseGdPictureImage.html)

- [`SaveAsJPEG`](/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPictureImaging~SaveAsJPEG.html)

To copy the left side of an image, blur it, and save the output to a new image, use the following code:

### C#

```csharp

using GdPictureImaging gdpictureImaging = new GdPictureImaging();
int imageID = gdpictureImaging.CreateGdPictureImageFromFile(@"C:\temp\source.jpg");
// Copy the left side of an image to the clipboard.
gdpictureImaging.CopyRegionToClipboard(imageID, 0, 0,
    gdpictureImaging.GetWidth(imageID) / 2, gdpictureImaging.GetHeight(imageID));
int imageDestID = gdpictureImaging.CreateGdPictureImageFromClipboard();
gdpictureImaging.FxBlur(imageDestID);
gdpictureImaging.SaveAsJPEG(imageDestID, @"C:\temp\output.jpg");
gdpictureImaging.ReleaseGdPictureImage(imageID);
gdpictureImaging.ReleaseGdPictureImage(imageDestID);

```

### VB.NET

```vb

Using gdpictureImaging As GdPictureImaging = New GdPictureImaging()
    Dim imageID As Integer = gdpictureImaging.CreateGdPictureImageFromFile("C:\temp\source.jpg")
    ' Copy the left side of an image to the clipboard.
    gdpictureImaging.CopyRegionToClipboard(imageID, 0, 0,
        gdpictureImaging.GetWidth(imageID) / 2, gdpictureImaging.GetHeight(imageID))
    Dim imageDestID As Integer = gdpictureImaging.CreateGdPictureImageFromClipboard()
    gdpictureImaging.FxBlur(imageDestID)
    gdpictureImaging.SaveAsJPEG(imageDestID, "C:\temp\output.jpg")
    gdpictureImaging.ReleaseGdPictureImage(imageID)
    gdpictureImaging.ReleaseGdPictureImage(imageDestID)
End Using

```

#### Used methods

- [`CreateGdPictureImageFromClipboard`](/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPictureImaging~CreateGdPictureImageFromClipboard.html)

- [`CreateGdPictureImageFromFile`](/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPictureImaging~CreateGdPictureImageFromFile.html)

- [`CopyRegionToClipboard`]

- [`FxBlur`](/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPictureImaging~FxBlur.html)

- [`GetHeight`](/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPictureImaging~GetHeight.html)

- [`GetWidth`](/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPictureImaging~GetWidth.html)

- [`ReleaseGdPictureImage`](/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPictureImaging~ReleaseGdPictureImage.html)

- [`SaveAsJPEG`](/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPictureImaging~SaveAsJPEG.html)

#### Related topics

- [Load a file](/guides/dotnet/load-a-file.md)

- [Save a file](/guides/dotnet/save-a-file.md)
---

## Related pages

- [Set image or PDF colors in C#](/guides/dotnet/editor/manipulation/colors.md)
- [Blur images in C# .NET](/guides/dotnet/editor/manipulation/blur.md)
- [Extract pages from a PDF in C#](/guides/dotnet/editor/manipulation/extract.md)
- [Crop images in C# .NET](/guides/dotnet/editor/manipulation/crop.md)
- [Image filters using C# .NET](/guides/dotnet/editor/manipulation/filters.md)
- [PDF and image manipulation in C# .NET](/guides/dotnet/editor/manipulation.md)
- [Remove pages from PDFs in C#](/guides/dotnet/editor/manipulation/remove-page.md)
- [Replace colors in an image](/guides/dotnet/editor/manipulation/replace-colors-from-image.md)
- [Rotate images and PDFs in C# .NET](/guides/dotnet/editor/manipulation/rotate.md)

