<div dir="ltr"><div>Don,</div><div><br></div><div>It seems there are some assumptions in your design that don't match what I experience when actually loading fonts :)</div><div><br></div><div>- The "font file" like TTF / OTF / WOFF is really just one font, that is: it is a set of glyphs for *one* particular family and *one* style combination. </div><div><br></div><div>- And the name of that family, and the style, is not even specified inside this font file. It's only, only by loose conventions, usually somehow reflected in the font filename. E.g. we can guess that "DejaVuSerif-BoldItalic.ttf" contains font family "DejaVuSerif" and the style is "BOLDITALIC", but that's really only a loose convention, people name their fonts in whatever way they want. <br></div><div><br></div><div>- The "font file" is not a collection of font definitions, it's not a collection of font styles, and it doesn't even say what is the "family name" inside. Your design of FontLibrary seems to assume otherwise.Your example shows FontLibrary with URLs using "MjQamj1kuP_soQ3o-rysO9Ci_8oJlIUUInI.woff2" and then FontStyle.family saying "Playwright_CA_Guides". But there's no connection between these 2 things.</div><br><div>See the references I posted in my answers, e.g. about WOFF in CSS: <a href="https://stackoverflow.com/questions/12812441/how-do-i-use-woff-fonts-for-my-website" target="_blank">https://stackoverflow.com/questions/12812441/how-do-i-use-woff-fonts-for-my-website</a> :</div><div><br></div><div>"""</div><div>@font-face {<br>  font-family: "myfont";<br>  src: url("fonts/awesome-font.woff") format('woff');<br>}<br><br>@font-face {<br>  font-family: "myfont";<br>  src: url("fonts/awesome-font-bold.woff") format('woff');<br>  font-weight: bold;<br>}<br><br>@font-face {<br>  font-family: "myfont";<br>  src: url("fonts/awesome-font-boldoblique.woff") format('woff');<br>  font-weight: bold;<br>  font-style: italic;<br>}<br><br>@font-face {<br>  font-family: "myfont";<br>  src: url("fonts/awesome-font-oblique.woff") format('woff');<br>  font-style: italic;<br>}</div><div><br></div><div><br></div><div>...</div><div><br></div><div>.mydiv {<br>  font-family: myfont;<br>}<br></div><div>"""</div><div><br></div><div>So you have 4 WOFF files. Each one defines a different style. The above CSS definition makes them all available under a family name "myfont" (which is just an invented family name, to connect the usage in .mydiv with 4 font files mentioned above).</div><div><br></div><div>Maybe I don't know something, maybe there are other font "collections", but I didn't see them or use them. Reading WOFF spec ( <a href="https://www.w3.org/TR/WOFF2/">https://www.w3.org/TR/WOFF2/</a> ) doesn't seem to contradict what I'm saying. And all my usage of TTF / OTF / WOFF files only confirms it. One file = one family with one style.</div><div><br></div><div>Regards,</div><div>Michalis</div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">sob., 1 mar 2025 o 23:38 Brutzman, Donald (Don) (CIV) via x3d-public <<a href="mailto:x3d-public@web3d.org" target="_blank">x3d-public@web3d.org</a>> napisał(a):<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div>




<div dir="ltr">
<div style="font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)">
The current design-phase draft prose assumes that </div>
<ul style="list-style-type:disc">
<li style="font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)">
<div>FontLibrary loads font files and has them available for use by FontStyle and ScreenFontStyle,</div>
</li><li style="font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)">
<div>FontStyle does not load any files,</div>
</li><li style="font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)">
<div>FontStyle definition of 'family' field will look through all of the available fonts to find the correctly matching family.</div>
</li></ul>
<div style="font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)">
If that is not possible, then it would seem we need another design (perhaps the cyan text) that can closely couple a single perhaps-no-name font file with a corresponding FontStyle.</div>
<div style="font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)">
<br>
</div>
<div style="font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)">
My understanding is that a font file can contain multiple fonts, and optionally multiple styles for each font.  If so, then some kind of disambiguation by name must be possible, correct?</div>
<div style="font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)">
<br>
</div>
<div style="font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)">
>From this perspective, does it seem that two types of font files are possible?</div>
<ul style="list-style-type:disc">
<li style="font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)">
<div>Those containing a single perhaps-no-name font family, or</div>
</li><li style="font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)">
<div>Those containing multiple named font families.</div>
</li></ul>
<div style="font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)">
Perhaps we need to look at multiple font specifications in detail?  Here is the primary specification, WOFF2:</div>
<ul style="list-style-type:disc">
<li style="font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)">
<div>W3C WOFF File Format 2.0, section 3. Overall file structure and basic data types</div>
</li><li style="font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)">
<div>"<span style="background-color:rgb(255,255,0)">The structure of WOFF2 files is similar to that of SFNT and WOFF 1.0 font files, in that there is a header followed by a table directory, followed by the data for those tables. The
 SFNT structure is described fully in the TrueType [TrueType], OpenType [OpenType], and ISO "Open Font Format" [OFF] specifications.</span>"</div>
