Skip to content
Snippets Groups Projects
Commit 94c53729 authored by Pavle Arezina's avatar Pavle Arezina
Browse files

Fixed frame selection for pictures

parent c8fa5319
No related branches found
No related tags found
No related merge requests found
......@@ -118,7 +118,7 @@ namespace Gifitti.View_Models
path = folderBrowserDialog.SelectedPath;
for (int i = 0; i < gm.numberOfFrames; i++)
for (int i = gm.startFrame; i < gm.endFrame; i++)
{
var a = gm.GetFrame(i);
a.Save(path + @"\frame" + i + @"." + IMAGE_TO_EXTENSION[format], format);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment