LongoMatch.Services.RenderingJobsManager.ProcessImage C# (CSharp) Method

ProcessImage() private method

private ProcessImage ( Image image, Time duration ) : void
image Image
duration LongoMatch.Store.Time
return void
        void ProcessImage(Image image, Time duration)
        {
            string path = System.IO.Path.GetTempFileName ().Replace (@"\", @"\\");
            image.Save (path);
            videoEditor.AddImageSegment (path, 0, duration.MSeconds, "", new Area ());
        }

Same methods

RenderingJobsManager::ProcessImage ( PlaylistImage image ) : void