python进行AutoCAD绘图批量打印,土木狗可以有

civilpy:python进行AutoCAD绘图的两个库,土木狗可以有3 赞同 · 0 评论文章​编辑

本主搜集了大量的土木图纸,寄希望有一天AI可以炼化,解放土狗的悲催一生。

from pyautocad import Autocad
import win32com.client
import win32print
import pythoncom
import time

# 创建AutoCAD对象
acad = win32com.client.Dispatch("AutoCAD.Application.23")

# 获取活动文档和模型空间
acaddoc = acad.ActiveDocument
acadmod = acaddoc.ModelSpace
layout = acaddoc.layouts.item('Model')
plot = acaddoc.Plot

# 获取默认打印机
_PRINTER = win32print.GetDefaultPrinter()
_HPRINTER = win32print.OpenPrinter(_PRINTER)

# 打印样式设置函数
def PrinterStyleSetting():
    acaddoc.SetVariable('BACKGROUNDPLOT', 0)
    layout.ConfigName = 'RICOH MP C2011'
    layout.StyleSheet = 'monochrome.ctb'
    layout.PlotWithLineweights = False
    layout.CanonicalMediaName = 'A3'
    layout.PlotRotation = 1
    layout.CenterPlot = True
    layout.PlotWithPlotStyles = True
    layout.PlotHidden = False
    print(layout.GetPlotStyleTableNames()[-1])
    layout.PlotType = 4

# 默认起始位置和绘图尺寸
DEFAULT_START_POSITION = (3, 3)
DRAWING_SIZE = (598, 422)
DRAWING_INTEND = 700

# 后台打印类
class BackPrint(object):
    _instance = None

    def __new__(cls, *args, **kw):
        if cls._instance is None:
            cls._instance = super(BackPrint, cls).__new__(cls)
        return cls._instance

    def __init__(self, PositionX, PositionY):
        self.x = PositionX
        self.y = PositionY

    @staticmethod
    def APoint(x, y):
        return win32com.client.VARIANT(pythoncom.VT_ARRAY | pythoncom.VT_R8, (x, y))

    def run(self, Scale=1.0):
        po1 = self.APoint(self.x * Scale - 1, self.y * Scale)
        po2 = self.APoint(self.x * Scale - 1 + DRAWING_SIZE[0], self.y * Scale + DRAWING_SIZE[1])
        layout.SetWindowToPlot(po1, po2)
        PrinterStyleSetting()
        plot.PlotToDevice()

# 打印任务类
class PrintTask:
    def __init__(self, maxPrintPositionArray, startPosition=(DEFAULT_START_POSITION[0], DEFAULT_START_POSITION[1])):
        self._PrinterStatus = 'Waiting'
        self.maxPrintPositionArray = maxPrintPositionArray
        self.printBasePointArray = []
        self.taskPoint = startPosition
        self.PrintingTaskNumber = 0

    def runtask(self):
        if not self.printBasePointArray:
            self.printBasePointArray = self.generalPrintBasePointArray(self.maxPrintPositionArray)

        for position in self.printBasePointArray:
            self.taskPoint = position
            current_task = BackPrint(*position)
            current_task.run()

            self.PrintingTaskNumber = len(win32print.EnumJobs(_HPRINTER, 0, -1, 1))

            while self.PrintingTaskNumber >= 5:
                time.sleep(1)
                self.PrintingTaskNumber = len(win32print.EnumJobs(_HPRINTER, 0, -1, 1))
            time.sleep(1)

    def ResumeTask(self):
        pass

    def generalPrintBasePointArray(self, maxPrintPositionArray):
        printBasePointArray = []
        next_drawing_xORy_intend = DRAWING_INTEND

        current_x = int((self.taskPoint[0] - 4) / DRAWING_INTEND) * DRAWING_INTEND + DEFAULT_START_POSITION[0]
        current_y = int((self.taskPoint[1] - 4) / DRAWING_INTEND) * DRAWING_INTEND + DEFAULT_START_POSITION[1]

        for position in maxPrintPositionArray:
            while current_x <= position + DEFAULT_START_POSITION[0]:
                printBasePointArray.append((current_x, current_y))
                current_x += next_drawing_xORy_intend
            current_x = DEFAULT_START_POSITION[0]
            current_y += next_drawing_xORy_intend
        return printBasePointArray

    def getTaskNumber(self):
        TaskNumber = self.PrintingTaskNumber
        try:
            TaskNumber = len(win32print.EnumJobs(_HPRINTER, 0, -1, 1))
            return TaskNumber
        except Exception as e:
            return TaskNumber

if __name__ == '__main__':
    task = PrintTask([27895, ], (6194, 4))
    task.runtask()

civilpy:Python数据分析及可视化实例目录941 赞同 · 36 评论文章​编辑

  • 13
    点赞
  • 7
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值