public interface IFontMorseDecoder
Declares functionality to decode Morse code into glyphs of the specified font.
| Modifier and Type | Method and Description |
|---|---|
GlyphId[] |
decode(String morseText,
IFont font)
Deciphers Morse code into glyphs of the specified font.
|
InputStream |
decode(String morseText,
IFont font,
double fontSize,
RenderingUtils.LineSpacingType lineSpacingType,
int lineSpacingValue,
int maxWidth)
Deciphers Morse code and draws result in PNG-format.
|
InputStream |
decode(String morseText,
IFont font,
double fontSize,
RenderingUtils.LineSpacingType lineSpacingType,
int lineSpacingValue,
int maxWidth,
MorseAlphabets alphabet)
Deciphers Morse code and draws result in PNG-format.
|
InputStream |
decode(String morseText,
IFont font,
double fontSize,
RenderingUtils.LineSpacingType lineSpacingType,
int lineSpacingValue,
int maxWidth,
MorseAlphabets alphabet,
char inputSeparator)
Deciphers Morse code and draws result in PNG-format.
|
InputStream |
decode(String morseText,
IFont font,
double fontSize,
RenderingUtils.LineSpacingType lineSpacingType,
int lineSpacingValue,
int maxWidth,
MorseAlphabets alphabet,
char inputSeparator,
char outputSeparator)
Deciphers Morse code and draws result in PNG-format.
|
GlyphId[] |
decode(String morseText,
IFont font,
MorseAlphabets alphabet)
Deciphers Morse code into glyphs of the specified font.
|
GlyphId[] |
decode(String morseText,
IFont font,
MorseAlphabets alphabet,
char inputSeparator)
Deciphers Morse code into glyphs of the specified font.
|
GlyphId[] |
decode(String morseText,
IFont font,
MorseAlphabets alphabet,
char inputSeparator,
char outputSeparator)
Deciphers Morse code into glyphs of the specified font.
|
GlyphId[] decode(String morseText, IFont font)
Deciphers Morse code into glyphs of the specified font.
morseText - Text encoded by Morse code, i.e. text like "... --- ..."(SOS).font - Font to take glyphs related to decoded text from.GlyphId[] decode(String morseText, IFont font, MorseAlphabets alphabet)
Deciphers Morse code into glyphs of the specified font.
morseText - Text encoded by Morse code, i.e. text like "... --- ..."(SOS).font - Font to take glyphs related to decoded text from.alphabet - Alphabet of Morse code.GlyphId[] decode(String morseText, IFont font, MorseAlphabets alphabet, char inputSeparator)
Deciphers Morse code into glyphs of the specified font.
morseText - Text encoded by Morse code, i.e. text like "... --- ..."(SOS).font - Font to take glyphs related to decoded text from.alphabet - Alphabet of Morse code.inputSeparator - Symbol used to separate words in encoded text.GlyphId[] decode(String morseText, IFont font, MorseAlphabets alphabet, char inputSeparator, char outputSeparator)
Deciphers Morse code into glyphs of the specified font.
morseText - Text encoded by Morse code, i.e. text like "... --- ..."(SOS).font - Font to take glyphs related to decoded text from.alphabet - Alphabet of Morse code.inputSeparator - Symbol used to separate words in encoded text.outputSeparator - Symbol used to separate words in decoded text.InputStream decode(String morseText, IFont font, double fontSize, RenderingUtils.LineSpacingType lineSpacingType, int lineSpacingValue, int maxWidth)
Deciphers Morse code and draws result in PNG-format.
morseText - Text encoded by Morse code, i.e. text like "... --- ..."(SOS).font - Font to take glyphs related to decoded text from.fontSize - Font size.lineSpacingType - Type of line spacing. Number of pixels or percent of font height.lineSpacingValue - Value of line spacing.maxWidth - Max width in pixels for image.InputStream decode(String morseText, IFont font, double fontSize, RenderingUtils.LineSpacingType lineSpacingType, int lineSpacingValue, int maxWidth, MorseAlphabets alphabet)
Deciphers Morse code and draws result in PNG-format.
morseText - Text encoded by Morse code, i.e. text like "... --- ..."(SOS).font - Font to take glyphs related to decoded text from.fontSize - Font size.lineSpacingType - Type of line spacing. Number of pixels or percent of font height.lineSpacingValue - Value of line spacing.maxWidth - Max width in pixels for image.alphabet - Alphabet of Morse code.InputStream decode(String morseText, IFont font, double fontSize, RenderingUtils.LineSpacingType lineSpacingType, int lineSpacingValue, int maxWidth, MorseAlphabets alphabet, char inputSeparator)
Deciphers Morse code and draws result in PNG-format.
morseText - Text encoded by Morse code, i.e. text like "... --- ..."(SOS).font - Font to take glyphs related to decoded text from.fontSize - Font size.lineSpacingType - Type of line spacing. Number of pixels or percent of font height.lineSpacingValue - Value of line spacing.maxWidth - Max width in pixels for image.alphabet - Alphabet of Morse code.inputSeparator - Symbol used to separate words in encoded text.InputStream decode(String morseText, IFont font, double fontSize, RenderingUtils.LineSpacingType lineSpacingType, int lineSpacingValue, int maxWidth, MorseAlphabets alphabet, char inputSeparator, char outputSeparator)
Deciphers Morse code and draws result in PNG-format.
morseText - Text encoded by Morse code, i.e. text like "... --- ..."(SOS).font - Font to take glyphs related to decoded text from.fontSize - Font size.lineSpacingType - Type of line spacing. Number of pixels or percent of font height.lineSpacingValue - Value of line spacing.maxWidth - Max width in pixels for image.alphabet - Alphabet of Morse code.inputSeparator - Symbol used to separate words in encoded text.outputSeparator - Symbol used to separate words in decoded text.Copyright © 2025 Aspose. All Rights Reserved.