public static void Run() { Console.WriteLine("Running example SvgNativeResize"); // The path to the documents directory. string dataDir = RunExamples.GetDataDir_ModifyingAndConvertingImages(); // Load the image using (SvgImage image = (SvgImage)Image.Load(dataDir + "aspose_logo.Svg")) { image.Resize(image.Width * 10, image.Height * 15); image.Save(dataDir + "Logotype_10_15_out.png", new PngOptions() { VectorRasterizationOptions = new SvgRasterizationOptions() }); } Console.WriteLine("Finished example SvgNativeResize"); }