No, unfortunately it does not support it.
s™️n
Creator of
Recent community posts
This happens because of the \ right before r. In my case, the issue shows up when there’s only a single \, but in your pasted spacing data it looks like you already have two \\.
Just make sure that in Construct 3 it really ends up as two backslash characters before r. If it still behaves like there’s only one (because of escaping), try using four backslashes: \\\\.
So far I only know the issue is caused by the backslash before r in the spacing data, but I don’t know why it doesn’t happen for me. I’ll try generating the spacing data on Windows later - maybe the escaping/serialization differs there.
This is a port of my previous browser-based converter, converted into a native app:
https://stmn.itch.io/font2bitmap
The native version has a few fewer features, but most importantly, it should allow you to disable antialiasing.
I haven't tested this extensively. Let me know if anything isn't working properly.
I spent an evening creating a native version of the converter, meaning you can download and run it locally (Windows, MacOS, Linux). It's available here:
https://stmn.itch.io/font2bitmap-standalone
This version should allow you to create bitmaps with antialiasing disabled. However, I don't need such a tool anymore, so I haven't tested it extensively. Let me know there if it works correctly.
It's no longer possible to disable antialiasing in browsers, as browsers have abandoned this feature. You can try using Firefox by enabling gfx.text.disable-aa in the settings (requires a restart), and that seems to work. But it's a very poor solution. If someone needs to disable antialiasing, they should look for an application other than one based on browser technologies.
Thanks for your solution.
I tried to disable AA from the css styles, but it doesn't seem to work for me - some solutions on the Internet are no longer up to date.
I guess I'll just link your solution in the tool description for now.
I use Chrome on MacOS and it seems that it's the only combination where the option to disable AA from the tool works.
Maybe someone else will suggest another solution, I don't see one for now.
The browser controls the anti-aliasing, so my capabilities are limited. However, I just checked that on Firefox, anti-aliasing is enabled by default - that's why turning it on here makes no difference. On Chrome, anti-aliasing is off by default, so on this browser, controlling this option works as intended.
If I diagnosed the problem correctly, try using Chrome. I will further analyze the issue with Firefox and see if it can be fixed.
If you're using Chrome and still see the problem, please send the font and a screenshot of how it looks on your end. I don't see any issue on Chrome.
Hi, I have very limited time but I will consider every proposition. For now I increased height of an iframe a little. If it is still too small you can use full screen option or https://stmn.github.io/font2bitmap/
Your server is configured to block access from different domain.
The best solution is to unlock it on your side. I could also make a proxy as middleware to solve this problem but it's too much effort comparing to first solution.
There is third option, my tool is now free to download and install it on your server where problem will not appear: https://github.com/stmn/font2bitmap
Just need to upload: https://github.com/stmn/font2bitmap/archive/refs/heads/gh-pages.zip
Well it's possible that I will provide an input form to import font from url. In this way there will be possibility to create bitmap from all fonts which are accessible by any server. For example here: https://www.cdnfonts.com/grames.font you will need to copy that url on right.
At this moment if we want to use different font we can paste in browser console small js code like below:
const style = document.createElement("style")
style.textContent = `
@font-face {
font-family: 'YourFontName';
src: url('https://fonts.cdnfonts.com/s/30605/GRAMES.woff');
}
#preview {
font-family: 'YourFontName' !important;
}
`
document.head.appendChild(style)














