Save DWG as WMF or EMF Black Background
Moderators: SDS, support, admin
Save DWG as WMF or EMF Black Background
Hi,
I want to be able to Save DWG as WMF or EMF and keep the black background. There are a lot of white lines and text in the DWG, so the black background is critical.
However when saved as WMF or EMF, the background is white.
When saving as a BMP, the image displays correctly.
Regards
Andrew
I want to be able to Save DWG as WMF or EMF and keep the black background. There are a lot of white lines and text in the DWG, so the black background is critical.
However when saved as WMF or EMF, the background is white.
When saving as a BMP, the image displays correctly.
Regards
Andrew
Re: Save DWG as WMF or EMF Black Background
Hello Andrew,
We recommend to use the following line before saving as WMF/EMF file format:
and the following after:
DefaultColor sets the color for entities which have white color in AutoCAD™ DXF/DWG - this color is default for all elements and it is white in AutoCAD™ model mode and black in AutoCAD™ layouts. It is black when printing from AutoCAD™.
If the color is clNone entities take black color on the white background and vice versa.
Sergey.
We recommend to use the following line before saving as WMF/EMF file format:
Code: Select all
this.cadImage.DefaultColor = Color.Black;
Code: Select all
this.cadImage.DefaultColor = CADImport.CADConst.clNone;
If the color is clNone entities take black color on the white background and vice versa.
Sergey.
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support
Chat support on Skype: cadsofttools.support