Просмотрите наши продукты 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.
Иногда даже ширина пера, равная 1, слишком широка для некоторых лазерных принтеров. Быстрым решением для таких сценариев является установка отрицательной ширины пера. Начиная с этого релиза разрешено устанавливать отрицательное значение Pen.Width. В следующем образце кода C# показано, как установить различную ширину для пера с помощью 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); for (int i = 1; i < 8; ++i) { Pen pen = new Pen(Color.Blue, i); graphics.DrawLine(pen, 100, i * 100, 900, i * 100); } bitmap.Save("Width.png");
IsGenericTypographic
StringFormat
Добавлено копируемое свойство IsGenericTypographic StringFormat, чтобы лучше обрабатывать типографику через API.
Добавлена возможность поворота и отражения 24-битной растровой графики BMP.
Полный список функций, улучшений и исправлений ошибок в этом выпуске можно найти на странице Aspose.Drawing for .NET 22.3 Release Notes.