Ü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.8

İndirmek  Destek Forumu 

Dosya Ayrıntıları

  • Downloads:
  • 1
  • File Size:
  • 43.51MB
  • Date Added:
  • 4/8/2022

Dosya Ayrıntıları

JPG kaydedilmiş kalite tahmini uygulandı

.NET C# kodu aracılığıyla “JPG” görüntü kalitesini programlı olarak yapılandırın.

using (JpegImage image = (JpegImage)Image.Load("cat.jpg"))
{
    bool isNotDefaultQuality = image.JpegOptions.Quality != 75;
}

Tüm kitaplıktaki hata mesajlarını gözden geçirin

Hata mesajlarını doğru ve daha kullanışlı hale getirmek için gözden geçirin.

try
{
    // invalid CDR with no pages
    using (var image = Image.Load("city-auto-skf_2.cdr"))
    {

    }
}
catch (Exception e)
{
    var correctMessage = "CDR document contains no pages.";
    if (e.InnerException.Message != correctMessage)
    {
        throw;
    }
}

‘WMZ’yi ‘PNG’ Formatına Dönüştür

Sıkıştırılmış Windows Media Player® WMZ dosyasını PNG tarama formatına aktarın.

using (var image = Image.Load("image.wmz"))
{
    var options = new PngOptions
    {
        VectorRasterizationOptions = new WmfRasterizationOptions()
        {
            PageHeight = image.Height,
            PageWidth = image.Width
        }
    };

    image.Save("result.png", options);
}

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

 Türkçe