</li><li style="font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)">
<div>"A complete WOFF2 file consists of several blocks of data: a 48-byte header, immediately followed (in this order) by a variable-size Table Directory, an optional Collection Directory (present only if the input font file is a font
 collection), a compressed font data block, an optional block of Extended Metadata, and an optional block of Private Data."</div>
</li><li style="font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)">
<div>"WOFF2 File</div>
</li><ul style="list-style-type:circle">
<li style="font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)">
<div><span style="background-color:rgb(255,255,0)">WOFF2Header
</span>      <span style="background-color:rgb(255,255,0)">File header with basic font type and version</span>, along with offsets to metadata and private data blocks.</div>
</li><li style="font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)">
<div>TableDirectory    Directory of font tables, containing size and other info. "</div>
</li></ul>
<li style="font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)">
<div><a href="https://www.w3.org/TR/WOFF2/#FileStructure" id="m_1979294222970553338m_-4646480300321308330LPlnk" target="_blank">https://www.w3.org/TR/WOFF2/#FileStructure</a></div>
</li><li style="font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)">
<div>
<div id="m_1979294222970553338m_-4646480300321308330LPBorder_GTaHR0cHM6Ly93d3cudzMub3JnL1RSL1dPRkYyLyNGaWxlU3RydWN0dXJl" style="width:100%;margin-top:16px;margin-bottom:16px;max-width:800px;min-width:424px">
<table id="m_1979294222970553338m_-4646480300321308330LPContainer613833" role="presentation" style="padding:12px 36px 12px 12px;width:100%;border-width:1px;border-style:solid;border-color:rgb(200,200,200);border-radius:2px">
<tbody>
<tr valign="top" style="border-spacing:0px">
<td style="width:100%">
<div id="m_1979294222970553338m_-4646480300321308330LPTitle613833" style="font-size:21px;font-weight:300;margin-right:8px;font-family:wf_segoe-ui_light,"Segoe UI Light","Segoe WP Light","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;margin-bottom:12px">
<a id="m_1979294222970553338m_-4646480300321308330LPUrlAnchor613833" href="https://www.w3.org/TR/WOFF2/#FileStructure" style="text-decoration:none" target="_blank">WOFF File Format 2.0 - World Wide Web Consortium (W3C)</a></div>
<div id="m_1979294222970553338m_-4646480300321308330LPDescription613833" style="font-size:14px;max-height:100px;color:rgb(102,102,102);font-family:wf_segoe-ui_normal,"Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;margin-bottom:12px;margin-right:8px;overflow:hidden">
3. Overall file structure and basic data types. The structure of WOFF2 files is similar to that of SFNT and WOFF 1.0 font files, in that there is a header followed by a table directory, followed by the data for those tables.</div>
<div id="m_1979294222970553338m_-4646480300321308330LPMetadata613833" style="font-size:14px;font-weight:400;color:rgb(166,166,166);font-family:wf_segoe-ui_normal,"Segoe UI","Segoe WP",Tahoma,Arial,sans-serif">
<a href="http://www.w3.org" target="_blank">www.w3.org</a></div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div><br>
</div>
</li></ul>
<div style="font-family:"Courier New";font-size:9pt;color:rgb(0,0,0)">
all the best, Don</div>
<div id="m_1979294222970553338m_-4646480300321308330Signature">
<p style="margin:0in;font-family:Calibri,sans-serif;font-size:11pt"><span style="font-family:"Courier New";font-size:9pt">--</span></p>
<p style="margin:0in;font-family:Calibri,sans-serif;font-size:11pt"><span style="font-family:"Courier New";font-size:9pt">Don Brutzman  Naval Postgraduate School, Code USW/Br        <a href="mailto:brutzman@nps.edu" target="_blank">brutzman@nps.edu</a></span></p>
<p style="margin:0in;font-family:Calibri,sans-serif;font-size:11pt"><span style="font-family:"Courier New";font-size:9pt">Watkins 270,  MOVES Institute, Monterey CA 93943-5000 USA    +1.831.656.2149</span></p>
<p style="margin:0in;font-family:Calibri,sans-serif;font-size:11pt"><span style="font-family:"Courier New";font-size:9pt">X3D graphics, virtual worlds, navy robotics <a href="https://faculty.nps.edu/brutzman" target="_blank">https://faculty.nps.edu/brutzman</a></span></p>
<p style="margin:0in;font-family:Calibri,sans-serif;font-size:11pt"><span style="font-family:"Courier New";font-size:9pt"> </span></p>
</div>
<div id="m_1979294222970553338m_-4646480300321308330appendonsend"></div>
<div style="font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)">
<br>
</div>
<hr style="display:inline-block;width:98%">
<div id="m_1979294222970553338m_-4646480300321308330divRplyFwdMsg" dir="ltr"><font face="Calibri, sans-serif" color="#000000" style="font-size:11pt"><b>From:</b> x3d-public <<a href="mailto:x3d-public-bounces@web3d.org" target="_blank">x3d-public-bounces@web3d.org</a>> on behalf of Holger Seelig via x3d-public <<a href="mailto:x3d-public@web3d.org" target="_blank">x3d-public@web3d.org</a>><br>
<b>Sent:</b> Saturday, March 1, 2025 2:12 PM<br>
<b>To:</b> X3D <<a href="mailto:x3d-public@web3d.org" target="_blank">x3d-public@web3d.org</a>><br>
<b>Cc:</b> Holger Seelig <<a href="mailto:holger.seelig@yahoo.de" target="_blank">holger.seelig@yahoo.de</a>><br>
<b>Subject:</b> Re: [x3d-public] draft X3D 4.1 prose for font files and libraries</font>
<div> </div>
</div>
<div>
<div>I would also like to point out once again that a font file (WOFF, OTF, TTF) does not automatically contain the name or family name of the font. A name can therefore only be extracted from the URL. Which is certainly not desirable. </div>
<div><br>
</div>
<div>It is therefore not clear how to deduce a font file from the field `FontStyle.family`.</div>
<div><br>
</div>
<div>Best regards,</div>
<div>Holger</div>
<div><br>
</div>
<div>
<div dir="auto" style="color:rgb(0,0,0);letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none">
<div dir="auto" style="color:rgb(0,0,0);letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none">
<div dir="auto" style="color:rgb(0,0,0);letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none">
<div dir="auto" style="color:rgb(0,0,0);letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none">
<div dir="auto" style="color:rgb(0,0,0);letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none">
<div dir="auto" style="text-align:start;text-indent:0px">
<div style="color:rgb(0,0,0);letter-spacing:normal;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none">
--</div>
<div style="color:rgb(0,0,0);letter-spacing:normal;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none">
Holger Seelig</div>
<div style="color:rgb(0,0,0);letter-spacing:normal;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none">
Leipzig, Germany</div>
<div style="color:rgb(0,0,0);letter-spacing:normal;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none">
<br>
</div>
<div style="color:rgb(0,0,0);letter-spacing:normal;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none">
<a href="mailto:holger.seelig@yahoo.de" target="_blank">holger.seelig@yahoo.de</a></div>
<div><a href="https://create3000.github.io/x_ite/" target="_blank">https://create3000.github.io/x_ite/</a></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div><br>
<blockquote type="cite">
<div>Am 27.02.2025 um 13:26 schrieb Andreas Plesch via x3d-public <<a href="mailto:x3d-public@web3d.org" target="_blank">x3d-public@web3d.org</a>>:</div>
<br>
<div>
<div dir="auto">
<div dir="ltr">
<div dir="ltr">
<div dir="ltr">Since I wanted to do this for some time as it really makes webfonts much more usable with x3dom, I came up with a first implementation of the url field:
<div><br>
</div>
<div><a href="https://andreasplesch.github.io/Library/Viewer/index.html?url=https://gist.githubusercontent.com/andreasplesch/dc9111dcd106f1a69d567ceca8f52701/raw/8cdf9764f11e08b5f541dee487fc0811bb0cf927/FontHaveFunWithX3D.x3d" target="_blank">https://andreasplesch.github.io/Library/Viewer/index.html?url=https://gist.githubusercontent.com/andreasplesch/dc9111dcd106f1a69d567ceca8f52701/raw/8cdf9764f11e08b5f541dee487fc0811bb0cf927/FontHaveFunWithX3D.x3d</a></div>
<div><br>
</div>
<div>This is experimental and only for the viewer.</div>
<div><br>
</div>
<div>All loading can be done now by x3dom. Both the style and family fields are essentially ignored if a url MFString is available. Multiple urls can be provided as fallbacks. The url field accepts input and can be changed dynamically.</div>
<div><br>
</div>
<div>Here are other examples which show how css in the html can be used for webfont loading.</div>
<div><br>
</div>
<div><a href="https://andreasplesch.github.io/x3dom/test/functional/text_fonts.html" target="_blank">https://andreasplesch.github.io/x3dom/test/functional/text_fonts.html</a></div>
<div><br>
</div>
<div>That can have advantages as this then provides all of the very many css options to x3d. For example, it is straightforward to copy and paste the css provided by google fonts. The link between css and x3d becomes the font-family name plus style plus weight.
 No changes to the spec. are needed.</div>
