---
title: "Load a TIFF for conversion from remote URL in C# .NET | Nutrient .NET SDK"
canonical_url: "https://www.nutrient.io/guides/dotnet/load-a-file/converter/from-remote-url-tiff/"
md_url: "https://www.nutrient.io/guides/dotnet/load-a-file/converter/from-remote-url-tiff.md"
last_updated: "2026-05-20T19:49:34.795Z"
description: "Learn how to convert remote files to various formats like PDF, MS Office, images, and more with our comprehensive guide. Start converting today!"
---

# Load a TIFF for conversion from a remote URL in C#

### PDF

[PDF](https://www.nutrient.io/guides/dotnet/load-a-file/converter/from-remote-url-pdf.md)

### MS Office

[MS Office](https://www.nutrient.io/guides/dotnet/load-a-file/converter/from-remote-url-office.md)

### Image

[Image](https://www.nutrient.io/guides/dotnet/load-a-file/converter/from-remote-url-image.md)

### Bitmap

[Bitmap](https://www.nutrient.io/guides/dotnet/load-a-file/converter/from-remote-url-bitmap.md)

### SVG

[SVG](https://www.nutrient.io/guides/dotnet/load-a-file/converter/from-remote-url-svg.md)

### TIFF

[TIFF](https://www.nutrient.io/guides/dotnet/load-a-file/converter/from-remote-url-tiff.md)

### More...

[More...](https://www.nutrient.io/guides/dotnet/load-a-file/converter/from-remote-url-more.md)

To load and convert a TIFF image from a remote URL, use the [`LoadFromHttp` method](https://www.nutrient.io/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPictureDocumentConverter~LoadFromHttp.html) from the [`GdPictureDocumentConverter` class](https://www.nutrient.io/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPictureDocumentConverter.html).

`LoadFromHttp` accepts:

- `HttpUri` — A `Uri` pointing to the source image.

- `DocumentFormat` (optional) — A member of the [`DocumentFormat` enumeration](https://www.nutrient.io/api/gdpicture/GdPicture.NET.14~GdPicture14.DocumentFormat.html). For TIFF input, use `DocumentFormat.DocumentFormatTIFF`.

`LoadFromHttp` returns a `GdPictureStatus`, which should always be checked before conversion.

To load and convert a TIFF image from a remote URL, use the following code:

### C#

```csharp

using GdPicture14;
using System;

using GdPictureDocumentConverter converter = new GdPictureDocumentConverter();

// Create a Uri variable.
Uri fileUri = new Uri("https://pspdfkit.com/downloads/load-a-file/source.tiff");

GdPictureStatus status = converter.LoadFromHttp(fileUri, DocumentFormat.DocumentFormatTIFF);
if (status!= GdPictureStatus.OK)
{
    Console.WriteLine($"LoadFromHttp failed: {status}");
    return;
}

status = converter.SaveAsPDF(@"C:\temp\output.pdf");
if (status!= GdPictureStatus.OK)
{
    Console.WriteLine($"SaveAsPDF failed: {status}");
}

```

### VB.NET

```vb

Imports GdPicture14

Using converter As New GdPictureDocumentConverter()
    ' Create a Uri variable.
    Dim fileUri As New Uri("https://pspdfkit.com/downloads/load-a-file/source.tiff")

    Dim status As GdPictureStatus = converter.LoadFromHttp(fileUri, DocumentFormat.DocumentFormatTIFF)
    If status <> GdPictureStatus.OK Then
        Console.WriteLine($"LoadFromHttp failed: {status}")
        Return
    End If

    status = converter.SaveAsPDF("C:\temp\output.pdf")
    If status <> GdPictureStatus.OK Then
        Console.WriteLine($"SaveAsPDF failed: {status}")
    End If
End Using

```
---

## Related pages

- [Load an image for conversion in C#](/guides/dotnet/load-a-file/converter/from-local-storage-image.md)
- [Load any file for conversion in C#](/guides/dotnet/load-a-file/converter/from-local-storage-more.md)
- [Load a bitmap (BMP) for conversion in C#](/guides/dotnet/load-a-file/converter/from-local-storage-bitmap.md)
- [Load an Office document for conversion in C#](/guides/dotnet/load-a-file/converter/from-local-storage-office.md)
- [Load a PDF for conversion in C#](/guides/dotnet/load-a-file/converter/from-local-storage-pdf.md)
- [Load a TIFF for conversion in C#](/guides/dotnet/load-a-file/converter/from-local-storage-tiff.md)
- [Load a vector image (SVG) for conversion in C#](/guides/dotnet/load-a-file/converter/from-local-storage-svg.md)
- [Load and convert a bitmap image from a remote URL in C#](/guides/dotnet/load-a-file/converter/from-remote-url-bitmap.md)
- [Load an image for conversion from a remote URL in C#](/guides/dotnet/load-a-file/converter/from-remote-url-image.md)
- [Load any file for conversion from a remote URL in C#](/guides/dotnet/load-a-file/converter/from-remote-url-more.md)
- [Load a PDF for conversion from a remote URL in C#](/guides/dotnet/load-a-file/converter/from-remote-url-pdf.md)
- [Convert documents from remote URLs using C#](/guides/dotnet/load-a-file/converter/from-remote-url-office.md)
- [Load a bitmap (BMP) for conversion from a stream in C#](/guides/dotnet/load-a-file/converter/from-stream-bitmap.md)
- [Load and convert an SVG image from a remote URL in C#](/guides/dotnet/load-a-file/converter/from-remote-url-svg.md)
- [Load any file for conversion from a stream in C#](/guides/dotnet/load-a-file/converter/from-stream-more.md)
- [Load an image for conversion from a stream in C#](/guides/dotnet/load-a-file/converter/from-stream-image.md)
- [Load an Office document for conversion from a stream in C#](/guides/dotnet/load-a-file/converter/from-stream-office.md)
- [Load a PDF for conversion from a stream in C#](/guides/dotnet/load-a-file/converter/from-stream-pdf.md)
- [Load a vector image (SVG) for conversion from a stream in C#](/guides/dotnet/load-a-file/converter/from-stream-svg.md)
- [Load a TIFF for conversion from a stream in C#](/guides/dotnet/load-a-file/converter/from-stream-tiff.md)

