About 9,710,000 results
Open links in new tab
  1. graphics - How can I write directly to the screen? - Stack Overflow

    Jan 4, 2011 · To write directly to the screen, you should probably write to the VGA Text Mode area. This is a block of memory which is a buffer for text mode. The text-mode screen consists …

  2. LearnOpenGL - Text Rendering

    There are no graphical primitives for text characters, we have to get creative. Some example techniques are: drawing letter shapes via GL_LINES, create 3D meshes of letters, or render …

  3. Print variable values in graphics mode ! | Graphics with C

    Jun 12, 2016 · Well, there is a simple workaround that enables us to get variable values printed on output screen in graphics mode. Have a look at the below code : int i; char str[3]; …

  4. turtle.write() function in Python - GeeksforGeeks

    Apr 2, 2025 · turtle module in Python provides a way to create graphics and animations using Tkinter. The turtle.write() method is used to display text at the turtle’s current position on the …

  5. Displaying Text – OpenGL Tutorial 5 by Osama Hosam

    Jan 27, 2011 · We iterate through the string character by character to display it by using the function glutBitmapCharacter(GLUT_BITMAP_TIMES_ROMAN_10, *c); which takes as an …

  6. How to write text in MODE 0x13? - Retrocomputing Stack Exchange

    Nov 9, 2022 · If you want to write a character in this mode, you need to put the individual pixels of the glyph to video memory (that's what the video BIOS does for you when you use one of the …

  7. In this experiment, you will use BIOS and DOS services to write programs that can do the following: • Read a character/string from the keyboard • Output a character/string to the …

  8. How computers display raw, low-level text and graphics

    That said, for graphics specifically, there are different ways of drawing to the screen. There are TTY commands that you can send to the BIOS, but that's only in real mode. If you want to …

  9. libtermgraph - Terminal Graphics Library

    libtermgraph is a simple, portable library for writing C and C++ programs that use a terminal window to display character-based graphics. It was designed as a basis for projects in …

  10. What is the easiest way to print text to screen in OpenGL?

    Feb 2, 2010 · Basically, it uses these three functions: This is a simple way to write text on the screen: glRasterPos2f(-240, 120); //define position on the screen. char *string = "Text"; …

Refresh