<div><br>
</div>
<div>The simplest solution other than a url field I can think of is a new Font node which can only represent one font file with a single font and overrides family and style fields. That node can then be DEF/USEd between Text nodes. Perhaps there could be an
 additional FontLibray node which can hold multiple Font nodes but I am not sure if this is necessary.</div>
<div><br>
</div>
<div>In theory, it would be possible to add style (normal, italic) and weight (quite a few classes, and numeric) fields to such a Font node. These would define what the font provides. Then the FontStyle fields could be used to either select the closest match
 for rendering, or do synthesis which can be useful as some fonts do not have bold or italic versions. But all this is really the responsibility of the author anyways, and not necessary. </div>
<div dir="auto"><br>
</div>
<div dir="auto">Andreas</div>
<div dir="auto"><br>
</div>
</div>
<div>
<div dir="ltr">On Wed, Feb 26, 2025 at 10:51 PM Michalis Kamburelis <<a href="mailto:michalis.kambi@gmail.com" target="_blank">michalis.kambi@gmail.com</a>> wrote:<br>
</div>
<blockquote style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
Andreas Plesch wrote:<br>
> <a href="https://www.w3.org/TR/WOFF2/" target="_blank">
https://www.w3.org/TR/WOFF2/</a> is a compressed version of WOFF which seems popular on the web due to smaller file sizes. For example, it is used by the Google free Font service. I do not know if there are js/pascal/c etc. loading libraries for woff2 but it
 should at least be recommended.<br>
