AddBlock
WebPImage.AddBlock method
Добавляет новый блок Webp.
public void AddBlock(IFrame block)
Параметр | Тип | Описание |
---|---|---|
block | IFrame | Блок Webp для добавления. |
Примеры
В этом примере показано, как создать многокадровое анимированное изображение WebP с указанными параметрами.
[C#]
string dir = "c:\\temp\\";
Aspose.Imaging.ImageOptions.WebPOptions createOptions = new Aspose.Imaging.ImageOptions.WebPOptions();
createOptions.Lossless = true;
createOptions.Quality = 100f;
createOptions.AnimBackgroundColor = (uint)Aspose.Imaging.Color.Gray.ToArgb();
// Кадр по умолчанию плюс 36 + 36 дополнительных кадров.
createOptions.AnimLoopCount = 36 + 36 + 1;
// Создаем изображение WebP размером 100x100 пикселей.
using (Aspose.Imaging.FileFormats.Webp.WebPImage webPImage = new Aspose.Imaging.FileFormats.Webp.WebPImage(100, 100, createOptions))
{
// Первый круг красный
Aspose.Imaging.Brushes.SolidBrush brush1 = new Aspose.Imaging.Brushes.SolidBrush(Aspose.Imaging.Color.Red);
// Второй круг черный
Aspose.Imaging.Brushes.SolidBrush brush2 = new Aspose.Imaging.Brushes.SolidBrush(Aspose.Imaging.Color.Black);
// Постепенно увеличивайте угол красной дуги.
for (int angle = 10; angle <= 360; angle += 10)
{
Aspose.Imaging.FileFormats.Webp.WebPFrameBlock block = new Aspose.Imaging.FileFormats.Webp.WebPFrameBlock(100, 100);
Aspose.Imaging.Graphics graphics = new Aspose.Imaging.Graphics(block);
graphics.FillPie(brush1, block.Bounds, 0, angle);
webPImage.AddBlock(block);
}
// Постепенно увеличивайте угол черной дуги и стирайте красную дугу.
for (int angle = 10; angle <= 360; angle += 10)
{
Aspose.Imaging.FileFormats.Webp.WebPFrameBlock block = new Aspose.Imaging.FileFormats.Webp.WebPFrameBlock(100, 100);
Aspose.Imaging.Graphics graphics = new Aspose.Imaging.Graphics(block);
graphics.FillPie(brush2, block.Bounds, 0, angle);
graphics.FillPie(brush1, block.Bounds, angle, 360 - angle);
webPImage.AddBlock(block);
}
// Сохраняем в файл WebP
webPImage.Save(dir + "output.webp");
}
Смотрите также
- interface IFrame
- class WebPImage
- пространство имен Aspose.Imaging.FileFormats.Webp
- сборка Aspose.Imaging