TechDraw Image/it: Difference between revisions

From FreeCAD Documentation
(Created page with "==Opzioni== Nessuna.")
(Created page with "==Proprietà== * n/a")
Line 11: Line 11:
Nessuna.
Nessuna.


==Properties==
==Proprietà==
* n/a
* n/a



Revision as of 22:01, 23 February 2017

Immagine

Posizione nel menu
TechDraw → Immagine
Ambiente
TechDraw
Avvio veloce
Nessuno
Introdotto nella versione
-
Vedere anche
Nessuno

Descrizione

Lo strumento Immagine inserisce un'immagine bitmap (png, jpeg, jpg, bmp, ecc) da un file nella pagina come una vista

Uso

  1. Premere il pulsante File:Techdraw-image.png Immagine
  2. Si apre una finestra di dialogo. Selezionare un percorso e il nome file.

Opzioni

Nessuna.

Proprietà

  • n/a

Scripting

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


Notes

  • Use the Scale property to adjust the size of the image.
  • Use the Width and Height properties to clip the image.