We need the 2D pic for PCB Preview such as PNG or other format. CloudDFM have the right pic but the color are not what we need . Blue color is not the right blue .
S
Simon Garrison
started a topic
over 4 years ago
With CloudDFM everything is controlled by the Matrix file (*.fm6) that is included in your matrix blob.
In the matrix file, you can assign the colors to use for PCB Preview, with the EXPORT_REALISTIC array, and the options: MASKCLR, SILKCLR, DRILLCLR
If you wish to export the image file as PNG, just name your FILE with a *.png extension (see bold below). *.bmp extension for Bitmap, *.tiff extension for TIFF, etc.
Simon Garrison
With CloudDFM everything is controlled by the Matrix file (*.fm6) that is included in your matrix blob.
In the matrix file, you can assign the colors to use for PCB Preview, with the EXPORT_REALISTIC array, and the options: MASKCLR, SILKCLR, DRILLCLR
EXPORT_REALISTIC {
CELL=PowerPointDino
FILE=PowerPointDino/Image/MyBottomPreview.png
WIDTH=1200
BOARDSIDE=bottom
MASKCLR=red
SILKCLR=white
BOARDFINISH=hasl
}
Here's more information about the EXPORT_REALISTIC array, https://numerical-help-guide.s3.amazonaws.com/matrixfile/html/matrix-export_realistic-array.html
Note: We also added the ability to use RGB values for let you choose the exact color
EXPORT_REALISTIC {
CELL=PowerPointDino
FILE=PowerPointDino/Image/MyBottomPreview.png
WIDTH=1200
BOARDSIDE=bottom
MASKCLR=0,255,0
SILKCLR=255,255,255
BOARDFINISH=hasl
}
-------------
If you wish to export the image file as PNG, just name your FILE with a *.png extension (see bold below). *.bmp extension for Bitmap, *.tiff extension for TIFF, etc.
EXPORT_REALISTIC {
CELL=PowerPointDino
FILE=PowerPointDino/Image/MyBottomPreview.png
WIDTH=1200
BOARDSIDE=bottom
MASKCLR=0,255,0
SILKCLR=255,255,255
BOARDFINISH=hasl
}