Jump to content

display order


dirtlegg

Recommended Posts

I have linked some aerial photos in my 2011 3d dwg but cannot send them to the back so my linework and annotation are visible. How do I send the photos to the back?

Link to comment
Share on other sites

I have linked some aerial photos in my 2011 3d dwg but cannot send them to the back so my linework and annotation are visible. How do I send the photos to the back?

 

You say you cannot send them to the back, but then you ask how to do it.

So are you saying you have tried, or you don't know how?

 

Also, how were the images "linked"? Image command, FDO, OLE?

Are they IMAGE entities?

 

If they are IMAGE entities, then make sure IMAGEFRAME = 1 or 2.

Run the Draworder command, select the image(s), choose "B" for Back.

Link to comment
Share on other sites

Macro I use from time to time...

 

(defun c:HaB (/ ss)
 ;; Send all Images and Hatch to back
 ;; Alan J. Thompson
 (sssetfirst nil nil)
 (foreach pair '((0 . "HATCH") (0 . "IMAGE"))
   (if (setq ss (ssget "_X" (list pair (cons 410 (getvar 'ctab)))))
     (command "_.draworder" ss "" "_back")
   )
 )
 (princ)
)

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...