This tutorial describes how to print a real image size in inches using the LEADTOOLS C\C++ API.
Define the following global variables:
LBitmapBase BitmapBase; // bitmap
L_FLOAT fRealWidth; // Image's real width in inches
L_FLOAT fRealHeight; // Image's real height in inches
L_FLOAT fPrnDPIX; // Number of pixels per logical inch along the screen width
L_FLOAT fPrnDPIY; // Number of pixels per logical inch along the screen height
Load the image in a LEAD bitmap:
L_LoadBitmap (TEXT("C:\\IMAGE1.CMP"), &LeadBitmap, sizeof(BITMAPHANDLE), 0, ORDER_BGR, NULL, NULL);
Calculate the real width and height of the bitmap in inches:
fRealWidth = (L_FLOAT)LeadBitmap.Width / (L_FLOAT)LeadBitmap.XResolution;
fRealHeight = (L_FLOAT)LeadBitmap.Height / (L_FLOAT)LeadBitmap.YResolution;
Get the printer device context:
hdcPrinter = L_PrintBitmap(NULL, NULL, 0, 0, 0, 0, FALSE);
Get the width and height DPI:
fPrnDPIX = (L_FLOAT)GetDeviceCaps(hdcPrinter, LOGPIXELSX);
fPrnDPIY = (L_FLOAT)GetDeviceCaps(hdcPrinter, LOGPIXELSY);
Now you are ready to print the image at its real size in inches:
L_PrintBitmap(hdcPrinter, &LeadBitmap, 1, 1, (L_INT)(fRealWidth * fPrnDPIX), (L_INT)(fRealHeight * fPrnDPIX), TRUE);
For more information, refer to:
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document