如何使用 Inkscape 在横向模式下将 svg 转换为 pdf?
How to convert svg to pdf in landscape mode using Inkscape?
我已经使用 inkscape (https://inkscape.org/release/0.92.3/windows/64-bit/) 将 svg 文件转换为 pdf。我使用了以下命令
"./inkscape.exe " + svgFilePath + " --export-area-drawing --export-pdf=" + pdfFilePath
和
"./inkscape.exe " + svgFilePath + " --export-area-page --export-pdf=" + pdfFilePath
在这两种情况下,生成的 pdf 都是纵向模式。我想在横向模式下将我的 svg 转换为 pdf。我怎样才能做到这一点?
您在此处给出的第一个命令应生成具有实际可见区域或可见对象边界框(看起来像横向)的 pdf。我总是使用该命令将我的 svgs 转换为 pdfs。第二条命令生成类似竖屏模式的pdf
我已经使用 inkscape (https://inkscape.org/release/0.92.3/windows/64-bit/) 将 svg 文件转换为 pdf。我使用了以下命令
"./inkscape.exe " + svgFilePath + " --export-area-drawing --export-pdf=" + pdfFilePath
和
"./inkscape.exe " + svgFilePath + " --export-area-page --export-pdf=" + pdfFilePath
在这两种情况下,生成的 pdf 都是纵向模式。我想在横向模式下将我的 svg 转换为 pdf。我怎样才能做到这一点?
您在此处给出的第一个命令应生成具有实际可见区域或可见对象边界框(看起来像横向)的 pdf。我总是使用该命令将我的 svgs 转换为 pdfs。第二条命令生成类似竖屏模式的pdf