Jelajahi Produk kami

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.Menggambar untuk .NET 22.2

Unduh  Forum Dukungan 

Detail File

  • Unduhan:
  • 4
  • Ukuran File:
  • 7.1 MB
  • Posted By:
  • Sergey Vlasov
  • Tampilan:
  • 16
  • Tanggal Ditambahkan:
  • 2/18/2022

Catatan Rilis

Keterangan

Penginstal MSI untuk Aspose.Drawing untuk .NET 22.2

Detail File

StartCap dan EndCap Independen di Pen

Menerapkan StartCap dan EndCap independen di Pen yang memungkinkan Anda memiliki lebih banyak fleksibilitas dalam gaya topi di awal dan akhir garis yang ditarik melalui API. Contoh kode C# berikut cara menggambar garis dengan warna berbeda menggunakan API:

// 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 bluePen = new Pen(Color.Blue, 2);
graphics.DrawLine(bluePen, 100, 100, 900, 100);

Pen redPen = new Pen(Color.FromArgb(255, 255, 0, 0), 2);
graphics.DrawLine(redPen, 100, 200, 900, 200);

bitmap.Save("Colors.png");

Menambahkan Bentuk Tutup Garis Standar

Menambahkan berbagai jenis standar line cap shapes, seperti flat, square, round, triangle, DiamondAnchor, RoundAnchor, Custom, dll.

Dukungan Format TIFF yang Diperpanjang

Rilis ini telah meningkatkan dukungan untuk grafik raster TIFF (Tagged Image File Format).

Untuk daftar lengkap fitur, peningkatan, dan perbaikan bug dalam rilis ini, kunjungi Aspose.Drawing for .NET 22.2 Release Notes.

 Indonesia