Excuse my nerdiness for a minute here.
NerdMode->Start();
/*
EMF is Microsoft's vector graphics format. It allows graphics to be saved such that each piece of the image is an individual piece that can be manipulated in an editing environment that supports vector graphics, such as Adobe Illustrator. The image exported from LabVIEW does not export color information of each vector in the file, but the color or each vector can be changed easily, as the colors are not defined pixel by pixel as in BMP, but defined programmatically and then rendered to display on screen. The difference between BMP and EMF is somewhat similar to the difference between WAV and MIDI.
Whereas LabVIEW does export JPG for most front pannel controls, it only export EMF for certain controls, such as the ones under the Graph palette, due to the limitation of LabVIEW's ability to produce vector graphics (afterall, LabVIEW is not a graphics software).
The reason BMP files are so big is because BMP is an uncompressed image format. No matter how many colors are in a BMP image, it's going to be the same file size as long as the dimension of the image is the same. JPG on the other hand, is a lossy compression format, which allows it to compress based on the color variations that happens in an image. For example, if you have a jpg image that's filled with noise and another image that's 2-3 solid color, the one with solid color is going to compress a lot smaller than the noisy one. However, in the case of LabVIEW graphs, since the graphics and color involved is so simple, JPG compresses really well, and the file size is consequently very small.
For more information on image compression, http://en.wikipedia.org/wiki/Image_compression For more information about EMF, http://www.fileinfo.net/extension/emf
*/
NerdMode->Stop();