Ürünlerimize göz atın Toggle navigation
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.
If you experience errors, when you try to download a file, make sure your network policies (enforced by your company or ISP) allow downloading ZIP and/or MSI files.
Image.Tag
Resimle ilgili ek veriler sağlayan Image.Tag özelliği eklendi.
Performans, PNG oluşturma ve kaydetme için optimize edilmiştir. Aşağıdaki C# kodu PNG’yi API kullanarak işler:
// Example to create a new drawing in C# .NET and render as a PNG. // See https://github.com/aspose-drawing/Aspose.Drawing-for-.NET and https://docs.aspose.com/drawing/net/ for more examples. // Create a new drawing Bitmap bitmap = new Bitmap(1000, 800, System.Drawing.Imaging.PixelFormat.Format32bppPArgb); Graphics graphics = Graphics.FromImage(bitmap); // Save drawing bitmap.Save(RunExamples.GetDataDir() + @"drawing.png");
Daha doğru bir sonuç elde etmek için Ark çiziminde iyileştirmeler yapıldı. Aşağıdaki C# kodu, Arc’ın nasıl çizileceğini ve API kullanılarak PNG olarak kaydedileceğini gösterir:
// For complete examples and data files, please go to https://github.com/aspose-drawing/Aspose.Drawing-for-.NET using System.Drawing; Bitmap bitmap = new Bitmap(1000, 800, System.Drawing.Imaging.PixelFormat.Format32bppPArgb); Graphics graphics = Graphics.FromImage(bitmap); Pen pen = new Pen(Color.Blue, 2); graphics.DrawArc(pen, 0, 0, 700, 700, 0, 180); bitmap.Save("DrawArc.png");
Bu sürümdeki özelliklerin, geliştirmelerin ve hata düzeltmelerinin tam listesi için lütfen Aspose.Drawing for .NET 22.1 Release Notes adresini ziyaret edin.