Ürünlerimize göz atın

If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.

 

Aspose.Imaging for .NET 22.4

İndirmek  Destek Forumu 

Dosya Ayrıntıları

  • İndirilenler:
  • 0
  • Dosya Boyutu:
  • 38.3 MB
  • Posted By:
  • samer.el-khatib4aspose
  • Görünümler:
  • 2
  • Eklenme Tarihi:
  • : 11 hours ago [4/11/2022]

Dosya Ayrıntıları

Doku Fırçasını Vectorized PSD’ye Aktar

API aracılığıyla doku fırçalarını vektörleştirilmiş Adobe Photoshop® PSD formatına aktarabilme.

CdrRasterizationOptions rasterizationOptions = new CdrRasterizationOptions();
PsdVectorizationOptions psdVectorizationOptions = new PsdVectorizationOptions()
{
    VectorDataCompositionMode = VectorDataCompositionMode.SeparateLayers
};
PsdOptions psdOptions = new PsdOptions()
{
    VectorRasterizationOptions = rasterizationOptions,
    VectorizationOptions = psdVectorizationOptions
};

string inputFileName = "brushes.cdr";
string outputFileName = "brushes.cdr.psd";

using (Image image = Image.Load(inputFileName))
{
    psdOptions.VectorRasterizationOptions.PageWidth = image.Width;
    psdOptions.VectorRasterizationOptions.PageHeight = image.Height;

    image.Save(outputFileName, psdOptions);
}

İyileştirilmiş Yeniden Örnekleme Kalite şeffaflığı, yeniden örnekleme = renk yoğunluğu

Görüntü işleme API’sinin bu sürümü, saydamlık işleme ve kenarlardaki renk yoğunluğu yoluyla yeniden örnekleme kalitesini önemli ölçüde iyileştirdi.

List<ResizeType> resizeTypes = new List<ResizeType>()
                                    {
                                        ResizeType.NearestNeighbourResample,
                                        ResizeType.AdaptiveResample,
                                        ResizeType.Bell,
                                        ResizeType.BilinearResample,
                                        ResizeType.CatmullRom,
                                        ResizeType.CubicBSpline,
                                        ResizeType.CubicConvolution,
                                        ResizeType.HighQualityResample,
                                        ResizeType.LanczosResample
                                    };
                                    
foreach (ResizeType resizeType in resizeTypes)
{
    using (Image image = Image.Load("square-499.png"))
    {
        image.Resize(400, 400, resizeType);
        image.Save("square-499" + resizeType + ".png");
    }
}

SVG TSPAN Öğelerinin Geliştirilmiş Kullanımı

Önceden, bazı durumlarda SVG “TSPAN” öğelerinin hizalanmasında sorunlar yaşanıyordu. Şimdi bunlar, API’de ele alınan SVG TSPAN öğeleri geliştirilerek çözüldü.

const string baseFolder = @"D:\";
const string fileName = "w3c_tspan02.svg";
var inputFileName = Path.Combine(baseFolder, fileName);
var outFileName = inputFileName + ".png";
using (Image image = Image.Load(inputFileName))
{
    image.Save(outFileName, new PngOptions());
}

Bu sürümdeki özelliklerin, geliştirmelerin ve hata düzeltmelerinin tam listesi için lütfen Aspose.Imaging for .NET 22.4 adresini ziyaret edin.

 Türkçe