Last active
October 25, 2023 08:46
-
-
Save conholdate-gists/8d9ceb05ce374c9927fcbc6fa2c0a627 to your computer and use it in GitHub Desktop.
Free View Adobe PSD Image Online | Photoshop PSD File Viewer in C# .NET | Open PSD
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Create a Viewer class object | |
using (var viewer = new Viewer("sample.psd")) | |
{ | |
// Convert a PSD file to PNG. | |
var options = new PngViewOptions("output.png"); | |
// View Adobe PSD File | |
viewer.View(options); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Create a Viewer class object | |
com.groupdocs.viewer.Viewer viewer = new com.groupdocs.viewer.Viewer("sample.psd"); | |
// Convert a PSD file to PNG | |
com.groupdocs.viewer.options.PngViewOptions options = new com.groupdocs.viewer.options.PngViewOptions("output.png"); | |
// View Adobe PSD File | |
viewer.view(options); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment