This commit adds significant new functionality to the Aspose_CAD_Java project: - CadToPdfPrinter.java: Enables direct printing of CAD files to PDF documents. - ParameterizedCadPrinter.java & PrintByCoordinates.java: Provide advanced printing options, allowing for parameterized and coordinate-based exports. - FindBlockCoordinates.java: A utility to locate block coordinates within CAD drawings, essential for automation. The build system has been updated (pom.xml) to include these new classes, and new run scripts have been added for easier execution. Also includes a large set of examples from the official repository. Relevant .specstory documentation has been added.
8 lines
248 B
Batchfile
8 lines
248 B
Batchfile
@echo off
|
|
cd "C:\Users\83500\久翌\CAD编辑同步excel\测试文件区\02_Aspose_CAD_Java\java"
|
|
echo 正在编译和运行打印程序...
|
|
mvn exec:java -Dexec.mainClass="com.aspose.cad.examples.PrintLayoutByCoordinates"
|
|
echo 操作完成.
|
|
pause
|
|
|