LabVIEW Graphics Looks Blurry After Changing Windows DPI Scaling

Updated Oct 30, 2025

Reported In

Software

  • LabVIEW

Issue Details

I am using the latest version of LabVIEW and changed the Windows DPI scaling setting to 150% to improve readability on my monitor. However, when I run LabVIEW, the graphics and text appear blurry. Why is this happening?

Solution

This is because LabVIEW provides Bitmap based graphics. Bitmap images are stored as a series of tiny dots called pixels. Each pixel is actually a very small square that is assigned a color, and then arranged in a pattern to form the image.

When a bitmap image is scaled up you begin to see the individual pixels that make up the image. This is most noticeable in the edges of the image. There are ways of making these jagged edges less noticeable but this often results in making the image blurry as well

Vector images are also more scalable than bitmap images. Vector images are not based on pixel patterns, but instead use mathematical formulas to draw lines and curves that can be combined to create an image from geometric objects such as circles and polygons. 

When a vector image is scaled up, the image is redrawn using the mathematical formula, so the resulting image is just as smooth as the original.