This program convert .step format files to .pdf with 3d models.
SPDF3D.exe -i <path_to_step> -o <save_path_pdf3d>
I created this program because, i couldn't find free and opensource converter. I used this program to convert lots of files in company.
Before compile SPDF3D project. You need compile this dependicies:
- OpenCascade - Modeling library
- Libharu - Free pdf library
- GLM - 3D Mathematics library
- libPRC - PRC file format library.
You should run cmake gui and configure necessary variables. Optionaly, you can using terminal:
cmake <path_to_source> \
-GLM_ROOT_DIR=<path> \
-HARU_INCLUDES_DIR=<path> \
-HARU_DBG_LIB_DIR=<path> \
-HARU_OPT_LIB_DIR=<path> \
-PRC_INCLUDES_DIR=<path> \
-PRC_DBG_LIBS_DIR=<path> \
-PRC_OPT_LIBS_DIR=<path> \
-OCS_INCLUDES_DIR=<path> \
-OCS_DBG_LIBS_DIR=<path> \
-OCS_OPT_LIBS_DIR=<path> \
-ZLIB_DBG_LIBS_DIR=<path> \
-ZLIB_OPT_LIBS_DIR=<path> \
This program use MIT license.