PSD to TIFF csharp

PSD images are commonly used to design graphics. In certain situations, you may need to convert a PSD file to a TIFF image for previewing the contents in different system environments. The following sections explain the PSD conversion scenarios:

PSD to TIFF Image Converter – C# API Installation

Aspose.PSD for .NET API supports working with PSD and several other file formats. You can configure the API by downloading the DLL file from the Downloads section or by using the following NuGet installation command:

PM> Install-Package Aspose.PSD

Convert PSD to TIFF Image Programmatically using C#

You can convert a PSD file to a TIFF image by following the steps below:

  1. Load the input PSD image with the Image class.
  2. Initialize an object of TiffOptions class.
  3. Convert the PSD image to a TIFF file using the Save method.

The code snippet below shows how to convert a PSD image to a TIFF image programmatically in C#:

Convert PSD to TIFF Image with Compression in C#

You can control a PSD file to a TIFF image by specifying different options. For example, the palette, photometric, or compression properties for the output TIFF file. The below steps demonstrate how to convert a PSD image to a TIFF image with compression:

  1. Load the input PSD image with the Image class.
  2. Instantiate an object of TiffOptions class.
  3. Set Compression, Photometric and other options.
  4. Save the output compressed TIFF image.

The following code sample shows how to convert a PSD image to a compressed TIFF image programmatically in C#:

Get Free Evaluation License

You can evaluate the API without any limitations by requesting a free evaluation license.

Conclusion

In conclusion, you have explored how to convert a PSD image to a TIFF image. Moreover, you have learned how to create a TIFF file with compression using C#. Furthermore, please take a look at the documentation to check other features offered by the API. Please feel free to reach out to us at the forum in case of any inquiries.

See Also