Know-Legal Web Search

Search results

  1. Results From The WOW.Com Content Network
  2. Using Custom Fonts - Discussion - Connect IQ - Garmin Forums

    forums.garmin.com/developer/connect-iq/f/discussion/2193/using-custom-fonts

    If you use layouts, you should be able to specify the font using the id, but I can't find an example. The programmers guide says this: "Graphics font constant or the ID of a user-defined font" Jim is right, here is a sample for the layout (as I use it in one of my watchfaces, where "font" is the id of my custom font):

  3. custom font adding - Discussion - Connect IQ - Garmin Forums

    forums.garmin.com/developer/connect-iq/f/discussion/273623/custom-font-adding

    Hi Jim, ty for answering. I wrote what you wrote in my code, I called but just used font and custom instead of timeF and tbig. Ive also loaded the font in a font folder in resources and used the app the guy in the video suggested. Also I have followed the video twice trying to learn the steps to custom font but it didnt work in neither of those ...

  4. Custom font icon - Discussion - Connect IQ - Garmin Forums

    forums.garmin.com/developer/connect-iq/f/discussion/165912/custom-font-icon

    3. Add all your characters (import SVG files for your icons). This is the part where you will associate icons with characters -- you will probably want to pick printable characters that will be easy to type/see in your Monkey C source code. 5. Import the new font into your OS (in Windows, double-click on the TTF file)

  5. How to create custom font - Discussion - Garmin Forums

    forums.garmin.com/developer/connect-iq/f/discussion/3728/how-to-create-custom-font

    In my drawText method, the font I put, is one of Graphics.FONT_xxxx . But this is too small or too big, never the good size. I don't know how to adjust. I try all the Graphics.FONT_xxx. I see in the doc, that we could load a custom font from resources : how to do it ? Thanks. A dedicated community for Garmin users to ask questions, provide ...

  6. Fonts / Sizes / Custom - Discussion - Connect IQ - Garmin Forums

    forums.garmin.com/developer/connect-iq/f/discussion/7679/fonts-sizes-custom

    2. For the fonts 0-4, the 520plus, 820 and 1000 are the same font height and string length. Only the 1030 is larger. 3. However, number fonts 5-8, the 520plus and 820 are the same, and the 1000 and 1030 are larger and the same. So the 1000 is inconsistent.

  7. Custom font spacing issue - Discussion - Garmin Forums

    forums.garmin.com/developer/connect-iq/f/discussion/865/custom-font-spacing-issue

    I'm trying to use a custom font in a watchface, it seems to load properly but then renders incorrectly: As you can see, the "1" characters are pushed together which suggests that it is not using the xadvance in the fnt information. My fnt file looks like this: info face="Segment" size=48 bold=0 italic=0 charset="" unicode=1 stretchH=100 smooth ...

  8. Anti-Aliasing Custom Font in Digital Watchface?

    forums.garmin.com/.../220298/anti-aliasing-custom-font-in-digital-watchface

    After reading a lot here in the forum and on other sites, I still haven't found a solution. I created the numbers 0 - 9 in a PNG file (relatively high resolution) and a FNT file. The time is drawn as with drawText into the Watchface. But now the edges of the numbers are not very smooth. According to the documentation drawText does not support ...

  9. Maximum font size on a watch face - Discussion - Garmin Forums

    forums.garmin.com/developer/connect-iq/f/discussion/4489/maximum-font-size-on...

    The maximum size of text I'm able to get is something like 75 px versus ~110-115 px on the standard WF. In addition, for the built-in font, some vertical spacing seems to be embedded in the font, so that the getFontHeight function returns the height of the space the font+spacing occupies (e.g. 116 for FONT_NUMBER_THAI_HOT), and not the height ...

  10. resizing custom fonts - Discussion - Connect IQ - Garmin Forums

    forums.garmin.com/developer/connect-iq/f/discussion/246242/resizing-custom-fonts

    The Connect IQ SDK includes a default Jungle file, which is always applied to projects even if no custom Jungle files are present. It defines a base qualifier, which represents all source files ( .mc ) contained in the project, and all resource files found in the resources at the root of a Connect IQ project.

  11. font size - Discussion - Connect IQ - Garmin Forums

    forums.garmin.com/developer/connect-iq/f/discussion/7929/font-size

    If you want something to be exactly the same on all devices, instead of using things like FONT_MEDIUM, you could do a custom font and use that, but it comes at a cost, as custom fonts take memory, and are a bit slower to display. And also, what might work fine on a 240x240 display, might not on a 218x218 display.