Message 1 of 4
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I want to insert unreferenced images file .JPG like OLE.
Have an example of INSERTOBJ or an equivalent Autolisp function?
Solved! Go to Solution.
I want to insert unreferenced images file .JPG like OLE.
Have an example of INSERTOBJ or an equivalent Autolisp function?
Solved! Go to Solution.
I used a add raster to our company where is that person located ? It took the floor plan and using telephone extension number located a staff member jpg. It would add around 50 jpgs automatically, person moved so just moved there phone to new location.
Anyway this is what I used as the insert part.
(setq mspace (vla-get-modelspace (vla-get-activedocument (vlax-get-acad-object)))) (vla-AddRaster mspace name inspt 1.5 0.0)
@MICROCADDAER6 hi,
to insert images you can use CLASSICIMAGE command (command "classicimage")
to insert OLE objects i suggest to use (entmake) function, explore dxf codes of OLE2FRAME object.
moshe