印刷包装中激光刀模的价格计算

激光刀模的价格

对于印刷包装中的卡纸盒,瓦楞纸盒,激光刀模所使用的板材大多数都是用18MM的木板 和23.8*0.71的国产刀。国产刀模,目前市场的平均价格为25元/米。台湾刀的质量比较高,平均价格在35元/米,多用于礼盒中的灰板模切。一般来说,激光刀模的起价在70元左右。

For the cardboard gift boxes, paper printed boxes, corrugated printed boxes, and laser cutter molds used in printing and packaging, most of the plates used are 18mm wood boards and 23.8*0.71 domestic knives. The average price of domestic knife molds is currently 25 yuan per meter. The quality of Taiwanese knives is relatively high, the average price is 35 yuan/meter, and they are mostly used for die-cutting of gray boards in gift boxes. Generally speaking, the starting price of a laser knife mold is around 70 yuan.

刀模的长度计算

在AutoCAD中计算所有被选择线段的长度颇具挑战,下面是详细步骤:

  • 统一转换为DWG格式文件:对于PDF,或者AI格式的刀版文件,可以在AI中导出为DWG格式的文件。
  • 制作“统计线段长度.lsp”文件

(princ “\n程序:统计线段长度 命令:zz”)
(defun C:zz (/ CURVE TLEN SS N SUMLEN)
(vl-load-com) (setq SUMLEN 0)
(setq SS (ssget ‘((0 .
“CIRCLE,ELLIPSE,LINE,*POLYLINE,SPLINE,ARC”))))
(setq N 0)
(repeat (sslength SS)
(setq CURVE (vlax-ename->vla-object (ssname SS N)))
(setq TLEN (vlax-curve-getdistatparam CURVE (vlax-curve-
getendparam CURVE)))
(setq SUMLEN (+ SUMLEN TLEN))
(setq N (1+ N))
)
(princ (strcat “\n共选择 ” (itoa (sslength SS)) ” 条线段.
线段总长: ” (rtos SUMLEN 2 3) ” .”)) (princ)
)

打开记事本,将以上代码复制粘贴,另存为”统计线段长度.lsp“。

  • 加载lsp应用文件

在AutoCAD中打开dwg格式的刀版文件;输入命令appload,加载刚刚创建的”统计线段长度.lsp“文件;加载成功后,关闭当前窗口。

  • ZZ命令输出刀线长度之和

全选需要计算刀线长度的刀版文件,然后输入命令ZZ,敲击回车键;此时AutoCAD会在屏幕下端输出刀线长度信息,4874.173mm。四舍五入,大概需要5米的刀模,因此,价格为25*5=125元。

At Shanghai DE Printed Box, we supply the free dieline template to our client. If you need one for your custom paper box, please go to our contact page to get one.

Leave a Comment