2017-10-30 09:37:16 +01:00
|
|
|
/*******************************************************************************************
|
|
|
|
|
*
|
2025-09-07 12:01:51 +02:00
|
|
|
* raylib [textures] example - image text
|
2025-01-17 03:42:30 -06:00
|
|
|
*
|
|
|
|
|
* Example complexity rating: [★★☆☆] 2/4
|
2017-10-30 09:37:16 +01:00
|
|
|
*
|
2022-07-20 01:28:37 +02:00
|
|
|
* Example originally created with raylib 1.8, last time updated with raylib 4.0
|
2017-10-30 09:37:16 +01:00
|
|
|
*
|
2022-07-20 01:28:37 +02:00
|
|
|
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
|
|
|
|
|
* BSD-like license that allows static linking with closed source software
|
|
|
|
|
*
|
2025-01-18 10:41:56 -08:00
|
|
|
* Copyright (c) 2017-2025 Ramon Santamaria (@raysan5)
|
2017-10-30 09:37:16 +01:00
|
|
|
*
|
|
|
|
|
********************************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "raylib.h"
|
|
|
|
|
|
2022-06-21 19:53:18 +02:00
|
|
|
//------------------------------------------------------------------------------------
|
|
|
|
|
// Program main entry point
|
|
|
|
|
//------------------------------------------------------------------------------------
|
2019-05-20 16:36:42 +02:00
|
|
|
int main(void)
|
2017-10-30 09:37:16 +01:00
|
|
|
{
|
|
|
|
|
// Initialization
|
|
|
|
|
//--------------------------------------------------------------------------------------
|
2019-05-20 16:36:42 +02:00
|
|
|
const int screenWidth = 800;
|
|
|
|
|
const int screenHeight = 450;
|
2017-10-30 09:37:16 +01:00
|
|
|
|
2025-09-07 12:01:51 +02:00
|
|
|
InitWindow(screenWidth, screenHeight, "raylib [textures] example - image text");
|
2021-04-22 18:55:24 +02:00
|
|
|
|
2019-05-20 16:36:42 +02:00
|
|
|
Image parrots = LoadImage("resources/parrots.png"); // Load image in CPU memory (RAM)
|
|
|
|
|
|
2018-05-04 16:59:48 +02:00
|
|
|
// TTF Font loading with custom generation parameters
|
2018-12-25 15:17:42 +01:00
|
|
|
Font font = LoadFontEx("resources/KAISG.ttf", 64, 0, 0);
|
2017-10-30 09:37:16 +01:00
|
|
|
|
|
|
|
|
// Draw over image using custom font
|
2020-04-11 11:26:16 +02:00
|
|
|
ImageDrawTextEx(&parrots, font, "[Parrots font drawing]", (Vector2){ 20.0f, 20.0f }, (float)font.baseSize, 0.0f, RED);
|
2017-10-30 09:37:16 +01:00
|
|
|
|
|
|
|
|
Texture2D texture = LoadTextureFromImage(parrots); // Image converted to texture, uploaded to GPU memory (VRAM)
|
|
|
|
|
UnloadImage(parrots); // Once image has been converted to texture and uploaded to VRAM, it can be unloaded from RAM
|
2019-05-20 16:36:42 +02:00
|
|
|
|
2018-08-04 10:32:16 +02:00
|
|
|
Vector2 position = { (float)(screenWidth/2 - texture.width/2), (float)(screenHeight/2 - texture.height/2 - 20) };
|
2019-05-20 16:36:42 +02:00
|
|
|
|
2017-10-30 09:37:16 +01:00
|
|
|
bool showFont = false;
|
|
|
|
|
|
|
|
|
|
SetTargetFPS(60);
|
|
|
|
|
//--------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
// Main game loop
|
|
|
|
|
while (!WindowShouldClose()) // Detect window close button or ESC key
|
|
|
|
|
{
|
|
|
|
|
// Update
|
|
|
|
|
//----------------------------------------------------------------------------------
|
|
|
|
|
if (IsKeyDown(KEY_SPACE)) showFont = true;
|
|
|
|
|
else showFont = false;
|
|
|
|
|
//----------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
// Draw
|
|
|
|
|
//----------------------------------------------------------------------------------
|
|
|
|
|
BeginDrawing();
|
|
|
|
|
|
|
|
|
|
ClearBackground(RAYWHITE);
|
|
|
|
|
|
|
|
|
|
if (!showFont)
|
|
|
|
|
{
|
|
|
|
|
// Draw texture with text already drawn inside
|
|
|
|
|
DrawTextureV(texture, position, WHITE);
|
2019-05-20 16:36:42 +02:00
|
|
|
|
2017-10-30 09:37:16 +01:00
|
|
|
// Draw text directly using sprite font
|
2019-05-20 16:36:42 +02:00
|
|
|
DrawTextEx(font, "[Parrots font drawing]", (Vector2){ position.x + 20,
|
2018-08-04 10:32:16 +02:00
|
|
|
position.y + 20 + 280 }, (float)font.baseSize, 0.0f, WHITE);
|
2017-10-30 09:37:16 +01:00
|
|
|
}
|
|
|
|
|
else DrawTexture(font.texture, screenWidth/2 - font.texture.width/2, 50, BLACK);
|
2019-05-20 16:36:42 +02:00
|
|
|
|
2021-06-26 21:07:00 +02:00
|
|
|
DrawText("PRESS SPACE to SHOW FONT ATLAS USED", 290, 420, 10, DARKGRAY);
|
2019-05-20 16:36:42 +02:00
|
|
|
|
2017-10-30 09:37:16 +01:00
|
|
|
EndDrawing();
|
|
|
|
|
//----------------------------------------------------------------------------------
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// De-Initialization
|
|
|
|
|
//--------------------------------------------------------------------------------------
|
|
|
|
|
UnloadTexture(texture); // Texture unloading
|
2019-05-20 16:36:42 +02:00
|
|
|
|
2021-06-26 21:07:00 +02:00
|
|
|
UnloadFont(font); // Unload custom font
|
2019-05-20 16:36:42 +02:00
|
|
|
|
2017-10-30 09:37:16 +01:00
|
|
|
CloseWindow(); // Close window and OpenGL context
|
|
|
|
|
//--------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|