Add repeat count to the gif animation sample

This commit is contained in:
Brian Popow 2022-02-16 22:18:28 +01:00
Родитель c41947f3fc
Коммит 672c812c70
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -19,6 +19,10 @@ Color[] colors = {
// Create empty image.
using Image<Rgba32> gif = new(width, height, Color.Blue);
// Set animation loop repeat count to 5.
var gifMetaData = gif.Metadata.GetGifMetadata();
gifMetaData.RepeatCount = 5;
for (int i = 0; i < colors.Length; i++)
{
// Create a color image, which will be added to the gif.