在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例C#语言基础 → [Aspose.PSD for .NET] 示例源码

[Aspose.PSD for .NET] 示例源码

C#语言基础

下载此实例
  • 开发语言:C#
  • 实例大小:86.93M
  • 下载次数:31
  • 浏览次数:659
  • 发布时间:2019-08-17
  • 实例类别:C#语言基础
  • 发 布 人:xiaovsjia
  • 文件格式:.rar
  • 所需积分:8
 相关标签: Aspose .NET POS NET psd

同类人气实例

实例介绍

【实例简介】[Aspose.PSD for .NET](https://products.aspose.com/psd/net) is an advanced image  processing API whic provide extensive manipulation of PSD & PSB file formats without requiring Adobe Photoshop.
Aspose.PSD for .NET allows to create and edit the Photoshop files. The API allows provides the ability to update layer properties, add watermarks, perform graphics operations or convert one file format to another.
This repository contains [Examples](Examples) and Showcase projects for [Aspose.PSD for .NET]

【实例截图】


【核心代码】

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Aspose.PSD.Examples.Aspose.Conversion;
using Aspose.PSD.Examples.Aspose.DrawingAndFormattingImages;
using Aspose.PSD.Examples.Aspose.DrawingImages;
using Aspose.PSD.Examples.Aspose.ModifyingAndConvertingImages.JPEG;
using Aspose.PSD.Examples.Aspose.ModifyingAndConvertingImages.PNG;
using Aspose.PSD.Examples.Aspose.ModifyingAndConvertingImages.PSD;
using Aspose.PSD.Examples.Aspose.ModifyingAndConvertingImages.TIFF;
using Aspose.PSD.Examples.Licensing;

namespace Aspose.PSD.Examples
{
    class RunExamples
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Open RunExamples.cs. \nIn Main() method uncomment the example that you want to run.");
            Console.WriteLine("=====================================================");


            // Uncomment the one you want to try out


            //Metered Licensing
            //MeteredLicensing.Run();
            String licPath = GetDataDir_PSD()   @"Aspose.PSD.NET.lic";
            License lic = new License();
     //       lic.SetLicense(licPath);
            lic.SetLicense(@"C:\Aspose Data\Licenses_2019\Aspose.Total.NET.lic");

            //bool isLicensd = lic.IsLicensed;

            //// =====================================================
            //// =====================================================
            ////            Conversion to Rasters Images
            //// =====================================================
            //// =====================================================

            //PSDToRasterImageFormats.Run();
            //CroppingPSDWhenConvertingToPNG.Run();
            //ApplyMedianAndWienerFilters.Run();
            //ApplyGausWienerFilters.Run();
            //ApplyGausWienerFiltersForColorImage.Run();
            //ApplyMotionWienerFilters.Run();
            //BinarizationWithFixedThreshold.Run();
            //BinarizationWithOtsuThreshold.Run();
            //Garysacling.Run();
            //GIFImageLayersToTIFF.Run();
            //CMYKPSDtoCMYKTiff.Run();
            //SettingforReplacingMissingFonts.Run();
            //SavingtoDisk.Run();
            //SavingtoStream.Run();
            //LoadingFromStream.Run();
            //ExportImagesinMultiThreadEnv.Run();
            //LayerCreationDateTime.Run();
            //SheetColorHighlighting.Run();
            //MergeOnePSDlayerToOther.Run();
            //TextLayerBoundBox.Run();
            //AddIopaResource.Run();
            //LayerEffectsForPSD.Run();
            //InterruptMonitorTest.Run();
            //PossibilityToFlattenLayers.Run();
            //FillOpacityOfLayers.Run ();
            //RenderingOfCurvesAdjustmentLayer.Run();
            //AddCurvesAdjustmentLayer.Run();
            //RenderingOfLevelAdjustmentLayer.Run();
            //AddLevelAdjustmentLayer.Run();
            //AddChannelMixerAdjustmentLayer.Run();
            //AddHueSaturationAdjustmentLayer.Run();
            //RenderingExposureAdjustmentLayer.Run();
            //RenderingExportOfChannelMixerAdjusmentLyer.Run();
            //SupportOfClippingMask.Run();
            //SupportOfLayerMask.Run();
            //ManagePhotoFilterAdjustmentLayer.Run();
            //ManageChannelMixerAdjusmentLayer.Run();
            //ManageExposureAdjustmentLayer.Run();
            //ManageBrightnessContrastAdjustmentLayer.Run();
            //SupportOfAdjusmentLayers.Run();
            //AddTextLayerOnRuntime.Run();

            //// =====================================================
            //// =====================================================
            ////            Drawing and Formatting Images
            //// =====================================================
            //// =====================================================
            //CombiningImages.Run();
            //ExpandandCropImages.Run();
            //CreateXMPMetadata.Run();
            //CreatingbySettingPath.Run();
            //RenderingDropShadow.Run();
            //SupportBlendModes.Run();
            //RenderingColorEffect.Run();
            //AddEffectAtRunTime.Run();
            //ColorOverLayEffect.Run();
            //SupportShadowEffect.Run();
            //This one failed
            // CreatingUsingStream.Run();
            //CroppingbyShifts.Run();
            //CroppingbyRectangle.Run();
            //RotatinganImage.Run();
            //RotatinganImageonaSpecificAngle.Run();
            //SimpleResizing.Run();
            //ResizingwithResizeTypeEnumeration.Run();
            //ResizeImageProportionally.Run();
            //DitheringforRasterImages.Run();
            //AdjustingBrightness.Run();
            //AdjustingContrast.Run();
            //AdjustingGamma.Run();
            //BluranImage.Run();
            //VerifyImageTransparency.Run();
            //ImplementLossyGIFCompressor.Run();
            //ForceFontCache.Run();
            //FontReplacement.Run();

            //Drawing Images
            //DrawingLines.Run();
            //DrawingEllipse.Run();
            //DrawingRectangle.Run();
            //DrawingArc.Run();
            //DrawingBezier.Run();
            //CoreDrawingFeatures.Run();
            //DrawingUsingGraphics.Run();
            //DrawingUsingGraphicsPath.Run();
            //AddStrokeLayer_Pattern.Run();
            //AddStrokeLayer_Gradient.Run();
            //AddStrokeLayer_Color.Run();
            //AddGradientEffects.Run();
            //AddPatternEffects.Run();
            //AddNewRegularLayerToPSD.Run();


            //Modifying and Converting Images
            //JPEG
            //ReadAllEXIFTags.Run();
            //ReadSpecificEXIFTagsInformation.Run();
            //WritingAndModifyingEXIFData.Run();
            //ExtractThumbnailFromPSD.Run();
            //ExtractThumbnailFromJFIF.Run();
            //AddThumbnailToJFIFSegment.Run();
            //AddThumbnailToEXIFSegment.Run();
            //ReadandModifyJpegEXIFTags.Run();
            //ReadAllEXIFTagList.Run();
            //AutoCorrectOrientationOfJPEGImages.Run();
            //SupportForJPEG_LSWithCMYK.Run();
            //SupportFor2_7BitsJPEG.Run();
            //ColorTypeAndCompressionType.Run();

            //PSD
            //ExportImageToPSD.Run();
            //ImportImageToPSDLayer.Run();
            //ColorReplacementInPSD.Run();
            //CreateThumbnailsFromPSDFiles.Run();
            //CreateIndexedPSDFiles.Run();
            //ExportPSDLayerToRasterImage.Run();
            //UpdateTextLayerInPSDFile.Run();
            //DetectFlattenedPSD.Run();
            //MergePSDlayers.Run();
            //GrayScaleSupportForAlpha.Run();
            //SupportLayerForPSD.Run();
            //LoadImageToPSD.Run();
            //SupportOfRGBColor.Run();
            //SupportOfRotateLayer.Run();

            //PNG
            //SpecifyTransparency.Run();
            //SettingResolution.Run();
            //CompressingFiles.Run();
            //SpecifyBitDepth.Run();
            //ApplyFilterMethod.Run();
            //ChangeBackgroundColor.Run();

            //TIFF
            //ExportToMultiPageTiff.Run();
            //TiffOptionsConfiguration.Run();
            //TIFFwithDeflateCompression.Run();
            //TIFFwithAdobeDeflateCompression.Run();
            //CompressingTiff.Run();



            //Technical Articles
            //UncompressedImageUsingFile.Run();
            //UncompressedImageStreamObject.Run();

            //This example has exception
            //ControllCacheReallocation.Run();

            //AddWatermark.Run();
            //AddDiagnolWatermark.Run();
            //ColorConversionUsingICCProfiles.Run();
            //ColorConversionUsingDefaultProfiles.Run();
            //AddSignatureToImage.Run();
            //SupportForInterruptMonitor.Run();



            Console.WriteLine("Press any key to continue...");
            Console.ReadKey();
        }

        public static String GetDataDir_Export(string path)
        {
            return System.IO.Path.GetFullPath(GetDataDir_Data()   "Export/"   path   "/");
        }

        public static String GetDataDir_Files()
        {
            return Path.GetFullPath(GetDataDir_Data()   "Files/");
        }

        public static String GetDataDir_Images(string path)
        {
            return Path.GetFullPath(GetDataDir_Data()   "Images/"   path   "/");
        }

        public static String GetDataDir_PNG()
        {
            return Path.GetFullPath(GetDataDir_Data()   "PNG/");
        }

        public static String GetDataDir_DrawingAndFormattingImages()
        {
            return Path.GetFullPath(GetDataDir_Data()   "DrawingAndFormattingImages/");
        }

        public static String GetDataDir_DICOM()
        {
            return Path.GetFullPath(GetDataDir_Data()   "DICOM/");
        }

        public static String GetDataDir_JPEG()
        {
            return Path.GetFullPath(GetDataDir_Data()   "JPEG/");
        }

        public static String GetDataDir_ModifyingAndConvertingImages()
        {
            return Path.GetFullPath(GetDataDir_Data()   "ModifyingAndConvertingImages/");
        }

        public static String GetDataDir_Cache()
        {
            return Path.GetFullPath(GetDataDir_Data()   "Cache/");
        }

        public static String GetDataDir_MetaFiles()
        {
            return Path.GetFullPath(GetDataDir_Data()   "MetaFiles/");
        }

        public static String GetDataDir_PSD()
        {
            return Path.GetFullPath(GetDataDir_Data()   "PSD/");
        }
        public static String GetDataDir_PSB()
        {
            return Path.GetFullPath(GetDataDir_Data()   "PSB/");
        }

        public static String GetDataDir_WebPImages()
        {
            return Path.GetFullPath(GetDataDir_Data()   "WebPImage/");
        }

        public static String GetDataDir_DjVu()
        {
            return Path.GetFullPath(GetDataDir_Data()   "DjVu/");
        }

        public static string GetDataDir_Data()
        {
            var parent = Directory.GetParent(Directory.GetCurrentDirectory()).Parent;
            string startDirectory = null;
            if (parent != null)
            {
                var directoryInfo = parent.Parent;
                if (directoryInfo != null)
                {
                    startDirectory = directoryInfo.FullName;
                }
            }
            else
            {
                startDirectory = parent.FullName;
            }
            return System.IO.Path.Combine(startDirectory, "Data\\");
        }
    }
}

标签: Aspose .NET POS NET psd

实例下载地址

[Aspose.PSD for .NET] 示例源码

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

第 1 楼 yunfan2004 发表于: 2022-10-07 14:48 59
TiffImage tiffImage = new TiffImage(frames.ToArray());报错

支持(0) 盖楼(回复)

发表评论

(您的评论需要经过审核才能显示)

查看所有1条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警