Vorheriges Thema anzeigen :: Nächstes Thema anzeigen |
Autor |
Nachricht |
DOA Mini JLI'ler
Anmeldedatum: 19.10.2002 Beiträge: 9
Medaillen: Keine
|
Verfasst am: 20.10.2002, 13:44 Titel: JPG Dateien einbinden |
|
|
Wie kann ich (ohne DirectDraw oder OpenGL) .jpg Dateien einbinden ? |
|
Nach oben |
|
|
TheMillenium Dark JLI'ler
Anmeldedatum: 21.07.2002 Beiträge: 1427 Wohnort: World Medaillen: Keine
|
Verfasst am: 20.10.2002, 14:54 Titel: |
|
|
Mit der Windows-API....
void glBitmap(
GLsizei width,
GLsizei height,
GLfloat xorig,
GLfloat yorig,
GLfloat xmove,
GLfloat ymove,
const GLubyte * bitmap
);
Parameters
width, height
The pixel width and height of the bitmap image.
xorig, yorig
The location of the origin in the bitmap image. The origin is measured from the lower-left corner of the bitmap, with right and up directions being the positive axes.
xmove, ymove
The x and y offsets to be added to the current raster position after the bitmap is drawn.
bitmap
The address of the bitmap image. _________________ The source of all power is in its destiny... |
|
Nach oben |
|
|
Christian Rousselle Site Admin
Alter: 48 Anmeldedatum: 19.07.2002 Beiträge: 1630
Medaillen: Keine
|
Verfasst am: 20.10.2002, 17:36 Titel: |
|
|
glBitmap ist eine OpenGL Funktion. Das ist nicht was er sucht. Unter Windows 2000 und XP geht es mit der GDI, ansonsten würde ich LibJPEG nehmen. Guck mal in meine Grafikbibliothek, da gibt es auch viel dazu.
Christian |
|
Nach oben |
|
|
krane Gast
|
Verfasst am: 04.11.2002, 23:56 Titel: |
|
|
wo gibt es die Grafikbibliothek ? |
|
Nach oben |
|
|
Hazel JLI MVP
Alter: 39 Anmeldedatum: 19.07.2002 Beiträge: 1761
Medaillen: Keine
|
|
Nach oben |
|
|
|