|
Menu location |
---|
TechDraw → Image |
Workbenches |
TechDraw |
Default shortcut |
See also |
The Image tool inserts an bitmap image (png,jpeg,jpg,bmp,etc) from a file into the page as a view
None.
Bitmap Image files can be inserted into a drawing page using Python.
dvi = FreeCAD.ActiveDocument.addObject('TechDraw::DrawViewImage','TestImage') rc = page.addView(dvi) dvi.ImageFile = "pathToMy/imageFile.png" dvi.Height = 200 dvi.Width = 200