Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions french/java/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
title: "Aspose.Font pour Java"
type: docs
weight: 11
url: /fr/java/
description: "Les r茅f茅rences API d'Aspose.Font pour Java contiennent des exemples, des extraits de code et de la documentation API. Elles fournissent des packages, des classes, des interfaces et d'autres d茅tails d'API."
is_root: true
---
## Packages
| Package | Description |
| --- | --- |
| [com.aspose.font](./com.aspose.font) | Le **com.aspose.font** est un package racine pour toutes les classes qui traitent des polices. |
| [com.aspose.font.textutils](./com.aspose.font.textutils) | Le package **com.aspose.font.text.utils** fournit des classes et des interfaces pour le traitement du texte. |
32 changes: 32 additions & 0 deletions french/java/com.aspose.font.textutils/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
---
title: "com.aspose.font.textutils"
second_title: "R茅f茅rence API d'Aspose.Font pour Java"
description: "Le package com.aspose.font.text.utils fournit des classes et des interfaces pour le traitement du texte."
type: docs
weight: 11
url: /fr/java/com.aspose.font.textutils/
---

Le package **com.aspose.font.text.utils** fournit des classes et des interfaces pour le traitement du texte.


## Classes

| Classe | Description |
| --- | --- |
| [TextUtilsFactory](../com.aspose.font.textutils/textutilsfactory) | Fournit des fonctionnalit茅s pour r茅cup茅rer les cr茅ateurs d'objets de service texte |

## Interfaces

| Interface | Description |
| --- | --- |
| [IFontMorseDecoder](../com.aspose.font.textutils/ifontmorsedecoder) | D茅clare une fonctionnalit茅 pour d茅coder le code Morse en glyphes de la police sp茅cifi茅e. |
| [IFontMorseEncoder](../com.aspose.font.textutils/ifontmorseencoder) | D茅clare une fonctionnalit茅 pour encoder du texte en code Morse et obtenir le r茅sultat sous forme de glyphes de police. |
| [IMorseDecoder](../com.aspose.font.textutils/imorsedecoder) | D茅clare une fonctionnalit茅 pour d茅chiffrer le code Morse. |
| [IMorseEncoder](../com.aspose.font.textutils/imorseencoder) | D茅clare une fonctionnalit茅 pour encoder du texte en code Morse. |

## 脡num茅rations

| 脡num | Description |
| --- | --- |
| [MorseAlphabets](../com.aspose.font.textutils/morsealphabets) | Repr茅sente l'ensemble des alphabets pris en charge pour le code Morse |
180 changes: 180 additions & 0 deletions french/java/com.aspose.font.textutils/ifontmorsedecoder/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,180 @@
---
title: "IFontMorseDecoder"
second_title: "R茅f茅rence API d'Aspose.Font pour Java"
description: "D茅clare une fonctionnalit茅 pour d茅coder le code Morse en glyphes de la police sp茅cifi茅e."
type: docs
weight: 11
url: /fr/java/com.aspose.font.textutils/ifontmorsedecoder/
---```
public interface IFontMorseDecoder
```

Declares functionality to decode Morse code into glyphs of the specified font.
## Methods

