Skip to content

img Export to – How will the image be exported:

  • New Drawing – In a new CAD Drawing
  • Current Drawing – Into the Current CAD Drawing
  • Selected Image – Out to the Selected Image's file.

img

Image Operation – This sets the method by which the Destination (Image File) is combined with the Source (exported 2D Objects). The color is combined for each RGB color channel per pixel.

  • Add – Destination = Destination + Source (If the amount is greater than 255, the result is 255
  • And – Destination = Destination & Source (Bitwise AND two images)
  • Xor – Destination = Destination xor Source (Bitwise XOR two images)
  • Or – Destination = Destination or Source (Bitwise OR two images)
  • Copy – Destination = Source
  • Sub – Destination = Destination – Source
  • Blend – Destination = Source + degradation
  • Screen – Destination = Destination + Source + degradation (The result image will have a lighter tonality)
  • Avg – Destination = (Destination+ Source)/2