杜斌 发表于 2011-10-20 21:10:18

一个自动批量打印程序的三个问题

本帖最后由 杜斌 于 2011-10-20 21:12 编辑

程序的原理是这样:
   在一个DWG文件中,有多张图纸。A3,A4等都有。将图框做成块。在程序中遍历所有图框块,找到每张图纸的位置,然后打印相应该的窗口。
    这个算法我想来想去应该是没有问题。于是尝试着写了出来。主要代码如下。

using System;
....
using Autodesk.AutoCAD.PlottingServices;
namespace AllBlock
{
    public class Class1
    {
      publicstatic Document doc = Application.DocumentManager.MdiActiveDocument;
      publicDatabase db = doc.Database;
      publicEditor ed = doc.Editor;
      publicint index = 1;
      
      publicvoid ba()
      {
            ObjectIdCollection objIdColl = GetSheet();
            if (objIdColl == null)
            {
                return;
            }
            using (Transaction tr = db.TransactionManager.StartTransaction())
            {
                foreach (ObjectId objId in objIdColl)
                {
                  BlockReference bref = tr.GetObject(objId, OpenMode.ForRead) as BlockReference;
                  Extents3d exSize = bref.GeometricExtents;
                  Point2d pStart = Point3dToPoint2d(exSize.MinPoint);
                  Point2d pEnd = Point3dToPoint2d(exSize.MaxPoint);
                  
                  if (bref.Name == "a4")   //区分A3和A4
                  {
                        int a = Plot(pStart, pEnd, bref.Rotation, 4);
                  }
                  else
                  {
                        int a = Plot(pStart, pEnd, bref.Rotation, 3);
                  }
                }
            }
      }
      private ObjectIdCollection GetSheet()
      {}
      private int Plot(Point2d pMin, Point2d pMax, double angle, int size)
      {
                //检查打印状态
            if (PlotFactory.ProcessPlotState == ProcessPlotState.NotPlotting)
            {
                //开启打印引擎
                using (PlotEngine pe = PlotFactory.CreatePublishEngine())
                {
               /////....
                }
            }
            return 0;
      }
      private Point2d Point3dToPoint2d(Point3d p3d)
      {
      }
    }   
}


杜斌 发表于 2011-10-20 21:20:51

本程序一共包含的1个类,4个函数。分别是:
public void ba(),
private ObjectIdCollection GetSheet()
private int Plot(Point2d pMin, Point2d pMax, double angle, int size)
private Point2d Point3dToPoint2d(Point3d p3d)

意思都很好理解。
现在出现了三个问题。
第一:文件中有多张图纸,GetSheet()函数也能将所有图纸全部选择,但无论有多少图纸,每次运行程序只能打印一页。经过多次测试发现关键在于Plot()方法中的这一句:

if (PlotFactory.ProcessPlotState == ProcessPlotState.NotPlotting)
{
      .....
}

这句是在手册上操的,我尝试过去掉这句,但马上就有异常。不去掉这句,怎么也不能打印第二张图纸。

   我还好现在我程序运行结束之后的几秒甚至十几秒之后,Autocad才开启发布作业。我本来的设想是只要运行一次Plot()就进行一次发布作业,这样有多少张图纸就有多少次发布作业。但实际情况和我所想的完全不同。是不是我的算法有问题?究竟能不能实现?

杜斌 发表于 2011-10-20 21:24:01

第二个问题是,虽然能够打印一张图纸,但打印出来的东西总是不对。刚开始测试的时候连续地打出白纸。后来怀疑是座标可能有冲突,重设为世界坐标系之后,也不对,虽然有时不再打白纸了。但也不知打印的是哪个区域,反正不是我想要的区域。想来起去真想不出来是为什么。

zhengjian211 发表于 2011-10-23 13:36:34

标记下 等高手来解答!

杜斌 发表于 2011-10-23 18:15:23

求人不如求已,自己动手吧。我就不信搞不定他。

齐天大圣3386 发表于 2011-10-23 19:46:58

有些东东,不经高人指点,还真就是搞不定啊

杜斌 发表于 2011-10-24 00:58:52

呵呵,大圣兄,我这个程序从头到尾遇到的问题不少,虽然我很希望能有高人指点,但还一次都没有。全是我自己摸索的。

齐天大圣3386 发表于 2011-10-24 19:15:49

可惜我对C#不熟,帮不上你啊,我以前用VBA做过一个。

sailorcwx 发表于 2011-10-24 20:59:47

打印偏移的问题我也遇到,是一部分图正确,一部分图偏移了位置。到现在还没有解决,有时间再研究研究

杜斌 发表于 2011-10-25 19:16:19

多谢大圣兄。我相信我能搞定。
呵呵,楼上兄弟,看谁先研究出来啊。
页: [1] 2
查看完整版本: 一个自动批量打印程序的三个问题