<br>
CGE (Pascal) just uses FreeType for font reading, so we should support<br>
everything that FreeType handles :) And it does support WOFF 2<br>
according to <a href="https://www.phoronix.com/news/FreeType-2.10.2-Released" target="_blank">
https://www.phoronix.com/news/FreeType-2.10.2-Released</a> .<br>
<br>
><br>
> From what I can tell WOFF and WOFF2 do not need to include font family name information inside the file. So I think that means if such a file is provided it will take precedence over the family field. Holger's overloading suggestion implicitly did this.<br>
><br>
> A web browser will synthesize bold and italic versions from a normal font version. Should this become a requirement for x3d as well ? Probably not. If authors want to use a bold version for certain, they need to provide corresponding font files.<br>
<br>
I see Andres comments align nicely with mine, posted 5 mins ago :)<br>
<br>
I also don't think X3D browsers should have the requirement to<br>
synthesize bold and italic versions from a normal font version. If<br>
FreeType doesn't do this (and I don't think it can) then it's not<br>
something I would ever implement, frankly. I'm not even sure how good<br>
are WWW browsers at doing this "synthesizing". The recommendation for<br>
using fonts, that I always seen followed, is that you need 4 font<br>
files (regular, bold, italic, bold+italic) if you want to provide all<br>
the options. The font authors seems to generally agree -- most fonts<br>
come with 4 such files.<br>
<br>
And as Andreas said, the spec should say that "url" overrides "family".<br>
<br>
Regards,<br>
Michalis<br>
</blockquote>
</div>
<div><br clear="all">
</div>
<div><br>
</div>
</div>
</div>
</div>
_______________________________________________<br>
x3d-public mailing list<br>
<a href="mailto:x3d-public@web3d.org" target="_blank">x3d-public@web3d.org</a><br>
<a href="http://web3d.org/mailman/listinfo/x3d-public_web3d.org" target="_blank">http://web3d.org/mailman/listinfo/x3d-public_web3d.org</a><br>
</div>
</blockquote>
</div>
<br>
</div>
</div>

_______________________________________________<br>
x3d-public mailing list<br>
<a href="mailto:x3d-public@web3d.org" target="_blank">x3d-public@web3d.org</a><br>
<a href="http://web3d.org/mailman/listinfo/x3d-public_web3d.org" rel="noreferrer" target="_blank">http://web3d.org/mailman/listinfo/x3d-public_web3d.org</a><br>
</div></blockquote></div>