Search found 35 matches: bitblt

Return to advanced search

Norberto,

Very good! Thanks :-)

yes, it was StretchBlt() instead of BitBlt() to magnify it
by Antonio Linares
Fri Aug 31, 2007 11:12 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Magnifyer
Replies: 12
Views: 2373

... them. If you read 1 pixel, then you could write four pixels for it. This way you magnify the image. There is a way to speed up this process, using BitBlt(), so you don't have to process pixel by pixel, instead you manage all of them at one time. Keep in mind that this will only work on bitmaps. ...
by Antonio Linares
Fri Aug 31, 2007 7:01 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Magnifyer
Replies: 12
Views: 2373

... 1, 1 ) LineTo( ::hDC, ::nWidth, ::nHeight ) return nil La función para copiar desde un hDC a otro hDC es BitBlt(). Sigo...
by Antonio Linares
Fri Aug 10, 2007 12:24 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Transparencia en controles definidos por el usuario
Replies: 12
Views: 2455

CreateCompatibleBitmap()

... datos de un bitmap tipo BMP, con cabeceras, longitud, etc...) se podría crear el bitmap correspondiente para dibujarlo de fondo con PalBmpDraw(), BitBlt(), o StretchBmp(). He intentado crear un BITMAP con CreateCompatibleBitmap (dentro GDI32.DLL), simplemente copiando el fondo del dialogo ( como ...
by manuramos
Fri Aug 04, 2006 11:56 am
 
Forum: FiveWin para CA-Clipper
Topic: CreateCompatibleBitmap()
Replies: 1
Views: 790

xHarbour/FWH/Canal 5 Calendar

... COMPATBMP ) // ( hDC, nWidth, nHeight ) { hb_retnl( (LONG) CreateCompatibleBitmap( (HDC) hb_parnl(1),hb_parni(2), hb_parni(3) ) ); } HB_FUNC( BITBLT ) // ( hdcDest, nXDest, nYDest, nWidth, nHeight,hdcSrc, nXSrc , nYSrc, dwRop ) { hb_retl( BitBlt( ( HDC ) hb_parnl( 1 ), hb_parni( 2 ), hb_parni( ...
by Randal
Wed Oct 26, 2005 5:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xHarbour/FWH/Canal 5 Calendar
Replies: 4
Views: 1975
Previous

Return to advanced search