Using Win32 functions in Visual FoxPro Image Gallery
Device Context
..msdn
ChangeDisplaySettings
CreateCompatibleDC
CreateDC
DeleteDC
DeleteObject
EnumDisplayDevices
EnumDisplaySettings
GetDC
GetDeviceCaps
GetObject
GetObjectType
ReleaseDC
SelectObject
Code examples:
Bitmap Class for Visual FoxPro application
Configuring DEVMODE structure for a printer
Converting image file to .ICO file
Creating a device context for the specified printer
Displaying animated images on FoxPro form with BitBlt and StretchBlt functions
Displaying bitmap using the AlphaBlend function
Drawing Windows predefined bitmaps using the LoadBitmap functions
GDI+: printing image file
GDI+: sending image of FoxPro form to printer
How to convert a bitmap file to monochrome format (1 bpp)
How to copy the image of a form to the Clipboard using Bitmap API functions
How to make a VFP form fading out when released (GDI version)
How to print a bitmap file
How to print FoxPro form
How to print FoxPro form -- II
How to print picture stored in enhanced-format metafile (*.emf)
How to put a horizontal text scrolling on the form (a news line)
How to put a vertical text scrolling on the form (a movie cast)
Placing an arbitrary rectangular area of main VFP window on the Clipboard
Printing Image File, programmatically set print page orientation to landscape
Printing text with the Escape function
Retrieving graphic capabilities of default printer
Retrieving Printer Device Context using PrintDlg function
Splash Screen for the VFP application
Storing content of the Clipboard to a bitmap file
Storing screen shot of a form to bitmap file
Subclassing CommandButton control to create BackColor property
Using the LoadImage function to have a bitmap file loaded and displayed on VFP main window
Vertical Label control
How to convert a bitmap file to monochrome format (1 bpp)

User rating: 0/10 (0 votes)
Rate this code sample:
  • ~
More code examples    Listed functions    Add comment     W32 Constants      Translate this page Printer friendly version of this code sample
Versions:
click to open
Before you begin:
It all started with a question a developer posted in the Universal Thread Visual FoxPro forum:
Does anyone know how to create a monochrome bitmap or monochrome tiff file from a VFP report?
...
I need to automate the process. We are using this for a faxing application and it must work in a multi-user environment
Well, there is ReportListener object in VFP9 that can solve at least a part of this task. Its OutputPage method can render the output of a report to a bitmap file. The code is very simple (requires VFP9):

LOCAL oListener As ReportListener, nPageIndex
oListener = CREATEOBJECT("ReportListener")
oListener.ListenerType=3 && renders all pages at once

* make sure the report can load and run
REPORT FORM MyReport PREVIEW OBJECT oListener

FOR nPageIndex=1 TO oListener.PageTotal
        cOutputFile = "tmp"+TRANS(nPageIndex)+".bmp"
        oListener.OutputPage(nPageIndex,;
                cOutputFile, 105, 0,0,768,1024) && 105=bitmap
NEXT

I run the code and voila! It created one bitmap file for each page of my report. But the output files were nothing but small: 32 bits per pixel, 3.28 MB each. Still I was half way through.

Then I spent some time in Visual FoxPro trying in vain to convert bitmaps to monochromes using GDI+ API along with several GDI calls like CreateCompatibleBitmap, BitBlt and so on. The GdipGetImageGraphicsContext absolutely refused to accept monochrome HBITMAP handles.

After that I tried to find a solution using C# .NET, any solution at all. The Bitmap object did not help either. It failed to Clone to the PixelFormat.Format1bppIndexed, each time producing the System.OutOfMemoryException. That appeared consistent with GpStatus=3 returned by the GdipGetImageGraphicsContext function in my VFP tests.

Finally I gave up on GDI+ and switched to good old GDI API calls. And they worked perfectly, credits to the LoadImage for doing the actual conversion.
 
  Members area. Log in to view this example.
 
  User name:
  Password:
 
 
  Forgot your password?
 
  Sign up for
the Membership
 
 


User rating: 0/10 (0 votes)
Rate this code sample:
  • ~
5268 bytes  
Created: 2005-09-08 15:31:56  
Modified: 2010-01-14 12:01:18  
Visits in 7 days: 197  
Listed functions:
CloseHandle
CreateCompatibleDC
CreateFile
DeleteDC
DeleteObject
GetDIBits
GetObject
GlobalAlloc
GlobalFree
LoadImage
SelectObject
WriteFile
ZeroMemory
Printer friendly API declarations
My comment:
The code above implements:

PROCEDURE SaveBitmapAsMonochrome(srcfile As String, dstfile As String)

To create HBITMAP from a bitmap file I use the LoadImage with LR_LOADFROMFILE and LR_MONOCHROME flags. This way, it takes care of all color-to-monochrome mumbo-jumbos, which fact I am very happy with.

The source HBITMAP is selected into a memory device context. Then both of them are passed to the SaveBitmapToFile procedure.

The procedure is a bit hard-coded, which means it produces monochrome bitmap files only. It creates BITMAPINFOHEADER and BITMAPFILEHEADER structures, extracts bitmap binary data using the GetDIBits function and then saves everything to a file.

* * *
The writing and reading from temporary file makes the C# code noticeably slow on large files, which appears to be an unavoidable pay-off for the utter simplicity of this approach.
Word Index links for this example:
Translate this page:
  Spanish    Portuguese    German    French    Italian  
FreeTranslation.com offers instant, free translations of text or web pages.
User Contributed Notes:
A.M. | 2007-10-31 11:05:13
Bit2Mono.exe Changes Color Bitmaps to Monochrome
http://support.microsoft.com/kb/q77282/

Copyright © 2001-2013 News2News, Inc. Before reproducing or distributing any data from this site please ask for an approval from its owner. Unless otherwise specified, this page is for your personal and non-commercial use. The information on this page is presented AS IS, meaning that you may use it at your own risk. Microsoft Visual FoxPro and Windows are trade marks of Microsoft Corp. All other trademarks are the property of their respective owners. 

Privacy policy
Credits: PHP (4.4.9), an HTML-embedded scripting language, MySQL (5.1.55-log), the Open Source standard SQL database, AceHTML Freeware Version 4, freeware HTML Editor of choice.   Hosted by Korax Online Inc.
Last Topics Visited (50.16.17.90)
3 sec.Function: 'ReadFile'
3.29 hrs.Function: 'TaskDialogIndirect'
Function group: 'Common Dialog Box'
3.3 hrs.Function: 'WNetOpenEnum'
6.88 hrs.Example: 'Storing content of the Clipboard to a bitmap file'
7.23 hrs.Example: 'Retrieving IP statistics for the computer'
10.29 hrs.Function: 'GdiplusShutdown'
 Function: 'OpenClipboard'
Function group: 'Clipboard'
18.71 hrs.Function: 'ActivateKeyboardLayout'
Function group: 'Keyboard Input'
 Example: 'Displaying standard progress dialog box when copying files'
18.84 hrs.Function: 'mciSendCommand'
Function group: 'Windows Multimedia'
Google
Advertise here!