Thread Rating:
  • 1 Vote(s) - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Install font error
#2
Hi Veronica,

On line 83 of BpodObject.m, the PC looks for the font in a list of system fonts. It expects it to be named either 'OCRASTD' or 'OCR A Std', which are the two system names we've encountered thus far - but it's possible that the font is named something else on your system.

At the MATLAB command line, if you type 

Code:
F = listfonts

you should see the list in alphabetical order. If you scroll up, is there something like OCRASTD' or 'OCR A Std'? If so, please reply with your PC's version and I'll include it with the next software release. For now, to get your copy running, add it to line 83. For instance, if your PC called it 'OCRA_STD', the line would read:

Code:
if (sum(strcmp(F, 'OCRAStd')) == 0) && (sum(strcmp(F, 'OCR A Std')) == 0) && (sum(strcmp(F, 'OCRA_STD')) == 0)

I hope this helps, and thanks in advance for the info!

-Josh
Reply


Messages In This Thread
Install font error - by veronica - 01-03-2019, 04:31 PM
RE: Install font error - by Josh - 01-03-2019, 07:19 PM
RE: Install font error - by Richard - 02-05-2019, 07:49 PM
RE: Install font error - by Richard - 02-06-2019, 08:02 PM

Forum Jump: