Product Family

어도비 포토샵 파일 포맷 솔루션

어도비 포토샵과 어도비 일러스트레이터에 의존하지 않는 PSD, PSB 및 AI 파일 형식을 위한 하이 코드 API 및 무료 앱

PSD 파일을 온라인으로 열 수 있는 무료 온라인 앱

이 서비스는 Photoshop없이 온라인으로 PSD 파일을 열 수 있도록 도와줍니다.PSD 파일을 업로드하기만 하면 몇 초 후에 이 파일을 픽셀 단위로 완벽하게 볼 수 있습니다.모든 장치에서 PSD를 열 수 있습니다.

Drag and drop a file or click Open Image

your image

You can reproduce the main functionality of this built-in app using Aspose.PSD for .NET

    using (PsdImage image = (PsdImage)Image.Load(sourceFileName))
    {
	    // To open the PSD File as PNG just use this code
        image.Save(sourceFileName + ".png",  new PngOptions() {  ColorType = PngColorType.TruecolorWithAlpha });
    }

You can download Aspose.PSD for .NET from Nuget package manager

You can reproduce the main functionality of this built-in app using Aspose.PSD for Java

    public static void viewPSDasPNG(String sourceFileName) {
        try {
            PsdLoadOptions loadOptions = new PsdLoadOptions();
            loadOptions.setReadOnlyMode(true);
            
            PsdImage image = null;
            try {
                image = (PsdImage) Image.load(sourceFileName, loadOptions);
                image.save(sourceFileName + ".png", getTruecolorWithAlphaPngOptions());
            } finally {
                if (image != null) {
                    image.dispose();
                }
            }
        } catch (Exception ex) {
            ex.printStackTrace();
        }
    }
    
    private static PngOptions getTruecolorWithAlphaPngOptions() {
        PngOptions options = new PngOptions();
        options.setColorType(PngColorType.TruecolorWithAlpha);
        return options;
    }

You can download Aspose.PSD for Java from Aspose Repository

This App is completely free, but it just a small piece of functionality that offers for you Aspose.PSD library. You can make your own app with any functionality of Aspose.PSD. If you can not find needed feature in Aspose.PSD, you can post on PSD Support Forum. The great support, different priceing plans, prioritized bug fixes and feature releasing for the Paid Support Customers.

List of Aspose.PSD versions for different configurations

Aspose.PSD for .NET

Aspose.PSD for Java


Aspose.PSD for .NET has the version for the most popular .NET versions including: .NET Framework 2, 3.5, 4.0, 4.0CP, .netstandard 2, .NET 5, 6, 7. Version of .NET Library for .NET 7 is suitable for the mobile development
Aspose.PSD for Java made on the Java 1.6, so it can be used in the any popular Java configurations. It's suitable for Cross-platform developement
Official Aspose.PSD for .NET pageOfficial Aspose.PSD for Java page
Aspose.PSD for .NET Pricing plansAspose.PSD for Java Pricing plans

Please check the support forum. Where you can feel the real customer care

Aspose.PSD 보기 모든 PSD 파일을 열고 png로 다운로드할 수 있습니다.PSD 파일을 열면 이 파일의 픽셀 퍼펙트 미리보기가 사용됩니다.색상 당 8 비트, 16 비트 및 32 비트로 PSD 파일을 열 수 있습니다.열린 PSD 파일을 온라인으로 편집하려면 다음을 사용하십시오. PSD 에디터.이 앱은 PSD 온라인에서만 열 수 있습니다.