Research
Security News
Malicious PyPI Package ‘pycord-self’ Targets Discord Developers with Token Theft and Backdoor Exploit
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
hersheytext
Advanced tools
A port of the EMSL Hershey engraving font data from the Hershey Text Inkscape Plugin to JSON, capable of being rendered quickly via JavaScript & SVG.
This includes an quickly written example renderer, see the demo on the live github page to give it a try!
JSON data only contains original Hershey font data, but Node.js module allows access to this and all included SVG fonts and an API to add your own!
Load the structured JSON data and use it to create your own renderer, or use the example as a starting point.
Install via npm install hersheytext
, then include in your node script with
const hershey = require('hersheytext');
.
The JSON font data will be accessible at hershey.fonts
, EG:
hershey.fonts['futural'].chars[2]
. The chars[n].d
string value can be put directly
into the d
attribute within a <path>
SVG element, or imported to a
Paper.js compound path.
See hersheytest.js for more data usage examples, check lib/hersheytext.js
for full
function level documentation.
You can access either SVG or Hershey font raw data using getFontData()
:
const hershey = require('hersheytext');
console.log('All fonts available', hershey.getFonts());
const svgFont = hershey.getFontData('ems_tech');
console.log('Font Type:', svgFont.type);
console.log('SVG <font-face> cap height:', svgFont.info['cap-height']);
console.log('SVG <font> default char kern width:', svgFont.info['horiz-adv-x']);
console.log('SVG <glyph> exclamation char data:', svgFont.getChar('!'));
const hersheyFont = hershey.getFontData('cursive');
console.log('Font Type:', hersheyFont.type);
console.log('Hershey Font Display Name:', hersheyFont.info['font-family']);
console.log(`Hershey Font 'A' kern width:`, hersheyFont.getChar('A').width);
console.log('Hershey Font exclamation char data:', hersheyFont.getChar('!').d);
Hershey Text JS comes with a very simple single line renderer, renderTextSVG()
, which
returns a formatted group of characters with correct offsets.
const hershey = require('hersheytext');
const fs = require('fs');
const options = {
font: 'hershey_script_1',
scale: 0.25,
};
const header = '<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">';
const data = hershey.renderTextSVG('Take a Look, if you Will.', options);
const footer = '</svg>';
fs.writeFileSync('test.svg', `${header}\n${data}\n${footer}`);
If you have your own rendering intent that isn't SVG directly, the render array function is the easiest way to do that. To render plain text into an array of easily renderable character data from SVG or Hershey font data, start with something like this:
const hershey = require('hersheytext');
const textArray = hershey.renderTextArray('Hello World!', { font: 'ems_allure' });
textArray.forEach(char => {
console.log('--------------------------------------------');
console.log('Character:', char.type);
console.log('Name:', char.name);
console.log('Kerning Width (in font units):', char.width);
console.log('Path Data:', char.d);
});
If you have an SVG font you'd like to use that isn't one of the ones HersheyText JS ships
with, just use addSVGFont()
:
const hershey = require('hersheytext');
// Will return false if there was a problem. See console for errors.
hershey.addSVGFont('path/to/my-test-font.svg');
// Machine name will be SVG font-family, lowercase with spaces replaced with underscores.
const options = { font: 'my_test_font' };
const data = hershey.renderTextSVG('In my own custom font!', options);
Notes:
<path transform="scale(1, -1)" …
JSON data Public Domain, All other code MIT Licensed.
FAQs
A port of the Hershey engraving fonts to JSON for JavaScript/SVG
The npm package hersheytext receives a total of 12 weekly downloads. As such, hersheytext popularity was classified as not popular.
We found that hersheytext demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.
Security News
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.