Selection_Export_JPEG.bas 666 B

123456789101112131415161718
  1. ' 实用小脚本: 选择遍历多个物件对象,按序号导出 JPEG
  2. ActiveDocument.Unit = cdrCentimeter
  3. Dim d As Document
  4. Set d = ActiveDocument
  5. cnt = 1
  6. Dim sh As Shape, shs As Shapes
  7. Set shs = ActiveSelection.Shapes
  8. For Each sh In shs
  9. ActiveDocument.ClearSelection
  10. sh.CreateSelection
  11. MsgBox "选择物件尺寸: " & sh.SizeWidth & "x" & sh.SizeHeight
  12. Size = Str(Int(sh.SizeWidth + 0.5)) + "x" + Str(Int(sh.SizeHeight + 0.5))
  13. f = "R:\" + Str(cnt) + "_尺寸" + Size + ".jpg"
  14. ' 可以把获得的尺寸取整数,写到文件名中,或者把尺寸信息写到图片中
  15. d.Export f, cdrJPEG, cdrSelection
  16. cnt = cnt + 1
  17. Next sh