How to increase the font on the LCD display

The font on the LCD display is small (see http://forums.openmv.io/download/file.php?mode=view&id=402&sid=be98b03f0d59400df2562c6d4864b90aphoto), what can I do to increase it?

Hi, this is just a limit of our code. I have a plan to make this higher resolution eventually… However, it’s low on my to-do list.

In the mean time you can do the following things:

  1. Help us out and add scaling control for drawing text to our C code. Then this gets fixed for you and everyone else using the system.

  2. Roll your code to write text in python. This is not hard at all. You just need to get some fixed bitmaps for the things you want to draw and then set pixels in the right places for the text.

Hi!
Thanks for the reply.

  1. Help us out and add scaling control for drawing text to our C code.
    Then this gets fixed for you and everyone else using the system.

Where to find the code for LCD or img.draw_string exercise on the scaling of the text?

  1. The question decided just maybe someone will be useful.
    In my case, the measurement result
    that should display on LCD display -
    it is numbers. Numbers written in Paint and saved on a CD to
    the temp folder/ - files 14.bmp, 15.bmp,16.bmp,etc.
    Files 4 KB.
    Next, read the file from disk in the bunch and displaying on LCD:
    img1 = image.Image(“/temp/%d.bmp” % sqpx , copy_to_fb=False)# sqpx - variable for output to LCD
    lcd.display(img1)
    The result on the photo.http://forums.openmv.io/download/file.php?mode=view&id=404
    http://forums.openmv.io/download/file.php?mode=view&id=405
    http://forums.openmv.io/download/file.php?mode=view&id=403
    Mikhail.


Font code is here:

https://github.com/openmv/openmv/blob/master/src/omv/img/imlib.c#L609

https://github.com/openmv/openmv/blob/master/src/omv/img/font.c