Aspose.Tasks.Examples.CSharp.ConvertingProjectData.RenderProjectDataToFormat24bppRgb.Run C# (CSharp) Method

Run() public static method

public static Run ( ) : void
return void
        public static void Run()
        {
            // The path to the documents directory.
            string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType.FullName);

            // ExStart:RenderProjectDataToFormat24bppRgb
            Project project = new Project(dataDir + "TestProject1.mpp");
            ImageSaveOptions options = new ImageSaveOptions(SaveFileFormat.TIFF);
            options.HorizontalResolution = 72;
            options.VerticalResolution = 72;
            options.PixelFormat = PixelFormat.Format24bppRgb;
            project.Save(dataDir + "RenderProjectDataToFormat24bppRgb_out.tif", options);
            // ExEnd:RenderProjectDataToFormat24bppRgb
        }
    }
RenderProjectDataToFormat24bppRgb