| Method | Description |
| --- | --- |
| [decode(String morseText, IFont font)](#decode-java.lang.String-com.aspose.font.IFont-) | Deciphers Morse code into glyphs of the specified font. |
| [decode(String morseText, IFont font, MorseAlphabets alphabet)](#decode-java.lang.String-com.aspose.font.IFont-com.aspose.font.textutils.MorseAlphabets-) | Deciphers Morse code into glyphs of the specified font. |
| [decode(String morseText, IFont font, MorseAlphabets alphabet, char inputSeparator)](#decode-java.lang.String-com.aspose.font.IFont-com.aspose.font.textutils.MorseAlphabets-char-) | Deciphers Morse code into glyphs of the specified font. |
| [decode(String morseText, IFont font, MorseAlphabets alphabet, char inputSeparator, char outputSeparator)](#decode-java.lang.String-com.aspose.font.IFont-com.aspose.font.textutils.MorseAlphabets-char-char-) | Deciphers Morse code into glyphs of the specified font. |
| [decode(String morseText, IFont font, double fontSize, RenderingUtils.LineSpacingType lineSpacingType, int lineSpacingValue, int maxWidth)](#decode-java.lang.String-com.aspose.font.IFont-double-com.aspose.font.RenderingUtils.LineSpacingType-int-int-) | Deciphers Morse code and draws result in PNG-format. |
| [decode(String morseText, IFont font, double fontSize, RenderingUtils.LineSpacingType lineSpacingType, int lineSpacingValue, int maxWidth, MorseAlphabets alphabet)](#decode-java.lang.String-com.aspose.font.IFont-double-com.aspose.font.RenderingUtils.LineSpacingType-int-int-com.aspose.font.textutils.MorseAlphabets-) | Deciphers Morse code and draws result in PNG-format. |
| [decode(String morseText, IFont font, double fontSize, RenderingUtils.LineSpacingType lineSpacingType, int lineSpacingValue, int maxWidth, MorseAlphabets alphabet, char inputSeparator)](#decode-java.lang.String-com.aspose.font.IFont-double-com.aspose.font.RenderingUtils.LineSpacingType-int-int-com.aspose.font.textutils.MorseAlphabets-char-) | Deciphers Morse code and draws result in PNG-format. |
| [decode(String morseText, IFont font, double fontSize, RenderingUtils.LineSpacingType lineSpacingType, int lineSpacingValue, int maxWidth, MorseAlphabets alphabet, char inputSeparator, char outputSeparator)](#decode-java.lang.String-com.aspose.font.IFont-double-com.aspose.font.RenderingUtils.LineSpacingType-int-int-com.aspose.font.textutils.MorseAlphabets-char-char-) | Deciphers Morse code and draws result in PNG-format. |
### decode(String morseText, IFont font) {#decode-java.lang.String-com.aspose.font.IFont-}
```
public abstract GlyphId[] decode(String morseText, IFont font)
```


Deciphers Morse code into glyphs of the specified font.

**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| morseText | java.lang.String | Text encoded by Morse code, i.e. text like "... --- ..."(SOS). |
| font | [IFont](../../com.aspose.font/ifont) | Font to take glyphs related to decoded text from. |

**Returns:**
com.aspose.font.GlyphId[] - Glyphs (glyph identifiers) related to decoded text.
### decode(String morseText, IFont font, MorseAlphabets alphabet) {#decode-java.lang.String-com.aspose.font.IFont-com.aspose.font.textutils.MorseAlphabets-}
```
public abstract GlyphId[] decode(String morseText, IFont font, MorseAlphabets alphabet)
```


Deciphers Morse code into glyphs of the specified font.

**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| morseText | java.lang.String | Text encoded by Morse code, i.e. text like "... --- ..."(SOS). |
| font | [IFont](../../com.aspose.font/ifont) | Font to take glyphs related to decoded text from. |
| alphabet | [MorseAlphabets](../../com.aspose.font.textutils/morsealphabets) | Alphabet of Morse code. |

**Returns:**
com.aspose.font.GlyphId[] - Glyphs (glyph identifiers) related to decoded text.
### decode(String morseText, IFont font, MorseAlphabets alphabet, char inputSeparator) {#decode-java.lang.String-com.aspose.font.IFont-com.aspose.font.textutils.MorseAlphabets-char-}
```
public abstract GlyphId[] decode(String morseText, IFont font, MorseAlphabets alphabet, char inputSeparator)
```


Deciphers Morse code into glyphs of the specified font.

**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| morseText | java.lang.String | Text encoded by Morse code, i.e. text like "... --- ..."(SOS). |
| font | [IFont](../../com.aspose.font/ifont) | Font to take glyphs related to decoded text from. |
| alphabet | [MorseAlphabets](../../com.aspose.font.textutils/morsealphabets) | Alphabet of Morse code. |
| inputSeparator | char | Symbol used to separate words in encoded text. |

**Returns:**
com.aspose.font.GlyphId[] - Glyphs (glyph identifiers) related to decoded text.
### decode(String morseText, IFont font, MorseAlphabets alphabet, char inputSeparator, char outputSeparator) {#decode-java.lang.String-com.aspose.font.IFont-com.aspose.font.textutils.MorseAlphabets-char-char-}
```
public abstract GlyphId[] decode(String morseText, IFont font, MorseAlphabets alphabet, char inputSeparator, char outputSeparator)
```


Deciphers Morse code into glyphs of the specified font.

**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| morseText | java.lang.String | Text encoded by Morse code, i.e. text like "... --- ..."(SOS). |
| font | [IFont](../../com.aspose.font/ifont) | Font to take glyphs related to decoded text from. |
| alphabet | [MorseAlphabets](../../com.aspose.font.textutils/morsealphabets) | Alphabet of Morse code. |
| inputSeparator | char | Symbol used to separate words in encoded text. |
| outputSeparator | char | Symbol used to separate words in decoded text. |

**Returns:**
com.aspose.font.GlyphId[] - Glyphs (glyph identifiers) related to decoded text.
### decode(String morseText, IFont font, double fontSize, RenderingUtils.LineSpacingType lineSpacingType, int lineSpacingValue, int maxWidth) {#decode-java.lang.String-com.aspose.font.IFont-double-com.aspose.font.RenderingUtils.LineSpacingType-int-int-}
```
public abstract InputStream decode(String morseText, IFont font, double fontSize, RenderingUtils.LineSpacingType lineSpacingType, int lineSpacingValue, int maxWidth)
```


Deciphers Morse code and draws result in PNG-format.

**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| morseText | java.lang.String | Text encoded by Morse code, i.e. text like "... --- ..."(SOS). |
| font | [IFont](../../com.aspose.font/ifont) | Font to take glyphs related to decoded text from. |
| fontSize | double | Font size. |
| lineSpacingType | [LineSpacingType](../../com.aspose.font/linespacingtype) | Type of line spacing. Number of pixels or percent of font height. |
| lineSpacingValue | int | Value of line spacing. |
| maxWidth | int | Max width in pixels for image. |

**Returns:**
java.io.InputStream - Decoded text in PNG-format as stream of bytes.
### decode(String morseText, IFont font, double fontSize, RenderingUtils.LineSpacingType lineSpacingType, int lineSpacingValue, int maxWidth, MorseAlphabets alphabet) {#decode-java.lang.String-com.aspose.font.IFont-double-com.aspose.font.RenderingUtils.LineSpacingType-int-int-com.aspose.font.textutils.MorseAlphabets-}
```
public abstract 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.

**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| morseText | java.lang.String | Text encoded by Morse code, i.e. text like "... --- ..."(SOS). |
| font | [IFont](../../com.aspose.font/ifont) | Font to take glyphs related to decoded text from. |
| fontSize | double | Font size. |
| lineSpacingType | [LineSpacingType](../../com.aspose.font/linespacingtype) | Type of line spacing. Number of pixels or percent of font height. |
| lineSpacingValue | int | Value of line spacing. |
| maxWidth | int | Max width in pixels for image. |
| alphabet | [MorseAlphabets](../../com.aspose.font.textutils/morsealphabets) | Alphabet of Morse code. |

**Returns:**
java.io.InputStream - Decoded text in PNG-format as stream of bytes.
### decode(String morseText, IFont font, double fontSize, RenderingUtils.LineSpacingType lineSpacingType, int lineSpacingValue, int maxWidth, MorseAlphabets alphabet, char inputSeparator) {#decode-java.lang.String-com.aspose.font.IFont-double-com.aspose.font.RenderingUtils.LineSpacingType-int-int-com.aspose.font.textutils.MorseAlphabets-char-}
```
public abstract 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.

**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| morseText | java.lang.String | Text encoded by Morse code, i.e. text like "... --- ..."(SOS). |
| font | [IFont](../../com.aspose.font/ifont) | Font to take glyphs related to decoded text from. |
| fontSize | double | Font size. |
| lineSpacingType | [LineSpacingType](../../com.aspose.font/linespacingtype) | Type of line spacing. Number of pixels or percent of font height. |
| lineSpacingValue | int | Value of line spacing. |
| maxWidth | int | Max width in pixels for image. |
| alphabet | [MorseAlphabets](../../com.aspose.font.textutils/morsealphabets) | Alphabet of Morse code. |
| inputSeparator | char | Symbol used to separate words in encoded text. |

**Returns:**
java.io.InputStream - Decoded text in PNG-format as stream of bytes.
### decode(String morseText, IFont font, double fontSize, RenderingUtils.LineSpacingType lineSpacingType, int lineSpacingValue, int maxWidth, MorseAlphabets alphabet, char inputSeparator, char outputSeparator) {#decode-java.lang.String-com.aspose.font.IFont-double-com.aspose.font.RenderingUtils.LineSpacingType-int-int-com.aspose.font.textutils.MorseAlphabets-char-char-}
```
public abstract 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.

**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| morseText | java.lang.String | Text encoded by Morse code, i.e. text like "... --- ..."(SOS). |
| font | [IFont](../../com.aspose.font/ifont) | Font to take glyphs related to decoded text from. |
| fontSize | double | Font size. |
| lineSpacingType | [LineSpacingType](../../com.aspose.font/linespacingtype) | Type of line spacing. Number of pixels or percent of font height. |
| lineSpacingValue | int | Value of line spacing. |
| maxWidth | int | Max width in pixels for image. |
| alphabet | [MorseAlphabets](../../com.aspose.font.textutils/morsealphabets) | Alphabet of Morse code. |
| inputSeparator | char | Symbol used to separate words in encoded text. |
| outputSeparator | char | Symbol used to separate words in decoded text. |

**Returns:**
java.io.InputStream - Decoded text in PNG-format as stream of bytes.
Loading