Files
libreoffice/vcl/source/pdf/PdfConfig.cxx
Tomaž Vajngerl 47df2d88d3 Take the PDF graphic rendering DPI into account when exporting
Change-Id: I1d3465fc7357e6991161d5a96bcd70c53c55f244
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/121087
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
2021-08-27 07:06:58 +02:00

34 lines
841 B
C++

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
*/
#include <pdf/PdfConfig.hxx>
#include <cstdlib>
namespace vcl::pdf
{
/// Get the default PDF rendering resolution in DPI.
double getDefaultPdfResolutionDpi()
{
// If an overriding default is set, use it.
const char* envar = ::getenv("PDFIMPORT_RESOLUTION_DPI");
if (envar)
{
const double dpi = atof(envar);
if (dpi > 0)
return dpi;
}
// Fallback to a sensible default.
return 96.;
}
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */