PDF: Difference between revisions

From FreeCAD Documentation
m (Changed section to 'Usage')
No edit summary
 
(9 intermediate revisions by 4 users not shown)
Line 2: Line 2:
<translate>
<translate>


</translate>
{{TOCright}}
<translate>


== Description == <!--T:1-->
== Description == <!--T:1-->
Line 9: Line 12:


<!--T:3-->
<!--T:3-->
PDF is based on the PostScript language, which is a vector-based format to describe pages. In this sense it's similar to [[SVG]], as it allows scaling a drawing to any size without losing its shape or amount of details.
PDF is based on the PostScript language, which is a vector-based format to describe pages. In this sense it's similar to [[SVG|SVG]], as it allows scaling a drawing to any size without losing its shape or amount of details.


<!--T:4-->
<!--T:4-->
Nevertheless, a PDF can contain many things, including text, fonts, vector graphics, and [[bitmap]] images. PDF was standardized as an open format in 2008, as ISO 32000.
Nevertheless, a PDF can contain many things, including text, fonts, vector graphics, and [[bitmap|bitmap]] images. PDF was standardized as an open format in 2008, as ISO 32000.


<!--T:5-->
<!--T:5-->
Line 20: Line 23:


<!--T:7-->
<!--T:7-->
As FreeCAD is based on the Qt graphical toolkit, it can export the 3D view natively to PDF. This can be useful to export carefully created drawings that other users don't need to modify. For example, pages created with the [[TechDraw Workbench]] can be exported in this way for sharing or printing. In many cases it is also possible to perform two way conversion between PDF and [[SVG]].
As FreeCAD is based on the Qt graphical toolkit, it can export the [[3D_view|3D view]] natively to PDF. This can be useful to export carefully created drawings that other users don't need to modify. For example, pages created with the [[TechDraw_Workbench|TechDraw Workbench]] can be [[Std_Export|exported]] in this way for sharing or printing. In many cases it is also possible to perform two way conversion between PDF and [[SVG|SVG]].


<!--T:8-->
<!--T:8-->
The option to export to PDF is available in the menu {{MenuCommand|File → Export PDF}}.
The option to export to PDF is available in the {{MenuCommand|File → [[Std_Export|Export PDF]]}} menu.


<!--T:9-->
==Related== <!--T:11-->

{{Userdocnavi}}
<!--T:12-->
* See also: [[File:Std_Export.svg|24px]] [[Std_Export|Std Export]] and [[File:Std_PrintPdf.svg|24px]] [[Std_PrintPdf|Std PrintPdf]].

<!--T:15-->
* For [[Power_users_hub|power users]], there is an option to utilize the [[Python_console|Python console]] to export a PDF.


<!--T:10-->
[[Category:TechDraw]]


</translate>
</translate>
<!--T:9-->
{{Userdocnavi{{#translation:}}}}
[[Category:File_Formats{{#translation:}}]]

Latest revision as of 16:15, 1 January 2021

Description

Portable Document Format (PDF) is a file format developed by Adobe in the 1990s to present documents, including text and images.

PDF is based on the PostScript language, which is a vector-based format to describe pages. In this sense it's similar to SVG, as it allows scaling a drawing to any size without losing its shape or amount of details.

Nevertheless, a PDF can contain many things, including text, fonts, vector graphics, and bitmap images. PDF was standardized as an open format in 2008, as ISO 32000.

PDF is commonly used as a sharing format, that is, to share documents, text, or images, that will display and print exactly as the author intended.

Usage

As FreeCAD is based on the Qt graphical toolkit, it can export the 3D view natively to PDF. This can be useful to export carefully created drawings that other users don't need to modify. For example, pages created with the TechDraw Workbench can be exported in this way for sharing or printing. In many cases it is also possible to perform two way conversion between PDF and SVG.

The option to export to PDF is available in the File → Export PDF menu.

Related