La Web del Programador: Comunidad de Programadores
 
    Pregunta:  1573 - INFORMACIÓN SOBRE BITBLIT
Autor:  Jose Ramón Espinosa Muñoz
Estoy realizando un programa en VB6.0 que trabaja Bitmaps y ficheros gráficos. Desconozco esta parte de Visual. Pero me parece que hay una librería externa llamada bitblit que maneja el tema de gráficos. ¿Donde puedo encontrar documentación sobre ella?. Hasta ahora, he buscado y no he encontrado

  Respuesta:  Rodrigo López
No será BitBlt?
Si en realidad lo que buscas es la función BitBlt (de una dll) y si sabes inglés ahí va esto:

The BitBlt function performs a bit-block transfer of the color data corresponding to a rectangle of pixels from the specified source device context into a destination device context.

BOOL BitBlt(

HDC hdcDest, // manejador de contexto del dispositivo de destino
int nXDest, // x-coordinate of upper-left corner of destination rectangle
int nYDest, // y-coordinate of upper-left corner of destination rectangle
int nWidth, // width of destination rectangle
int nHeight, // height of destination rectangle
HDC hdcSrc, // Manejador del dispositifo fuente
int nXSrc, // x-coordinate of upper-left corner of source rectangle
int nYSrc, // y-coordinate of upper-left corner of source rectangle
DWORD dwRop // raster operation code
);
Parameters

hdcDest

Identifies the destination device context.

nXDest

Specifies the logical x-coordinate of the upper-left corner of the destination rectangle.

nYDest

Specifies the logical y-coordinate of the upper-left corner of the destination rectangle.

nWidth

Specifies the logical width of the source and destination rectangles.

nHeight

Specifies the logical height of the source and the destination rectangles.

hdcSrc

Identifies the source device context.

nXSrc

Specifies the logical x-coordinate of the upper-left corner of the source rectangle.

nYSrc

Specifies the logical y-coordinate of the upper-left corner of the source rectangle.

dwRop

Specifies a

  Respuesta:  CLIP
Pasate por la página www.vbexplorer.com, tienes todo lo que piedes y mas.... espero que sepas ingles, si sigues sin enterarte de como funciona mándame un email....
Y recuerda THE CODE IS THE CODE..

  Respuesta:  Pedro Valencia
Hola amigo,
Hace tiempo que me compre un libro de Visual 4, de la casa INFOR BOOK´S. Sus autores son Richard Mansfield y Evangelos Petroutsos.
El titulo del libro es: VISUAL BASIC 4 Manual de programación Profesional.
Esta dedicado casi el 70% del libro a tratar temas graficos, y esplica muy a fondo todo lo relacionado con Bitmap, y BitBlit.
Si deseas mas información hazmelo saber y te ayudare en lo que pueda.

Un saludo