Aspose::Words::Saving::ImageSaveOptions::set_Resolution method

ImageSaveOptions::set_Resolution method

Sets both horizontal and vertical resolution for the generated images, in dots per inch.

void Aspose::Words::Saving::ImageSaveOptions::set_Resolution(float value)

Remarks

This property has effect only when saving to raster image formats.

Examples

Shows how to specify a resolution while rendering a document to PNG.

auto doc = MakeObject<Document>();
auto builder = MakeObject<DocumentBuilder>(doc);

builder->get_Font()->set_Name(u"Times New Roman");
builder->get_Font()->set_Size(24);
builder->Writeln(u"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.");

builder->InsertImage(ImageDir + u"Logo.jpg");

// Create an "ImageSaveOptions" object which we can pass to the document's "Save" method
// to modify the way in which that method renders the document into an image.
auto options = MakeObject<ImageSaveOptions>(SaveFormat::Png);

// Set the "Resolution" property to "72" to render the document in 72dpi.
options->set_Resolution(72.0f);

doc->Save(ArtifactsDir + u"ImageSaveOptions.Resolution.72dpi.png", options);

ASSERT_GE(120000, MakeObject<System::IO::FileInfo>(ArtifactsDir + u"ImageSaveOptions.Resolution.72dpi.png")->get_Length());

// Set the "Resolution" property to "300" to render the document in 300dpi.
options->set_Resolution(300.0f);

doc->Save(ArtifactsDir + u"ImageSaveOptions.Resolution.300dpi.png", options);

ASSERT_LT(700000, MakeObject<System::IO::FileInfo>(ArtifactsDir + u"ImageSaveOptions.Resolution.300dpi.png")->get_Length());

See Also