diff --git a/french/java/_index.md b/french/java/_index.md new file mode 100644 index 0000000000..5b2ff4865b --- /dev/null +++ b/french/java/_index.md @@ -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. | diff --git a/french/java/com.aspose.font.textutils/_index.md b/french/java/com.aspose.font.textutils/_index.md new file mode 100644 index 0000000000..fa808f60c0 --- /dev/null +++ b/french/java/com.aspose.font.textutils/_index.md @@ -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 | diff --git a/french/java/com.aspose.font.textutils/ifontmorsedecoder/_index.md b/french/java/com.aspose.font.textutils/ifontmorsedecoder/_index.md new file mode 100644 index 0000000000..a3f3ee871c --- /dev/null +++ b/french/java/com.aspose.font.textutils/ifontmorsedecoder/_index.md @@ -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. diff --git a/french/java/com.aspose.font.textutils/ifontmorseencoder/_index.md b/french/java/com.aspose.font.textutils/ifontmorseencoder/_index.md new file mode 100644 index 0000000000..7b02e9e5f0 --- /dev/null +++ b/french/java/com.aspose.font.textutils/ifontmorseencoder/_index.md @@ -0,0 +1,262 @@ +--- +title: "IFontMorseEncoder" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Déclare une fonctionnalité pour encoder du texte en code Morse et obtenir le résultat sous forme de glyphes de police." +type: docs +weight: 12 +url: /fr/java/com.aspose.font.textutils/ifontmorseencoder/ +---``` +public interface IFontMorseEncoder +``` + +Declares functionality to encode text by Morse code and get result as font glyphs. +## Methods + +| Method | Description | +| --- | --- | +| [encode(String text, IFont font)](#encode-java.lang.String-com.aspose.font.IFont-) | Encodes text in Morse code and returns result as set of glyphs(glyphId). | +| [encode(String text, IFont font, char inputSeparator)](#encode-java.lang.String-com.aspose.font.IFont-char-) | Encodes text in Morse code and returns result as set of glyphs(glyphId). | +| [encode(String text, IFont font, char inputSeparator, char outputSeparator)](#encode-java.lang.String-com.aspose.font.IFont-char-char-) | Encodes text in Morse code and returns result as set of glyphs(glyphId). | +| [encode(String text, IFont font, MorseAlphabets alphabet)](#encode-java.lang.String-com.aspose.font.IFont-com.aspose.font.textutils.MorseAlphabets-) | Encodes text by Morse code and returns result as set of glyphs(glyph identifiers). | +| [encode(String text, IFont font, MorseAlphabets alphabet, char inputSeparator)](#encode-java.lang.String-com.aspose.font.IFont-com.aspose.font.textutils.MorseAlphabets-char-) | Encodes text by Morse code and returns result as set of glyphs(glyph identifiers). | +| [encode(String text, IFont font, MorseAlphabets alphabet, char inputSeparator, char outputSeparator)](#encode-java.lang.String-com.aspose.font.IFont-com.aspose.font.textutils.MorseAlphabets-char-char-) | Encodes text by Morse code and returns result as set of glyphs(glyph identifiers). | +| [encode(String text, IFont font, double fontSize, RenderingUtils.LineSpacingType lineSpacingType, int lineSpacingValue, int maxWidth)](#encode-java.lang.String-com.aspose.font.IFont-double-com.aspose.font.RenderingUtils.LineSpacingType-int-int-) | Encodes text in Morse code and draws result in PNG-format. | +| [encode(String text, IFont font, double fontSize, RenderingUtils.LineSpacingType lineSpacingType, int lineSpacingValue, int maxWidth, char inputSeparator)](#encode-java.lang.String-com.aspose.font.IFont-double-com.aspose.font.RenderingUtils.LineSpacingType-int-int-char-) | Encodes text in Morse code and draws result in PNG-format. | +| [encode(String text, IFont font, double fontSize, RenderingUtils.LineSpacingType lineSpacingType, int lineSpacingValue, int maxWidth, char inputSeparator, char outputSeparator)](#encode-java.lang.String-com.aspose.font.IFont-double-com.aspose.font.RenderingUtils.LineSpacingType-int-int-char-char-) | Encodes text in Morse code and draws result in PNG-format. | +| [encode(String text, IFont font, double fontSize, RenderingUtils.LineSpacingType lineSpacingType, int lineSpacingValue, int maxWidth, MorseAlphabets alphabet)](#encode-java.lang.String-com.aspose.font.IFont-double-com.aspose.font.RenderingUtils.LineSpacingType-int-int-com.aspose.font.textutils.MorseAlphabets-) | Encodes text by Morse code and draws result in PNG-format. | +| [encode(String text, IFont font, double fontSize, RenderingUtils.LineSpacingType lineSpacingType, int lineSpacingValue, int maxWidth, MorseAlphabets alphabet, char inputSeparator)](#encode-java.lang.String-com.aspose.font.IFont-double-com.aspose.font.RenderingUtils.LineSpacingType-int-int-com.aspose.font.textutils.MorseAlphabets-char-) | Encodes text by Morse code and draws result in PNG-format. | +| [encode(String text, IFont font, double fontSize, RenderingUtils.LineSpacingType lineSpacingType, int lineSpacingValue, int maxWidth, MorseAlphabets alphabet, char inputSeparator, char outputSeparator)](#encode-java.lang.String-com.aspose.font.IFont-double-com.aspose.font.RenderingUtils.LineSpacingType-int-int-com.aspose.font.textutils.MorseAlphabets-char-char-) | Encodes text by Morse code and draws result in PNG-format. | +### encode(String text, IFont font) {#encode-java.lang.String-com.aspose.font.IFont-} +``` +public abstract GlyphId[] encode(String text, IFont font) +``` + + +Encodes text in Morse code and returns result as set of glyphs(glyphId). Heuristic analysis is used to calculate the alphabet of the input text. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| text | java.lang.String | Text to encode by Morse code. | +| font | [IFont](../../com.aspose.font/ifont) | Font to take glyphs related to symbols dot and dash from. | + +**Returns:** +com.aspose.font.GlyphId[] - Glyphs(glyphId) related to encoded text, i.e. "... --- ..." for the input text "SOS". +### encode(String text, IFont font, char inputSeparator) {#encode-java.lang.String-com.aspose.font.IFont-char-} +``` +public abstract GlyphId[] encode(String text, IFont font, char inputSeparator) +``` + + +Encodes text in Morse code and returns result as set of glyphs(glyphId). Heuristic analysis is used to calculate the alphabet of the input text. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| text | java.lang.String | Text to encode by Morse code. | +| font | [IFont](../../com.aspose.font/ifont) | Font to take glyphs related to symbols dot and dash from. | +| inputSeparator | char | Symbol used to separate words in input text. | + +**Returns:** +com.aspose.font.GlyphId[] - Glyphs(glyphId) related to encoded text, i.e. "... --- ..." for the input text "SOS". +### encode(String text, IFont font, char inputSeparator, char outputSeparator) {#encode-java.lang.String-com.aspose.font.IFont-char-char-} +``` +public abstract GlyphId[] encode(String text, IFont font, char inputSeparator, char outputSeparator) +``` + + +Encodes text in Morse code and returns result as set of glyphs(glyphId). Heuristic analysis is used to calculate the alphabet of the input text. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| text | java.lang.String | Text to encode by Morse code. | +| font | [IFont](../../com.aspose.font/ifont) | Font to take glyphs related to symbols dot and dash from. | +| inputSeparator | char | Symbol used to separate words in input text. | +| outputSeparator | char | Symbol used to separate words in encoded text. | + +**Returns:** +com.aspose.font.GlyphId[] - Glyphs(glyphId) related to encoded text, i.e. "... --- ..." for the input text "SOS". +### encode(String text, IFont font, MorseAlphabets alphabet) {#encode-java.lang.String-com.aspose.font.IFont-com.aspose.font.textutils.MorseAlphabets-} +``` +public abstract GlyphId[] encode(String text, IFont font, MorseAlphabets alphabet) +``` + + +Encodes text by Morse code and returns result as set of glyphs(glyph identifiers). + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| text | java.lang.String | Text to encode by Morse code. | +| font | [IFont](../../com.aspose.font/ifont) | Font to take glyphs related to symbols dot and dash from. | +| alphabet | [MorseAlphabets](../../com.aspose.font.textutils/morsealphabets) | Alphabet of Morse code. | + +**Returns:** +com.aspose.font.GlyphId[] - Glyphs(glyphId) related to encoded text, i.e. "... --- ..." for the input text "SOS". +### encode(String text, IFont font, MorseAlphabets alphabet, char inputSeparator) {#encode-java.lang.String-com.aspose.font.IFont-com.aspose.font.textutils.MorseAlphabets-char-} +``` +public abstract GlyphId[] encode(String text, IFont font, MorseAlphabets alphabet, char inputSeparator) +``` + + +Encodes text by Morse code and returns result as set of glyphs(glyph identifiers). + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| text | java.lang.String | Text to encode by Morse code. | +| font | [IFont](../../com.aspose.font/ifont) | Font to take glyphs related to symbols dot and dash from. | +| alphabet | [MorseAlphabets](../../com.aspose.font.textutils/morsealphabets) | Alphabet of Morse code. | +| inputSeparator | char | Symbol used to separate words in input text. | + +**Returns:** +com.aspose.font.GlyphId[] - Glyphs(glyphId) related to encoded text, i.e. "... --- ..." for the input text "SOS". +### encode(String text, IFont font, MorseAlphabets alphabet, char inputSeparator, char outputSeparator) {#encode-java.lang.String-com.aspose.font.IFont-com.aspose.font.textutils.MorseAlphabets-char-char-} +``` +public abstract GlyphId[] encode(String text, IFont font, MorseAlphabets alphabet, char inputSeparator, char outputSeparator) +``` + + +Encodes text by Morse code and returns result as set of glyphs(glyph identifiers). + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| text | java.lang.String | Text to encode by Morse code. | +| font | [IFont](../../com.aspose.font/ifont) | Font to take glyphs related to symbols dot and dash from. | +| alphabet | [MorseAlphabets](../../com.aspose.font.textutils/morsealphabets) | Alphabet of Morse code. | +| inputSeparator | char | Symbol used to separate words in input text. | +| outputSeparator | char | Symbol used to separate words in encoded text. | + +**Returns:** +com.aspose.font.GlyphId[] - Glyphs(glyphId) related to encoded text, i.e. "... --- ..." for the input text "SOS". +### encode(String text, IFont font, double fontSize, RenderingUtils.LineSpacingType lineSpacingType, int lineSpacingValue, int maxWidth) {#encode-java.lang.String-com.aspose.font.IFont-double-com.aspose.font.RenderingUtils.LineSpacingType-int-int-} +``` +public abstract InputStream encode(String text, IFont font, double fontSize, RenderingUtils.LineSpacingType lineSpacingType, int lineSpacingValue, int maxWidth) +``` + + +Encodes text in Morse code and draws result in PNG-format. Heuristic analysis is used to calculate the alphabet of the input text. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| text | java.lang.String | Text to encode by Morse code. | +| font | [IFont](../../com.aspose.font/ifont) | Font to take glyphs related to symbols dot and dash 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 - Text, encoded by Morse code, in PNG-format as stream of bytes. +### encode(String text, IFont font, double fontSize, RenderingUtils.LineSpacingType lineSpacingType, int lineSpacingValue, int maxWidth, char inputSeparator) {#encode-java.lang.String-com.aspose.font.IFont-double-com.aspose.font.RenderingUtils.LineSpacingType-int-int-char-} +``` +public abstract InputStream encode(String text, IFont font, double fontSize, RenderingUtils.LineSpacingType lineSpacingType, int lineSpacingValue, int maxWidth, char inputSeparator) +``` + + +Encodes text in Morse code and draws result in PNG-format. Heuristic analysis is used to calculate the alphabet of the input text. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| text | java.lang.String | Text to encode by Morse code. | +| font | [IFont](../../com.aspose.font/ifont) | Font to take glyphs related to symbols dot and dash 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. | +| inputSeparator | char | Symbol used to separate words in input text. | + +**Returns:** +java.io.InputStream - Text, encoded by Morse code, in PNG-format as stream of bytes. +### encode(String text, IFont font, double fontSize, RenderingUtils.LineSpacingType lineSpacingType, int lineSpacingValue, int maxWidth, char inputSeparator, char outputSeparator) {#encode-java.lang.String-com.aspose.font.IFont-double-com.aspose.font.RenderingUtils.LineSpacingType-int-int-char-char-} +``` +public abstract InputStream encode(String text, IFont font, double fontSize, RenderingUtils.LineSpacingType lineSpacingType, int lineSpacingValue, int maxWidth, char inputSeparator, char outputSeparator) +``` + + +Encodes text in Morse code and draws result in PNG-format. Heuristic analysis is used to calculate the alphabet of the input text. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| text | java.lang.String | Text to encode by Morse code. | +| font | [IFont](../../com.aspose.font/ifont) | Font to take glyphs related to symbols dot and dash 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. | +| inputSeparator | char | Symbol used to separate words in input text. | +| outputSeparator | char | Symbol used to separate words in encoded text. | + +**Returns:** +java.io.InputStream - Text, encoded by Morse code, in PNG-format as stream of bytes. +### encode(String text, IFont font, double fontSize, RenderingUtils.LineSpacingType lineSpacingType, int lineSpacingValue, int maxWidth, MorseAlphabets alphabet) {#encode-java.lang.String-com.aspose.font.IFont-double-com.aspose.font.RenderingUtils.LineSpacingType-int-int-com.aspose.font.textutils.MorseAlphabets-} +``` +public abstract InputStream encode(String text, IFont font, double fontSize, RenderingUtils.LineSpacingType lineSpacingType, int lineSpacingValue, int maxWidth, MorseAlphabets alphabet) +``` + + +Encodes text by Morse code and draws result in PNG-format. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| text | java.lang.String | Text to encode by Morse code. | +| font | [IFont](../../com.aspose.font/ifont) | Font to take glyphs related to symbols dot and dash 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 - Text, encoded by Morse code, in PNG-format as stream of bytes. +### encode(String text, IFont font, double fontSize, RenderingUtils.LineSpacingType lineSpacingType, int lineSpacingValue, int maxWidth, MorseAlphabets alphabet, char inputSeparator) {#encode-java.lang.String-com.aspose.font.IFont-double-com.aspose.font.RenderingUtils.LineSpacingType-int-int-com.aspose.font.textutils.MorseAlphabets-char-} +``` +public abstract InputStream encode(String text, IFont font, double fontSize, RenderingUtils.LineSpacingType lineSpacingType, int lineSpacingValue, int maxWidth, MorseAlphabets alphabet, char inputSeparator) +``` + + +Encodes text by Morse code and draws result in PNG-format. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| text | java.lang.String | Text to encode by Morse code. | +| font | [IFont](../../com.aspose.font/ifont) | Font to take glyphs related to symbols dot and dash 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 input text. | + +**Returns:** +java.io.InputStream - Text, encoded by Morse code, in PNG-format as stream of bytes. +### encode(String text, IFont font, double fontSize, RenderingUtils.LineSpacingType lineSpacingType, int lineSpacingValue, int maxWidth, MorseAlphabets alphabet, char inputSeparator, char outputSeparator) {#encode-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 encode(String text, IFont font, double fontSize, RenderingUtils.LineSpacingType lineSpacingType, int lineSpacingValue, int maxWidth, MorseAlphabets alphabet, char inputSeparator, char outputSeparator) +``` + + +Encodes text by Morse code and draws result in PNG-format. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| text | java.lang.String | Text to encode by Morse code. | +| font | [IFont](../../com.aspose.font/ifont) | Font to take glyphs related to symbols dot and dash 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 input text. | +| outputSeparator | char | Symbol used to separate words in encoded text. | + +**Returns:** +java.io.InputStream - Text, encoded by Morse code, in PNG-format as stream of bytes. diff --git a/french/java/com.aspose.font.textutils/imorsedecoder/_index.md b/french/java/com.aspose.font.textutils/imorsedecoder/_index.md new file mode 100644 index 0000000000..657439884f --- /dev/null +++ b/french/java/com.aspose.font.textutils/imorsedecoder/_index.md @@ -0,0 +1,86 @@ +--- +title: "IMorseDecoder" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Déclare une fonctionnalité pour déchiffrer le code Morse." +type: docs +weight: 13 +url: /fr/java/com.aspose.font.textutils/imorsedecoder/ +---``` +public interface IMorseDecoder +``` + +Declares functionality to decipher Morse code. +## Methods + +| Method | Description | +| --- | --- | +| [decode(String morseText)](#decode-java.lang.String-) | Deciphers Morse code. | +| [decode(String morseText, MorseAlphabets alphabet)](#decode-java.lang.String-com.aspose.font.textutils.MorseAlphabets-) | Deciphers Morse code. | +| [decode(String morseText, MorseAlphabets alphabet, char inputSeparator)](#decode-java.lang.String-com.aspose.font.textutils.MorseAlphabets-char-) | Deciphers Morse code. | +| [decode(String morseText, MorseAlphabets alphabet, char inputSeparator, char outputSeparator)](#decode-java.lang.String-com.aspose.font.textutils.MorseAlphabets-char-char-) | Deciphers Morse code. | +### decode(String morseText) {#decode-java.lang.String-} +``` +public abstract String decode(String morseText) +``` + + +Deciphers Morse code. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| morseText | java.lang.String | Text encoded by Morse code, i.e. text like "... --- ..."(SOS). | + +**Returns:** +java.lang.String - Decoded text. +### decode(String morseText, MorseAlphabets alphabet) {#decode-java.lang.String-com.aspose.font.textutils.MorseAlphabets-} +``` +public abstract String decode(String morseText, MorseAlphabets alphabet) +``` + + +Deciphers Morse code. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| morseText | java.lang.String | Text encoded by Morse code, i.e. text like "... --- ..."(SOS). | +| alphabet | [MorseAlphabets](../../com.aspose.font.textutils/morsealphabets) | Alphabet of Morse code. | + +**Returns:** +java.lang.String - Decoded text. +### decode(String morseText, MorseAlphabets alphabet, char inputSeparator) {#decode-java.lang.String-com.aspose.font.textutils.MorseAlphabets-char-} +``` +public abstract String decode(String morseText, MorseAlphabets alphabet, char inputSeparator) +``` + + +Deciphers Morse code. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| morseText | java.lang.String | Text encoded by Morse code, i.e. text like "... --- ..."(SOS). | +| alphabet | [MorseAlphabets](../../com.aspose.font.textutils/morsealphabets) | Alphabet of Morse code. | +| inputSeparator | char | Symbol used to separate words in encoded text. | + +**Returns:** +java.lang.String - Decoded text. +### decode(String morseText, MorseAlphabets alphabet, char inputSeparator, char outputSeparator) {#decode-java.lang.String-com.aspose.font.textutils.MorseAlphabets-char-char-} +``` +public abstract String decode(String morseText, MorseAlphabets alphabet, char inputSeparator, char outputSeparator) +``` + + +Deciphers Morse code. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| morseText | java.lang.String | Text encoded by Morse code, i.e. text like "... --- ..."(SOS). | +| 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.lang.String - Decoded text. diff --git a/french/java/com.aspose.font.textutils/imorseencoder/_index.md b/french/java/com.aspose.font.textutils/imorseencoder/_index.md new file mode 100644 index 0000000000..572df08bce --- /dev/null +++ b/french/java/com.aspose.font.textutils/imorseencoder/_index.md @@ -0,0 +1,121 @@ +--- +title: "IMorseEncoder" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Déclare une fonctionnalité pour encoder du texte en code Morse." +type: docs +weight: 14 +url: /fr/java/com.aspose.font.textutils/imorseencoder/ +---``` +public interface IMorseEncoder +``` + +Declares functionality to encode text by Morse code. +## Methods + +| Method | Description | +| --- | --- | +| [encode(String text)](#encode-java.lang.String-) | Encodes text by Morse code. | +| [encode(String text, char inputSeparator)](#encode-java.lang.String-char-) | Encodes text by Morse code. | +| [encode(String text, char inputSeparator, char outputSeparator)](#encode-java.lang.String-char-char-) | Encodes text by Morse code. | +| [encode(String text, MorseAlphabets alphabet)](#encode-java.lang.String-com.aspose.font.textutils.MorseAlphabets-) | Encodes text by Morse code. | +| [encode(String text, MorseAlphabets alphabet, char inputSeparator)](#encode-java.lang.String-com.aspose.font.textutils.MorseAlphabets-char-) | Encodes text by Morse code. | +| [encode(String text, MorseAlphabets alphabet, char inputSeparator, char outputSeparator)](#encode-java.lang.String-com.aspose.font.textutils.MorseAlphabets-char-char-) | Encodes text by Morse code. | +### encode(String text) {#encode-java.lang.String-} +``` +public abstract String encode(String text) +``` + + +Encodes text by Morse code. Heuristic analysis is used to calculate the alphabet of the input text. The alphabet is selected by the first word. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| text | java.lang.String | Text to encode by Morse code. | + +**Returns:** +java.lang.String - Encoded text, i.e. "... --- ..." for the input text "SOS". +### encode(String text, char inputSeparator) {#encode-java.lang.String-char-} +``` +public abstract String encode(String text, char inputSeparator) +``` + + +Encodes text by Morse code. Heuristic analysis is used to calculate the alphabet of the input text. The alphabet is selected by the first word. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| text | java.lang.String | Text to encode by Morse code. | +| inputSeparator | char | Symbol used to separate words in input text. | + +**Returns:** +java.lang.String - Encoded text, i.e. "... --- ..." for the input text "SOS". +### encode(String text, char inputSeparator, char outputSeparator) {#encode-java.lang.String-char-char-} +``` +public abstract String encode(String text, char inputSeparator, char outputSeparator) +``` + + +Encodes text by Morse code. Heuristic analysis is used to calculate the alphabet of the input text. The alphabet is selected by the first word. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| text | java.lang.String | Text to encode by Morse code. | +| inputSeparator | char | Symbol used to separate words in input text. | +| outputSeparator | char | Symbol used to separate words in encoded text. | + +**Returns:** +java.lang.String - Encoded text, i.e. "... --- ..." for the input text "SOS". +### encode(String text, MorseAlphabets alphabet) {#encode-java.lang.String-com.aspose.font.textutils.MorseAlphabets-} +``` +public abstract String encode(String text, MorseAlphabets alphabet) +``` + + +Encodes text by Morse code. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| text | java.lang.String | Text to encode by Morse code. | +| alphabet | [MorseAlphabets](../../com.aspose.font.textutils/morsealphabets) | Alphabet of Morse code. | + +**Returns:** +java.lang.String - Encoded text, ie "... --- ..." for the input text "SOS". +### encode(String text, MorseAlphabets alphabet, char inputSeparator) {#encode-java.lang.String-com.aspose.font.textutils.MorseAlphabets-char-} +``` +public abstract String encode(String text, MorseAlphabets alphabet, char inputSeparator) +``` + + +Encodes text by Morse code. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| text | java.lang.String | Text to encode by Morse code. | +| alphabet | [MorseAlphabets](../../com.aspose.font.textutils/morsealphabets) | Alphabet of Morse code. | +| inputSeparator | char | Symbol used to separate words in input text. | + +**Returns:** +java.lang.String - Encoded text, ie "... --- ..." for the input text "SOS". +### encode(String text, MorseAlphabets alphabet, char inputSeparator, char outputSeparator) {#encode-java.lang.String-com.aspose.font.textutils.MorseAlphabets-char-char-} +``` +public abstract String encode(String text, MorseAlphabets alphabet, char inputSeparator, char outputSeparator) +``` + + +Encodes text by Morse code. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| text | java.lang.String | Text to encode by Morse code. | +| alphabet | [MorseAlphabets](../../com.aspose.font.textutils/morsealphabets) | Alphabet of Morse code. | +| inputSeparator | char | Symbol used to separate words in input text. | +| outputSeparator | char | Symbol used to separate words in encoded text. | + +**Returns:** +java.lang.String - Encoded text, ie "... --- ..." for the input text "SOS". diff --git a/french/java/com.aspose.font.textutils/morsealphabets/_index.md b/french/java/com.aspose.font.textutils/morsealphabets/_index.md new file mode 100644 index 0000000000..5810d14e25 --- /dev/null +++ b/french/java/com.aspose.font.textutils/morsealphabets/_index.md @@ -0,0 +1,304 @@ +--- +title: "MorseAlphabets" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente l'ensemble des alphabets pris en charge pour le code Morse" +type: docs +weight: 15 +url: /fr/java/com.aspose.font.textutils/morsealphabets/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum MorseAlphabets extends Enum +``` + +Représente l'ensemble des alphabets pris en charge pour le code Morse +## Champs + +| Champ | Description | +| --- | --- | +| [Arabic](#Arabic) | L'alphabet de code arabe. | +| [Cyrillic](#Cyrillic) | L'alphabet de code cyrillique. | +| [Greek](#Greek) | L'alphabet de code Morse grec. | +| [Hebrew](#Hebrew) | L'alphabet de code hébreu. | +| [Kurdish](#Kurdish) | L'alphabet de code kurde. | +| [Latin](#Latin) | L'alphabet de code Morse latin. | +| [Persian](#Persian) | L'alphabet de code persan (Farsi). | +| [Portuguese](#Portuguese) | L'alphabet de code portugais. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### Arabic {#Arabic} +``` +public static final MorseAlphabets Arabic +``` + + +L'alphabet de code arabe. + +### Cyrillic {#Cyrillic} +``` +public static final MorseAlphabets Cyrillic +``` + + +L'alphabet de code cyrillique. + +### Greek {#Greek} +``` +public static final MorseAlphabets Greek +``` + + +L'alphabet de code Morse grec. + +### Hebrew {#Hebrew} +``` +public static final MorseAlphabets Hebrew +``` + + +L'alphabet de code hébreu. + +### Kurdish {#Kurdish} +``` +public static final MorseAlphabets Kurdish +``` + + +L'alphabet de code kurde. + +### Latin {#Latin} +``` +public static final MorseAlphabets Latin +``` + + +L'alphabet de code Morse latin. + +### Persian {#Persian} +``` +public static final MorseAlphabets Persian +``` + + +L'alphabet de code persan (Farsi). + +### Portuguese {#Portuguese} +``` +public static final MorseAlphabets Portuguese +``` + + +L'alphabet de code portugais. + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static MorseAlphabets valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[MorseAlphabets](../../com.aspose.font.textutils/morsealphabets) +### values() {#values--} +``` +public static MorseAlphabets[] values() +``` + + + + +**Returns:** +com.aspose.font.textutils.MorseAlphabets[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font.textutils/textutilsfactory/_index.md b/french/java/com.aspose.font.textutils/textutilsfactory/_index.md new file mode 100644 index 0000000000..a33eb464d3 --- /dev/null +++ b/french/java/com.aspose.font.textutils/textutilsfactory/_index.md @@ -0,0 +1,215 @@ +--- +title: "TextUtilsFactory" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Fournit des fonctionnalités pour récupérer les créateurs d'objets de service texte" +type: docs +weight: 10 +url: /fr/java/com.aspose.font.textutils/textutilsfactory/ +--- +**Inheritance:** +java.lang.Object +``` +public class TextUtilsFactory +``` + +Fournit des fonctionnalités pour récupérer les créateurs d'objets de service texte +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [TextUtilsFactory()](#TextUtilsFactory--) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getFontCharactersMerger(Font primaryFont, Font secondaryFont, FontType outType)](#getFontCharactersMerger-com.aspose.font.Font-com.aspose.font.Font-com.aspose.font.FontType-) | | +| [getFontMorseDecoder()](#getFontMorseDecoder--) | Obtient l'instance IFontMorseDecoder . | +| [getFontMorseEncoder()](#getFontMorseEncoder--) | Obtient l'instance IFontMorseEncoder . | +| [getMorseDecoder()](#getMorseDecoder--) | Obtient l'instance IMorseDecoder . | +| [getMorseEncoder()](#getMorseEncoder--) | Obtient l'instance IMorseEncoder . | +| [hashCode()](#hashCode--) | | +| [isCffSimpleFontMerging(Font primaryFont, Font secondaryFont, FontType outType)](#isCffSimpleFontMerging-com.aspose.font.Font-com.aspose.font.Font-com.aspose.font.FontType-) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### TextUtilsFactory() {#TextUtilsFactory--} +``` +public TextUtilsFactory() +``` + + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getFontCharactersMerger(Font primaryFont, Font secondaryFont, FontType outType) {#getFontCharactersMerger-com.aspose.font.Font-com.aspose.font.Font-com.aspose.font.FontType-} +``` +public FontCharactersMerger getFontCharactersMerger(Font primaryFont, Font secondaryFont, FontType outType) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| primaryFont | [Font](../../com.aspose.font/font) | | +| secondaryFont | [Font](../../com.aspose.font/font) | | +| outType | [FontType](../../com.aspose.font/fonttype) | | + +**Returns:** +[FontCharactersMerger](../../com.aspose.font/fontcharactersmerger) +### getFontMorseDecoder() {#getFontMorseDecoder--} +``` +public IFontMorseDecoder getFontMorseDecoder() +``` + + +Obtient l'instance IFontMorseDecoder . + +**Returns:** +[IFontMorseDecoder](../../com.aspose.font.textutils/ifontmorsedecoder) - The IFontMorseDecoder instance. +### getFontMorseEncoder() {#getFontMorseEncoder--} +``` +public IFontMorseEncoder getFontMorseEncoder() +``` + + +Obtient l'instance IFontMorseEncoder . + +**Returns:** +[IFontMorseEncoder](../../com.aspose.font.textutils/ifontmorseencoder) - The IFontMorseEncoder instance. +### getMorseDecoder() {#getMorseDecoder--} +``` +public IMorseDecoder getMorseDecoder() +``` + + +Obtient l'instance IMorseDecoder . + +**Returns:** +[IMorseDecoder](../../com.aspose.font.textutils/imorsedecoder) - The IMorseDecoder instance. +### getMorseEncoder() {#getMorseEncoder--} +``` +public IMorseEncoder getMorseEncoder() +``` + + +Obtient l'instance IMorseEncoder . + +**Returns:** +[IMorseEncoder](../../com.aspose.font.textutils/imorseencoder) - The IMorseEncoder instance. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### isCffSimpleFontMerging(Font primaryFont, Font secondaryFont, FontType outType) {#isCffSimpleFontMerging-com.aspose.font.Font-com.aspose.font.Font-com.aspose.font.FontType-} +``` +public static boolean isCffSimpleFontMerging(Font primaryFont, Font secondaryFont, FontType outType) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| primaryFont | [Font](../../com.aspose.font/font) | | +| secondaryFont | [Font](../../com.aspose.font/font) | | +| outType | [FontType](../../com.aspose.font/fonttype) | | + +**Returns:** +boolean +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/_index.md b/french/java/com.aspose.font/_index.md new file mode 100644 index 0000000000..76c4e9803b --- /dev/null +++ b/french/java/com.aspose.font/_index.md @@ -0,0 +1,165 @@ +--- +title: "com.aspose.font" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Le com.aspose.font est un package racine pour toutes les classes qui traitent des polices." +type: docs +weight: 10 +url: /fr/java/com.aspose.font/ +--- + +Le **com.aspose.font** est un package racine pour toutes les classes qui traitent des polices. + + +## Classes + +| Classe | Description | +| --- | --- | +| [AxisRecord](../com.aspose.font/axisrecord) | Représente la structure d'enregistrement d'axe. | +| [AxisValue](../com.aspose.font/axisvalue) | Représente l'enregistrement AxisValue. | +| [AxisValueTableBase](../com.aspose.font/axisvaluetablebase) | Classe de base pour la structure de la table de valeurs d'axe. | +| [AxisValueTableFormat1](../com.aspose.font/axisvaluetableformat1) | Représente le format 1 de la table de valeurs d'axe | +| [AxisValueTableFormat2](../com.aspose.font/axisvaluetableformat2) | Représente le format 2 de la table de valeurs d'axe | +| [AxisValueTableFormat3](../com.aspose.font/axisvaluetableformat3) | Représente le format 3 de la table de valeurs d'axe | +| [AxisValueTableFormat4](../com.aspose.font/axisvaluetableformat4) | Représente le format 4 de la table de valeurs d'axe | +| [ByteContentStreamSource](../com.aspose.font/bytecontentstreamsource) | Représente une source de flux basée sur le flux \_content. | +| [CffEncoding](../com.aspose.font/cffencoding) | Représente le codage \_font CFF. | +| [CffFont](../com.aspose.font/cfffont) | Représente le format Compact Font (CFF). | +| [CffFontException](../com.aspose.font/cfffontexception) | Représente une exception courante liée au traitement des polices au format CFF. | +| [CffFontMetrics](../com.aspose.font/cfffontmetrics) | Implémentation des métriques de police CFF | +| [CffFontsSettings](../com.aspose.font/cfffontssettings) | Fournit des paramètres communs aux polices CFF. | +| [CffParsingException](../com.aspose.font/cffparsingexception) | Représente une exception d'analyse pour les polices au format cff. | +| [ClosePath](../com.aspose.font/closepath) | Représente l'opération ClosePath. | +| [CompositeGlyph](../com.aspose.font/compositeglyph) | Représente un glyphe composite de police. | +| [CompositeGlyphComponent](../com.aspose.font/compositeglyphcomponent) | Représente le composant de glyphe composite (glyphe avec matrice de placement). | +| [CompositeGlyphComponentList](../com.aspose.font/compositeglyphcomponentlist) | Représente la liste des composants de glyphes composites. | +| [CompressionUtils](../com.aspose.font/compressionutils) | Fournit des méthodes utilitaires pour la compression et la décompression. | +| [CurveTo](../com.aspose.font/curveto) | Représente l'opération CurveTo. | +| [EncodingException](../com.aspose.font/encodingexception) | Représente une exception d'encodage. | +| [FileSystemStreamSource](../com.aspose.font/filesystemstreamsource) | Représente une source de flux basée sur le système de fichiers. | +| [Font](../com.aspose.font/font) | Représente la classe de base Font. | +| [FontAgrumentException](../com.aspose.font/fontagrumentexception) | Représente une exception d'argument Font. | +| [FontBBox](../com.aspose.font/fontbbox) | représente la boîte englobante de la police. | +| [FontCharactersMerger](../com.aspose.font/fontcharactersmerger) | Déclare la fonctionnalité de fusionner des polices de différents types. | +| [FontConversionException](../com.aspose.font/fontconversionexception) | Représente une exception de conversion Font. | +| [FontCreationException](../com.aspose.font/fontcreationexception) | Représente une exception de création Font. | +| [FontDefinition](../com.aspose.font/fontdefinition) | Représente la définition du jeu de fichiers Font. | +| [FontEnvironment](../com.aspose.font/fontenvironment) | Fournit des informations sur l'environnement et la plateforme actuels. | +| [FontException](../com.aspose.font/fontexception) | Représente une exception commune liée au traitement des polices Font. | +| [FontFactory](../com.aspose.font/fontfactory) | Contient la fonctionnalité d'ouverture de polices de différents types et d'autres méthodes pour créer divers objets. | +| [FontFileDefinition](../com.aspose.font/fontfiledefinition) | Représente la définition du fichier Font. | +| [FontMergeException](../com.aspose.font/fontmergeexception) | Représente une exception de fusion Font. | +| [FontMetrics](../com.aspose.font/fontmetrics) | Représente les métriques de la police. | +| [FontNotSupportedOperationException](../com.aspose.font/fontnotsupportedoperationexception) | Représente une exception d'opération non prise en charge. | +| [FontSpecificEncodings](../com.aspose.font/fontspecificencodings) | Représente des encodages spécifiques pour les polices conscientes du consommateur. | +| [FontStyle](../com.aspose.font/fontstyle) | Énumération des styles de police | +| [GaspRange](../com.aspose.font/gasprange) | Le tableau d'enregistrements GaspRange fournit des comportements recommandés pour diverses tailles ppem | +| [Glyph](../com.aspose.font/glyph) | Représente un glyphe de police. | +| [GlyphId](../com.aspose.font/glyphid) | Représente les identifiants de glyphes, disponibles dans la police. | +| [GlyphIdList](../com.aspose.font/glyphidlist) | Représente la liste des identifiants de glyphes. | +| [GlyphOutlineRenderer](../com.aspose.font/glyphoutlinerenderer) | Représente le rendu du contour du glyphe. | +| [GlyphRendererBase](../com.aspose.font/glyphrendererbase) | Représente la classe de base pour les rendus de glyphes. | +| [GlyphStringId](../com.aspose.font/glyphstringid) | Représente l'identifiant de glyphe de chaîne. | +| [GlyphUInt32Id](../com.aspose.font/glyphuint32id) | Représente l'identifiant de glyphe entier. | +| [HelpersFactory](../com.aspose.font/helpersfactory) | Crée des objets liés à l'espace de noms TtfHelpers | +| [IncorrectFontDataException](../com.aspose.font/incorrectfontdataexception) | Représente les exceptions pour les cas où certaines valeurs de l'objet Font sont invalides. | +| [License](../com.aspose.font/license) | Fournit des méthodes pour licencier le composant. | +| [LicenseFlags](../com.aspose.font/licenseflags) | Représente un wrapper d'aide pour les indicateurs d'incorporation de la table 'OS/2' (champ fsType). | +| [LicenseRestrictionException](../com.aspose.font/licenserestrictionexception) | Représente l'exception qui peut être levée lors d'une tentative d'exécution d'une fonctionnalité restreinte en mode d'évaluation. | +| [LineTo](../com.aspose.font/lineto) | Représente l'opération LineTo. | +| [MSLanguageId](../com.aspose.font/mslanguageid) | Énumération des identifiants de langue de la plateforme Microsoft. | +| [MacLanguageId](../com.aspose.font/maclanguageid) | Énumération des identifiants de langue de la plateforme Macintosh. | +| [Metered](../com.aspose.font/metered) | Fournit des méthodes pour définir la clé mesurée. | +| [MoveTo](../com.aspose.font/moveto) | Représente l'opération MoveTo. | +| [MultiLanguageString](../com.aspose.font/multilanguagestring) | Représente une chaîne multilingue. | +| [NameId](../com.aspose.font/nameid) | Représente l'énumération NameId. | +| [NameIndexDataProvider](../com.aspose.font/nameindexdataprovider) | Fournit des paramètres communs aux polices CFF. | +| [NameRecord](../com.aspose.font/namerecord) | Représente la structure NameRecord de la table 'name' | +| [NameToCodeMap](../com.aspose.font/nametocodemap) | Représente la correspondance nom‑code. | +| [PathSegmentCollection](../com.aspose.font/pathsegmentcollection) | Représente une collection de segments de chemin. | +| [RenderingUtils](../com.aspose.font/renderingutils) | Fournit des méthodes utilitaires pour le rendu. | +| [SegmentPath](../com.aspose.font/segmentpath) | Représente le chemin de rendu. | +| [StreamSource](../com.aspose.font/streamsource) | Définit une méthode pour obtenir un flux de fichier lorsqu'il est nécessaire. | +| [StringIndexDataProvider](../com.aspose.font/stringindexdataprovider) | Déclare la fonctionnalité d'accès à la structure CFF String INDEX. | +| [SvgConversionException](../com.aspose.font/svgconversionexception) | Représente l'exception de conversion de police pour le format SVG. | +| [TopDictDataProvider](../com.aspose.font/topdictdataprovider) | Déclare la fonctionnalité de lecture/mise à jour de la structure CFF Top DICT. | +| [TransformationMatrix](../com.aspose.font/transformationmatrix) | Represents 3x3 matrix | A B 0 | | C D 0 | | TX TY 1 | . | +| [TtcFontFileDefinition](../com.aspose.font/ttcfontfiledefinition) | Représente la définition de fichier pour la police TTC. | +| [TtcFontSource](../com.aspose.font/ttcfontsource) | Représente la source de la police TTC. | +| [TtfCMapFormat0Table](../com.aspose.font/ttfcmapformat0table) | Représente la sous-table Format0 CMap du fichier de police TTF. | +| [TtfCMapFormat10Table](../com.aspose.font/ttfcmapformat10table) | Représente la sous-table Format10 CMap du fichier de police TTF. | +| [TtfCMapFormat12Table](../com.aspose.font/ttfcmapformat12table) | Représente la sous-table Format8 CMap du fichier de police TTF. | +| [TtfCMapFormat2Table](../com.aspose.font/ttfcmapformat2table) | Représente la sous-table Format2 CMap du fichier de police TTF. | +| [TtfCMapFormat4Table](../com.aspose.font/ttfcmapformat4table) | Représente la sous-table Format4 CMap du fichier de police TTF. | +| [TtfCMapFormat6Table](../com.aspose.font/ttfcmapformat6table) | Représente la sous-table Format6 CMap du fichier de police TTF. | +| [TtfCMapFormat8Table](../com.aspose.font/ttfcmapformat8table) | Représente la sous-table Format8 CMap du fichier de police TTF. | +| [TtfCMapFormatBaseTable](../com.aspose.font/ttfcmapformatbasetable) | Représente la classe de base de la sous-table CMap. | +| [TtfCMapTable](../com.aspose.font/ttfcmaptable) | Représente la table "cmap" du fichier de police TTF. | +| [TtfCMapTable.TtfCMapSubtableDescription](../com.aspose.font/ttfcmaptable.ttfcmapsubtabledescription) | Fournit des informations brèves sur la sous-table CMap. | +| [TtfCffTable](../com.aspose.font/ttfcfftable) | Représente la table "cff" du fichier de police TTF. | +| [TtfCvtTable](../com.aspose.font/ttfcvttable) | Représente la table de valeurs de contrôle (CVT) du fichier de police TTF. | +| [TtfEncoding](../com.aspose.font/ttfencoding) | Représente le codage de la police TTF. | +| [TtfEncodingParameters](../com.aspose.font/ttfencodingparameters) | Représente les paramètres de codage TTF. | +| [TtfFont](../com.aspose.font/ttffont) | Représente la police TrueType (TTF). | +| [TtfFontMetrics](../com.aspose.font/ttffontmetrics) | Représente les métriques de la police TTF. | +| [TtfFpgmTable](../com.aspose.font/ttffpgmtable) | Représente la table "fpgm" du fichier de police TTF. | +| [TtfGaspTable](../com.aspose.font/ttfgasptable) | Représente la table "gasp" du fichier de police TTF. | +| [TtfGlyfTable](../com.aspose.font/ttfglyftable) | Représente la table "glyf" du fichier de police TTF. | +| [TtfHeadTable](../com.aspose.font/ttfheadtable) | Représente la table "head" du fichier de police TTF. | +| [TtfHheaTable](../com.aspose.font/ttfhheatable) | Représente la table "hhea" du fichier de police TTF. | +| [TtfHmtxTable](../com.aspose.font/ttfhmtxtable) | Représente la table "hmtx" du fichier de police TTF. | +| [TtfHmtxTable.LongHorMetric](../com.aspose.font/ttfhmtxtable.longhormetric) | Représente l'enregistrement des métriques. | +| [TtfHmtxTable.MetricList](../com.aspose.font/ttfhmtxtable.metriclist) | Représente la liste des métriques | +| [TtfLocaTable](../com.aspose.font/ttflocatable) | Représente la table "loca" du fichier de police TTF. | +| [TtfLocaTable.OffsetsList](../com.aspose.font/ttflocatable.offsetslist) | Représente la liste des décalages de glyphes. | +| [TtfLtshTable](../com.aspose.font/ttfltshtable) | Représente la table Linear Threshold du fichier de police TTF. | +| [TtfMaxpTable](../com.aspose.font/ttfmaxptable) | Représente la table "maxp" du fichier de police TTF | +| [TtfNameTable](../com.aspose.font/ttfnametable) | Représente la table "name" du fichier de police TTF. | +| [TtfOs2Table](../com.aspose.font/ttfos2table) | Représente la table "OS/2" du fichier de police TTF. | +| [TtfPostTable](../com.aspose.font/ttfposttable) | Représente la table "post" du fichier de police TTF | +| [TtfPrepTable](../com.aspose.font/ttfpreptable) | Représente la table "prep" du fichier de police TTF. | +| [TtfStatTable](../com.aspose.font/ttfstattable) | | +| [TtfTableBase](../com.aspose.font/ttftablebase) | Représente la définition de la table TTF. | +| [TtfTableRepository](../com.aspose.font/ttftablerepository) | dépôt des tables TTF | +| [TtfVheaTable](../com.aspose.font/ttfvheatable) | Représente la table "hhea" du fichier de police TTF. | +| [TtfVmtxTable](../com.aspose.font/ttfvmtxtable) | Représente la table "vmtx" du fichier de police TTF. | +| [TtfVmtxTable.LongVerMetric](../com.aspose.font/ttfvmtxtable.longvermetric) | Représente l'enregistrement des métriques verticales. | +| [Type1Encoding](../com.aspose.font/type1encoding) | Représente l'encodage de police Type1. | +| [Type1Font](../com.aspose.font/type1font) | Représente la police Type1. | +| [Type1FontMetrics](../com.aspose.font/type1fontmetrics) | Représente les métriques de police Type1. | +| [Type1MetricFont](../com.aspose.font/type1metricfont) | Implémentation de police métrique Type1. | +| [Version16Dot16](../com.aspose.font/version16dot16) | Représente le type de données Version16Dot16 | +| [WoffFormatException](../com.aspose.font/woffformatexception) | Représente l'exception liée au traitement des polices WOFF. | + +## Interfaces + +| Interface | Description | +| --- | --- | +| [ICffIndexDataProvider](../com.aspose.font/icffindexdataprovider) | Interface de base pour accéder aux structures INDEX des polices CFF. | +| [IEncodingParameters](../com.aspose.font/iencodingparameters) | Interface commune pour prendre en charge les paramètres d'encodage. | +| [IFont](../com.aspose.font/ifont) | Déclare la fonctionnalité commune pour tous les formats de police. | +| [IFontCharactersMerger](../com.aspose.font/ifontcharactersmerger) | Déclare la fonctionnalité des assistants pour fusionner les polices TrueType. | +| [IFontEncoding](../com.aspose.font/ifontencoding) | Définit une interface pour l'encodage des polices. | +| [IFontMetrics](../com.aspose.font/ifontmetrics) | Définit une interface pour les outils de métriques de police. | +| [IFontSaver](../com.aspose.font/ifontsaver) | Définit une interface pour la fonctionnalité d'enregistrement des polices. | +| [IGlyphAccessor](../com.aspose.font/iglyphaccessor) | Définit la fonctionnalité permettant de récupérer les identifiants de glyphes spécifiés et les glyphes. | +| [IGlyphOutlinePainter](../com.aspose.font/iglyphoutlinepainter) | Définit une méthode de contour pour dessiner les glyphes. | +| [IGlyphPainter](../com.aspose.font/iglyphpainter) | Définit une façon de dessiner les glyphes. | +| [IGlyphRenderer](../com.aspose.font/iglyphrenderer) | Interface utilisée pour rendre les glyphes. | +| [IPathSegment](../com.aspose.font/ipathsegment) | Représente l'interface de tout segment de chemin. | +| [ISupportsNameAddressing](../com.aspose.font/isupportsnameaddressing) | Définit les membres spécifiques aux encodages qui prennent en charge l'adressage par nom de glyphe | + +## Énumérations + +| Énum | Description | +| --- | --- | +| [CffIndexProviderType](../com.aspose.font/cffindexprovidertype) | Spécifie les structures INDEX prises en charge par la famille d'interfaces du fournisseur d'index. | +| [CffUpdateStringIndexStrategy](../com.aspose.font/cffupdatestringindexstrategy) | Spécifie comment ajouter des chaînes au stockage CFF String INDEX. | +| [FontSavingFormats](../com.aspose.font/fontsavingformats) | Spécifie le type de police. | +| [FontType](../com.aspose.font/fonttype) | Spécifie le type de police. | +| [GlyphIdType](../com.aspose.font/glyphidtype) | Spécifie les types d'identifiants de glyphe. | +| [GlyphState](../com.aspose.font/glyphstate) | Spécifie l'état du glyphe. | +| [MSPlatformSpecificId](../com.aspose.font/msplatformspecificid) | Représente l'énumération PlatformSpecificId de la plateforme Microsoft. | +| [MacPlatformSpecificId](../com.aspose.font/macplatformspecificid) | Représente l'énumération PlatformSpecificId de la plateforme Macintosh. | +| [PlatformId](../com.aspose.font/platformid) | Représente l'énumération PlatformId. | +| [RangeGaspBehaviorFlags](../com.aspose.font/rangegaspbehaviorflags) | Drapeaux décrivant le comportement souhaité du rasteriseur. | +| [UnicodePlatformSpecificId](../com.aspose.font/unicodeplatformspecificid) | Représente l'énumération spécifique à la plateforme Unicode. | diff --git a/french/java/com.aspose.font/axisrecord/_index.md b/french/java/com.aspose.font/axisrecord/_index.md new file mode 100644 index 0000000000..6668942a3b --- /dev/null +++ b/french/java/com.aspose.font/axisrecord/_index.md @@ -0,0 +1,177 @@ +--- +title: "AxisRecord" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente la structure d'enregistrement d'axe." +type: docs +weight: 10 +url: /fr/java/com.aspose.font/axisrecord/ +--- +**Inheritance:** +java.lang.Object +``` +public class AxisRecord +``` + +Représente la structure Axis Record. Spec: le enregistrement d'axe fournit des informations sur un seul axe de conception. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [AxisRecord(String tag, int axisNameId, int axisOrdering)](#AxisRecord-java.lang.String-int-int-) | Constructeur | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getAxisNameId()](#getAxisNameId--) | Renvoie le champ axisNameID. | +| [getAxisOrdering()](#getAxisOrdering--) | Renvoie le champ axisOrdering. | +| [getClass()](#getClass--) | | +| [getTag()](#getTag--) | Renvoie un tag identifiant l'axe de variation de conception. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### AxisRecord(String tag, int axisNameId, int axisOrdering) {#AxisRecord-java.lang.String-int-int-} +``` +public AxisRecord(String tag, int axisNameId, int axisOrdering) +``` + + +Constructeur + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| tag | java.lang.String | Tag, spec: un tag identifiant l'axe de variation de conception | +| axisNameId | int | L'ID de nom pour les entrées de la table 'name' qui fournissent une chaîne d'affichage pour cet axe | +| axisOrdering | int | La valeur que les applications peuvent utiliser pour déterminer le tri principal des noms de police, ou pour l'ordre des libellés lors de la composition des noms de famille ou de police. | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getAxisNameId() {#getAxisNameId--} +``` +public int getAxisNameId() +``` + + +Renvoie le champ axisNameID. Spec: le champ axisNameID fournit un ID de nom qui peut être utilisé pour obtenir des chaînes de la table 'name' pouvant être utilisées pour désigner l'axe dans les interfaces utilisateur des applications. + +**Returns:** +int - le champ axisNameID. +### getAxisOrdering() {#getAxisOrdering--} +``` +public int getAxisOrdering() +``` + + +Renvoie le champ axisOrdering. Spec: une valeur que les applications peuvent utiliser pour déterminer le tri principal des noms de police, ou pour l'ordre des libellés lors de la composition des noms de famille ou de police. + +**Returns:** +int - le champ axisOrdering. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getTag() {#getTag--} +``` +public String getTag() +``` + + +Renvoie un tag identifiant l'axe de variation de conception. Spec: chaque enregistrement d'axe possède un tag désignant l'axe. Les valeurs de tag doivent suivre les règles des tags d'axe décrites dans le registre OpenType Design-Variation Axis Tag Registry. + +**Returns:** +java.lang.String - un tag identifiant l'axe de variation de conception. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/axisvalue/_index.md b/french/java/com.aspose.font/axisvalue/_index.md new file mode 100644 index 0000000000..449ce834f0 --- /dev/null +++ b/french/java/com.aspose.font/axisvalue/_index.md @@ -0,0 +1,165 @@ +--- +title: "AxisValue" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente l'enregistrement AxisValue." +type: docs +weight: 11 +url: /fr/java/com.aspose.font/axisvalue/ +--- +**Inheritance:** +java.lang.Object +``` +public class AxisValue +``` + +Représente l'enregistrement AxisValue. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [AxisValue(int axisIndex, float value)](#AxisValue-int-float-) | Constructeur | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getAxisIndex()](#getAxisIndex--) | Obtient le champ axisIndex. | +| [getClass()](#getClass--) | | +| [getValue()](#getValue--) | Obtient une valeur numérique pour cet attribut. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### AxisValue(int axisIndex, float value) {#AxisValue-int-float-} +``` +public AxisValue(int axisIndex, float value) +``` + + +Constructeur + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| axisIndex | int | Indice zéro-base dans le tableau des enregistrements d'axes identifiant l'axe auquel cette valeur s'applique. Doit être inférieur à designAxisCount. | +| valeur | float | La valeur numérique pour cette valeur d'attribut. | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getAxisIndex() {#getAxisIndex--} +``` +public int getAxisIndex() +``` + + +Obtient le champ axisIndex. Spéc.: Indice zéro-base dans le tableau des enregistrements d'axes identifiant l'axe auquel cette valeur s'applique. Doit être inférieur à designAxisCount. + +**Returns:** +int - Le champ axisIndex. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getValue() {#getValue--} +``` +public float getValue() +``` + + +Obtient une valeur numérique pour cet attribut. + +**Returns:** +float - Une valeur numérique pour cet attribut. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/axisvaluetablebase/_index.md b/french/java/com.aspose.font/axisvaluetablebase/_index.md new file mode 100644 index 0000000000..6da3089bd0 --- /dev/null +++ b/french/java/com.aspose.font/axisvaluetablebase/_index.md @@ -0,0 +1,168 @@ +--- +title: "AxisValueTableBase" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Classe de base pour la structure de la table de valeurs d'axe." +type: docs +weight: 12 +url: /fr/java/com.aspose.font/axisvaluetablebase/ +--- +**Inheritance:** +java.lang.Object +``` +public abstract class AxisValueTableBase +``` + +Classe de base pour la structure Axis Value Table. Spec: Les Axis Value Tables fournissent des détails concernant une valeur d'attribut de style spécifique sur un axe de variation de conception donné, ou une combinaison de valeurs d'axes de variation de conception, et la relation de ces valeurs aux libellés utilisés comme éléments dans les noms de sous-familles. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getFlags()](#getFlags--) | Obtient le champ des indicateurs de la table de valeurs d'axe. | +| [getFormat()](#getFormat--) | Obtient l'identifiant du format (numéro de version). | +| [getValueName()](#getValueName--) | Obtient le nom de la table 'name' qui fournit une chaîne d'affichage pour cette valeur d'attribut. | +| [getValueNameId()](#getValueNameId--) | Obtient l'ID de nom pour les entrées de la table 'name' qui fournissent une chaîne d'affichage pour cette valeur d'attribut. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getFlags() {#getFlags--} +``` +public int getFlags() +``` + + +Obtient le champ des indicateurs de la table de valeurs d'axe. + +**Returns:** +int - Le champ des indicateurs de la table de valeurs d'axe. +### getFormat() {#getFormat--} +``` +public int getFormat() +``` + + +Obtient l'identifiant du format (numéro de version). + +**Returns:** +int - L'identifiant de format (numéro de version). +### getValueName() {#getValueName--} +``` +public String getValueName() +``` + + +Obtient le nom de la table 'name' qui fournit une chaîne d'affichage pour cette valeur d'attribut. + +**Returns:** +java.lang.String - Le nom provenant de la table 'name' qui fournit une chaîne d'affichage pour cette valeur d'attribut. +### getValueNameId() {#getValueNameId--} +``` +public int getValueNameId() +``` + + +Obtient l'ID de nom pour les entrées de la table 'name' qui fournissent une chaîne d'affichage pour cette valeur d'attribut. + +**Returns:** +int - L'ID de nom pour les entrées de la table 'name' qui fournissent une chaîne d'affichage pour cette valeur d'attribut. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/axisvaluetableflags/_index.md b/french/java/com.aspose.font/axisvaluetableflags/_index.md new file mode 100644 index 0000000000..ffcf2eb60e --- /dev/null +++ b/french/java/com.aspose.font/axisvaluetableflags/_index.md @@ -0,0 +1,259 @@ +--- +title: "TtfStatTable.AxisValueTableFlags" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Spécifie les indicateurs de la table des valeurs d'axe" +type: docs +weight: 10 +url: /fr/java/com.aspose.font/ttfstattable.axisvaluetableflags/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum TtfStatTable.AxisValueTableFlags extends Enum +``` + +Spécifie les indicateurs de la table des valeurs d'axe +## Champs + +| Champ | Description | +| --- | --- | +| [ElidableAxisValueName](#ElidableAxisValueName) | Si défini, il indique que la valeur d'axe représente la valeur "normale" de l'axe et peut être omise lors de la composition des chaînes de nom. | +| [OlderSiblingFontAttribute](#OlderSiblingFontAttribute) | Si défini, cette table de valeurs d'axe fournit des informations de valeur d'axe applicables aux autres polices de la même famille de polices. | +| [Reserved](#Reserved) | Réservé pour une utilisation future | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### ElidableAxisValueName {#ElidableAxisValueName} +``` +public static final TtfStatTable.AxisValueTableFlags ElidableAxisValueName +``` + + +Si défini, il indique que la valeur d'axe représente la valeur "normale" de l'axe et peut être omise lors de la composition des chaînes de nom. + +### OlderSiblingFontAttribute {#OlderSiblingFontAttribute} +``` +public static final TtfStatTable.AxisValueTableFlags OlderSiblingFontAttribute +``` + + +Si défini, cette table de valeurs d'axe fournit des informations de valeur d'axe applicables aux autres polices de la même famille de polices. Elle est utilisée si les autres polices ont été publiées plus tôt et n'incluaient pas d'informations sur les valeurs de certains axes. Si les versions plus récentes des autres polices incluent elles‑mêmes ces informations et sont présentes, alors cette table est ignorée. + +### Reserved {#Reserved} +``` +public static final TtfStatTable.AxisValueTableFlags Reserved +``` + + +Réservé pour une utilisation future + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static TtfStatTable.AxisValueTableFlags valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[AxisValueTableFlags](../../com.aspose.font/axisvaluetableflags) +### values() {#values--} +``` +public static TtfStatTable.AxisValueTableFlags[] values() +``` + + + + +**Returns:** +com.aspose.font.TtfStatTable.AxisValueTableFlags[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/axisvaluetableformat1/_index.md b/french/java/com.aspose.font/axisvaluetableformat1/_index.md new file mode 100644 index 0000000000..585b92faf4 --- /dev/null +++ b/french/java/com.aspose.font/axisvaluetableformat1/_index.md @@ -0,0 +1,211 @@ +--- +title: "AxisValueTableFormat1" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente le format 1 de la table de valeurs d'axe" +type: docs +weight: 13 +url: /fr/java/com.aspose.font/axisvaluetableformat1/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.font.AxisValueTableBase](../../com.aspose.font/axisvaluetablebase) +``` +public class AxisValueTableFormat1 extends AxisValueTableBase +``` + +Représente le format 1 de la table de valeurs d'axe +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [AxisValueTableFormat1(int flags, int valueNameId, int axisIndex, float value)](#AxisValueTableFormat1-int-int-int-float-) | Constructeur | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getAxisIndex()](#getAxisIndex--) | Obtient l'index Zero-base dans le tableau d'enregistrements d'axes identifiant l'axe de variation de conception auquel la table de valeurs d'axe s'applique. | +| [getClass()](#getClass--) | | +| [getFlags()](#getFlags--) | Obtient le champ des indicateurs de la table de valeurs d'axe. | +| [getFormat()](#getFormat--) | Obtient l'identifiant du format (numéro de version). | +| [getValue()](#getValue--) | La valeur numérique pour cette valeur d'attribut. | +| [getValueName()](#getValueName--) | Obtient le nom de la table 'name' qui fournit une chaîne d'affichage pour cette valeur d'attribut. | +| [getValueNameId()](#getValueNameId--) | Obtient l'ID de nom pour les entrées de la table 'name' qui fournissent une chaîne d'affichage pour cette valeur d'attribut. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### AxisValueTableFormat1(int flags, int valueNameId, int axisIndex, float value) {#AxisValueTableFormat1-int-int-int-float-} +``` +public AxisValueTableFormat1(int flags, int valueNameId, int axisIndex, float value) +``` + + +Constructeur + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| indicateurs | int | Indicateurs | +| valueNameId | int | L'ID de nom pour les entrées de la table 'name' qui fournissent une chaîne d'affichage pour cette valeur d'attribut | +| axisIndex | int | Spéc.: Index Zero-base dans le tableau d'enregistrements d'axes identifiant l'axe de variation de conception auquel la table de valeurs d'axe s'applique. Doit être inférieur à designAxisCount. | +| valeur | float | La valeur numérique pour cette valeur d'attribut. | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getAxisIndex() {#getAxisIndex--} +``` +public int getAxisIndex() +``` + + +Obtient l'index Zero-base dans le tableau d'enregistrements d'axes identifiant l'axe de variation de conception auquel la table de valeurs d'axe s'applique. + +**Returns:** +int - Index à base zéro dans le tableau d'enregistrements d'axe identifiant l'axe de variation de conception auquel la table de valeurs d'axe s'applique. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getFlags() {#getFlags--} +``` +public int getFlags() +``` + + +Obtient le champ des indicateurs de la table de valeurs d'axe. + +**Returns:** +int - Le champ des indicateurs de la table de valeurs d'axe. +### getFormat() {#getFormat--} +``` +public int getFormat() +``` + + +Obtient l'identifiant du format (numéro de version). + +**Returns:** +int - L'identifiant de format (numéro de version). +### getValue() {#getValue--} +``` +public float getValue() +``` + + +La valeur numérique pour cette valeur d'attribut. + +**Returns:** +float - La valeur numérique pour cette valeur d'attribut. +### getValueName() {#getValueName--} +``` +public String getValueName() +``` + + +Obtient le nom de la table 'name' qui fournit une chaîne d'affichage pour cette valeur d'attribut. + +**Returns:** +java.lang.String - Le nom provenant de la table 'name' qui fournit une chaîne d'affichage pour cette valeur d'attribut. +### getValueNameId() {#getValueNameId--} +``` +public int getValueNameId() +``` + + +Obtient l'ID de nom pour les entrées de la table 'name' qui fournissent une chaîne d'affichage pour cette valeur d'attribut. + +**Returns:** +int - L'ID de nom pour les entrées de la table 'name' qui fournissent une chaîne d'affichage pour cette valeur d'attribut. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/axisvaluetableformat2/_index.md b/french/java/com.aspose.font/axisvaluetableformat2/_index.md new file mode 100644 index 0000000000..248a72c9b0 --- /dev/null +++ b/french/java/com.aspose.font/axisvaluetableformat2/_index.md @@ -0,0 +1,235 @@ +--- +title: "AxisValueTableFormat2" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente le format 2 de la table de valeurs d'axe" +type: docs +weight: 14 +url: /fr/java/com.aspose.font/axisvaluetableformat2/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.font.AxisValueTableBase](../../com.aspose.font/axisvaluetablebase) +``` +public class AxisValueTableFormat2 extends AxisValueTableBase +``` + +Représente le format 2 de la table de valeurs d'axe +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [AxisValueTableFormat2(int flags, int valueNameId, int axisIndex, float nominalValue, float rangeMinValue, float rangeMaxValue)](#AxisValueTableFormat2-int-int-int-float-float-float-) | Constructeur | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getAxisIndex()](#getAxisIndex--) | Obtient l'index de base zéro dans le tableau d'enregistrements d'axes identifiant l'axe de variation de conception auquel la table de valeurs d'axe s'applique. | +| [getClass()](#getClass--) | | +| [getFlags()](#getFlags--) | Obtient le champ des indicateurs de la table de valeurs d'axe. | +| [getFormat()](#getFormat--) | Obtient l'identifiant du format (numéro de version). | +| [getNominalValue()](#getNominalValue--) | Une valeur numérique nominale | +| [getRangeMaxValue()](#getRangeMaxValue--) | La valeur maximale pour une plage associée à l'ID de nom spécifié. | +| [getRangeMinValue()](#getRangeMinValue--) | La valeur minimale pour une plage associée à l'ID de nom spécifié. | +| [getValueName()](#getValueName--) | Obtient le nom de la table 'name' qui fournit une chaîne d'affichage pour cette valeur d'attribut. | +| [getValueNameId()](#getValueNameId--) | Obtient l'ID de nom pour les entrées de la table 'name' qui fournissent une chaîne d'affichage pour cette valeur d'attribut. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### AxisValueTableFormat2(int flags, int valueNameId, int axisIndex, float nominalValue, float rangeMinValue, float rangeMaxValue) {#AxisValueTableFormat2-int-int-int-float-float-float-} +``` +public AxisValueTableFormat2(int flags, int valueNameId, int axisIndex, float nominalValue, float rangeMinValue, float rangeMaxValue) +``` + + +Constructeur + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| indicateurs | int | Indicateurs | +| valueNameId | int | L'ID de nom pour les entrées de la table 'name' qui fournissent une chaîne d'affichage pour cette valeur d'attribut | +| axisIndex | int | Spéc.: Index Zero-base dans le tableau d'enregistrements d'axes identifiant l'axe de variation de conception auquel la table de valeurs d'axe s'applique. Doit être inférieur à designAxisCount. | +| nominalValue | float | La valeur numérique nominale pour cette valeur d'attribut. | +| rangeMinValue | float | La valeur minimale pour une plage associée à l'ID de nom spécifié. | +| rangeMaxValue | float | La valeur maximale pour une plage associée à l'ID de nom spécifié. | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getAxisIndex() {#getAxisIndex--} +``` +public int getAxisIndex() +``` + + +Obtient l'index de base zéro dans le tableau d'enregistrements d'axes identifiant l'axe de variation de conception auquel la table de valeurs d'axe s'applique. + +**Returns:** +int - L'index à base zéro dans le tableau d'enregistrements d'axe identifiant l'axe de variation de conception auquel la table de valeurs d'axe s'applique. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getFlags() {#getFlags--} +``` +public int getFlags() +``` + + +Obtient le champ des indicateurs de la table de valeurs d'axe. + +**Returns:** +int - Le champ des indicateurs de la table de valeurs d'axe. +### getFormat() {#getFormat--} +``` +public int getFormat() +``` + + +Obtient l'identifiant du format (numéro de version). + +**Returns:** +int - L'identifiant de format (numéro de version). +### getNominalValue() {#getNominalValue--} +``` +public float getNominalValue() +``` + + +Une valeur numérique nominale + +**Returns:** +float - Une valeur numérique nominale +### getRangeMaxValue() {#getRangeMaxValue--} +``` +public float getRangeMaxValue() +``` + + +La valeur maximale pour une plage associée à l'ID de nom spécifié. + +**Returns:** +float - La valeur maximale pour une plage associée à l'ID de nom spécifié. +### getRangeMinValue() {#getRangeMinValue--} +``` +public float getRangeMinValue() +``` + + +La valeur minimale pour une plage associée à l'ID de nom spécifié. + +**Returns:** +float - La valeur minimale pour une plage associée à l'ID de nom spécifié. +### getValueName() {#getValueName--} +``` +public String getValueName() +``` + + +Obtient le nom de la table 'name' qui fournit une chaîne d'affichage pour cette valeur d'attribut. + +**Returns:** +java.lang.String - Le nom provenant de la table 'name' qui fournit une chaîne d'affichage pour cette valeur d'attribut. +### getValueNameId() {#getValueNameId--} +``` +public int getValueNameId() +``` + + +Obtient l'ID de nom pour les entrées de la table 'name' qui fournissent une chaîne d'affichage pour cette valeur d'attribut. + +**Returns:** +int - L'ID de nom pour les entrées de la table 'name' qui fournissent une chaîne d'affichage pour cette valeur d'attribut. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/axisvaluetableformat3/_index.md b/french/java/com.aspose.font/axisvaluetableformat3/_index.md new file mode 100644 index 0000000000..56b7d665c0 --- /dev/null +++ b/french/java/com.aspose.font/axisvaluetableformat3/_index.md @@ -0,0 +1,223 @@ +--- +title: "AxisValueTableFormat3" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente le format 3 de la table de valeurs d'axe" +type: docs +weight: 15 +url: /fr/java/com.aspose.font/axisvaluetableformat3/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.font.AxisValueTableBase](../../com.aspose.font/axisvaluetablebase) +``` +public class AxisValueTableFormat3 extends AxisValueTableBase +``` + +Représente le format 3 de la table de valeurs d'axe +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [AxisValueTableFormat3(int flags, int valueNameId, int axisIndex, float value, float linkedValue)](#AxisValueTableFormat3-int-int-int-float-float-) | Constructeur | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getAxisIndex()](#getAxisIndex--) | Obtient l'index Zero-base dans le tableau d'enregistrements d'axes identifiant l'axe de variation de conception auquel la table de valeurs d'axe s'applique. | +| [getClass()](#getClass--) | | +| [getFlags()](#getFlags--) | Obtient le champ des indicateurs de la table de valeurs d'axe. | +| [getFormat()](#getFormat--) | Obtient l'identifiant du format (numéro de version). | +| [getLinkedValue()](#getLinkedValue--) | La valeur numérique pour un mappage lié au style à partir de cette valeur. | +| [getValue()](#getValue--) | La valeur numérique pour cette valeur d'attribut. | +| [getValueName()](#getValueName--) | Obtient le nom de la table 'name' qui fournit une chaîne d'affichage pour cette valeur d'attribut. | +| [getValueNameId()](#getValueNameId--) | Obtient l'ID de nom pour les entrées de la table 'name' qui fournissent une chaîne d'affichage pour cette valeur d'attribut. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### AxisValueTableFormat3(int flags, int valueNameId, int axisIndex, float value, float linkedValue) {#AxisValueTableFormat3-int-int-int-float-float-} +``` +public AxisValueTableFormat3(int flags, int valueNameId, int axisIndex, float value, float linkedValue) +``` + + +Constructeur + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| indicateurs | int | Indicateurs | +| valueNameId | int | L'ID de nom pour les entrées de la table 'name' qui fournissent une chaîne d'affichage pour cette valeur d'attribut | +| axisIndex | int | Spéc.: Index Zero-base dans le tableau d'enregistrements d'axes identifiant l'axe de variation de conception auquel la table de valeurs d'axe s'applique. Doit être inférieur à designAxisCount. | +| valeur | float | La valeur numérique pour cette valeur d'attribut. | +| linkedValue | float | La valeur numérique pour un mappage lié au style à partir de cette valeur. | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getAxisIndex() {#getAxisIndex--} +``` +public int getAxisIndex() +``` + + +Obtient l'index Zero-base dans le tableau d'enregistrements d'axes identifiant l'axe de variation de conception auquel la table de valeurs d'axe s'applique. + +**Returns:** +int - Index à base zéro dans le tableau d'enregistrements d'axe identifiant l'axe de variation de conception auquel la table de valeurs d'axe s'applique. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getFlags() {#getFlags--} +``` +public int getFlags() +``` + + +Obtient le champ des indicateurs de la table de valeurs d'axe. + +**Returns:** +int - Le champ des indicateurs de la table de valeurs d'axe. +### getFormat() {#getFormat--} +``` +public int getFormat() +``` + + +Obtient l'identifiant du format (numéro de version). + +**Returns:** +int - L'identifiant de format (numéro de version). +### getLinkedValue() {#getLinkedValue--} +``` +public float getLinkedValue() +``` + + +La valeur numérique pour un mappage lié au style à partir de cette valeur. + +**Returns:** +float - La valeur numérique pour un mappage lié au style à partir de cette valeur. +### getValue() {#getValue--} +``` +public float getValue() +``` + + +La valeur numérique pour cette valeur d'attribut. + +**Returns:** +float - La valeur numérique pour cette valeur d'attribut. +### getValueName() {#getValueName--} +``` +public String getValueName() +``` + + +Obtient le nom de la table 'name' qui fournit une chaîne d'affichage pour cette valeur d'attribut. + +**Returns:** +java.lang.String - Le nom provenant de la table 'name' qui fournit une chaîne d'affichage pour cette valeur d'attribut. +### getValueNameId() {#getValueNameId--} +``` +public int getValueNameId() +``` + + +Obtient l'ID de nom pour les entrées de la table 'name' qui fournissent une chaîne d'affichage pour cette valeur d'attribut. + +**Returns:** +int - L'ID de nom pour les entrées de la table 'name' qui fournissent une chaîne d'affichage pour cette valeur d'attribut. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/axisvaluetableformat4/_index.md b/french/java/com.aspose.font/axisvaluetableformat4/_index.md new file mode 100644 index 0000000000..a86a3696e2 --- /dev/null +++ b/french/java/com.aspose.font/axisvaluetableformat4/_index.md @@ -0,0 +1,199 @@ +--- +title: "AxisValueTableFormat4" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente le format 4 de la table de valeurs d'axe" +type: docs +weight: 16 +url: /fr/java/com.aspose.font/axisvaluetableformat4/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.font.AxisValueTableBase](../../com.aspose.font/axisvaluetablebase) +``` +public class AxisValueTableFormat4 extends AxisValueTableBase +``` + +Représente le format 4 de la table de valeurs d'axe +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [AxisValueTableFormat4(int flags, int valueNameId, AxisValue[] axisValues)](#AxisValueTableFormat4-int-int-com.aspose.font.AxisValue---) | Constructeur | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getAxisValues()](#getAxisValues--) | Tableau d'enregistrements AxisValue qui fournissent la combinaison des valeurs d'axe, une pour chaque axe contributeur. | +| [getClass()](#getClass--) | | +| [getFlags()](#getFlags--) | Obtient le champ des indicateurs de la table de valeurs d'axe. | +| [getFormat()](#getFormat--) | Obtient l'identifiant du format (numéro de version). | +| [getValueName()](#getValueName--) | Obtient le nom de la table 'name' qui fournit une chaîne d'affichage pour cette valeur d'attribut. | +| [getValueNameId()](#getValueNameId--) | Obtient l'ID de nom pour les entrées de la table 'name' qui fournissent une chaîne d'affichage pour cette valeur d'attribut. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### AxisValueTableFormat4(int flags, int valueNameId, AxisValue[] axisValues) {#AxisValueTableFormat4-int-int-com.aspose.font.AxisValue---} +``` +public AxisValueTableFormat4(int flags, int valueNameId, AxisValue[] axisValues) +``` + + +Constructeur + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| indicateurs | int | Indicateurs | +| valueNameId | int | L'ID de nom pour les entrées de la table 'name' qui fournissent une chaîne d'affichage pour cette valeur d'attribut | +| axisValues | [AxisValue\[\]](../../com.aspose.font/axisvalue) | Tableau d'enregistrements AxisValue qui fournissent la combinaison des valeurs d'axe, une pour chaque axe contributeur. | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getAxisValues() {#getAxisValues--} +``` +public AxisValue[] getAxisValues() +``` + + +Tableau d'enregistrements AxisValue qui fournissent la combinaison des valeurs d'axe, une pour chaque axe contributeur. + +**Returns:** +com.aspose.font.AxisValue[] - Tableau d'enregistrements AxisValue qui fournissent la combinaison des valeurs d'axe, une pour chaque axe contributeur. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getFlags() {#getFlags--} +``` +public int getFlags() +``` + + +Obtient le champ des indicateurs de la table de valeurs d'axe. + +**Returns:** +int - Le champ des indicateurs de la table de valeurs d'axe. +### getFormat() {#getFormat--} +``` +public int getFormat() +``` + + +Obtient l'identifiant du format (numéro de version). + +**Returns:** +int - L'identifiant de format (numéro de version). +### getValueName() {#getValueName--} +``` +public String getValueName() +``` + + +Obtient le nom de la table 'name' qui fournit une chaîne d'affichage pour cette valeur d'attribut. + +**Returns:** +java.lang.String - Le nom provenant de la table 'name' qui fournit une chaîne d'affichage pour cette valeur d'attribut. +### getValueNameId() {#getValueNameId--} +``` +public int getValueNameId() +``` + + +Obtient l'ID de nom pour les entrées de la table 'name' qui fournissent une chaîne d'affichage pour cette valeur d'attribut. + +**Returns:** +int - L'ID de nom pour les entrées de la table 'name' qui fournissent une chaîne d'affichage pour cette valeur d'attribut. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/bytecontentstreamsource/_index.md b/french/java/com.aspose.font/bytecontentstreamsource/_index.md new file mode 100644 index 0000000000..36c74dbf1f --- /dev/null +++ b/french/java/com.aspose.font/bytecontentstreamsource/_index.md @@ -0,0 +1,200 @@ +--- +title: "ByteContentStreamSource" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente une source de flux basée sur le _content stream." +type: docs +weight: 17 +url: /fr/java/com.aspose.font/bytecontentstreamsource/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.font.StreamSource](../../com.aspose.font/streamsource) +``` +public class ByteContentStreamSource extends StreamSource +``` + +Représente une source de flux basée sur le flux \_content. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [ByteContentStreamSource(byte[] fileContent)](#ByteContentStreamSource-byte---) | Initialise un nouvel objet ByteContentStreamSource. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [deepClone()](#deepClone--) | Clone l'objet ByteContentStreamSource. | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getFontStream()](#getFontStream--) | Renvoie le flux du fichier de police. | +| [getOffset()](#getOffset--) | Obtient le décalage à l'intérieur de la source. | +| [hashCode()](#hashCode--) | | +| [mustCloseAfterUse()](#mustCloseAfterUse--) | Les classes dérivées peuvent empêcher la fermeture du flux. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setOffset(long value)](#setOffset-long-) | Définit le décalage à l'intérieur de la source. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### ByteContentStreamSource(byte[] fileContent) {#ByteContentStreamSource-byte---} +``` +public ByteContentStreamSource(byte[] fileContent) +``` + + +Initialise un nouvel objet ByteContentStreamSource. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fileContent | byte[] | Octets du fichier. | + +### deepClone() {#deepClone--} +``` +public Object deepClone() +``` + + +Clone l'objet ByteContentStreamSource. + +**Returns:** +java.lang.Object +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getFontStream() {#getFontStream--} +``` +public InputStream getFontStream() +``` + + +Renvoie le flux du fichier de police. N'oubliez pas de fermer le flux après utilisation. + +**Returns:** +java.io.InputStream - Flux du fichier de police. +### getOffset() {#getOffset--} +``` +public long getOffset() +``` + + +Obtient le décalage à l'intérieur de la source. + +**Returns:** +long - Décalage à l'intérieur de la source. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### mustCloseAfterUse() {#mustCloseAfterUse--} +``` +public boolean mustCloseAfterUse() +``` + + +Les classes dérivées peuvent empêcher la fermeture du flux. Renvoie true si le flux source souhaite que le flux soit fermé après utilisation. Sinon renvoie false. + +**Returns:** +boolean - True si le flux source souhaite que le flux soit fermé après utilisation, sinon false. +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setOffset(long value) {#setOffset-long-} +``` +public void setOffset(long value) +``` + + +Définit le décalage à l'intérieur de la source. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | long | Décalage à l'intérieur de la source. | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/cffencoding/_index.md b/french/java/com.aspose.font/cffencoding/_index.md new file mode 100644 index 0000000000..a0d7b0f5ce --- /dev/null +++ b/french/java/com.aspose.font/cffencoding/_index.md @@ -0,0 +1,256 @@ +--- +title: "CffEncoding" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente l'encodage _font CFF." +type: docs +weight: 18 +url: /fr/java/com.aspose.font/cffencoding/ +--- +**Inheritance:** +java.lang.Object + +**All Implemented Interfaces:** +[com.aspose.font.IFontEncoding](../../com.aspose.font/ifontencoding), [com.aspose.font.ISupportsNameAddressing](../../com.aspose.font/isupportsnameaddressing) +``` +public class CffEncoding implements IFontEncoding, ISupportsNameAddressing +``` + +Représente le codage \_font CFF. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [decodeToGid(long charCode)](#decodeToGid-long-) | Obtient le Gid pour le charCode fourni. | +| [decodeToGidParameterized(IEncodingParameters parameters, long charCode)](#decodeToGidParameterized-com.aspose.font.IEncodingParameters-long-) | Méthode de décodage paramétrée. | +| [encode(long gid, long charCode)](#encode-long-long-) | Encode le glyphe. | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getNameToCharCodeIndex()](#getNameToCharCodeIndex--) | Renvoie la table de correspondance du nom au code de caractère. | +| [getNameToGidIndex()](#getNameToGidIndex--) | Renvoie la table de correspondance du nom au code de caractère. | +| [getNameToSidIndex()](#getNameToSidIndex--) | Renvoie la table de correspondance du nom au code de caractère. | +| [getSidName(int sid)](#getSidName-int-) | Obtient le nom pour le SID spécifié. | +| [gidToUnicode(GlyphId gid)](#gidToUnicode-com.aspose.font.GlyphId-) | Décode Gid en unicode. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [unicodeToGid(long unicode)](#unicodeToGid-long-) | Décode un unicode et renvoie l'ID du glyphe. | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### decodeToGid(long charCode) {#decodeToGid-long-} +``` +public GlyphId decodeToGid(long charCode) +``` + + +Obtient le Gid pour le charCode fourni. Cette méthode est conçue pour les CFF CIDFonts, où le charCode doit être une valeur CID valide. L'identifiant de glyphe est un numéro unique pour un glyphe, qui dépend du type \_font. L'identifiant de glyphe CFF Font peut être une instance de la classe ( GlyphStringId ) ou de la classe ( GlyphUInt32Id ). + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| charCode | long | Code de caractère (CID) pour obtenir l'identifiant du glyphe. | + +**Returns:** +[GlyphId](../../com.aspose.font/glyphid) - Glyph identifier related to CID passed. +### decodeToGidParameterized(IEncodingParameters parameters, long charCode) {#decodeToGidParameterized-com.aspose.font.IEncodingParameters-long-} +``` +public GlyphId decodeToGidParameterized(IEncodingParameters parameters, long charCode) +``` + + +Méthode de décodage paramétrée. Non prise en charge pour le type de police CFF. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| parameters | [IEncodingParameters](../../com.aspose.font/iencodingparameters) | Implémentation de l'interface IEncodingParameters . | +| charCode | long | Code de caractère pour obtenir l'identifiant du glyphe. | + +**Returns:** +[GlyphId](../../com.aspose.font/glyphid) - Glyph identifier related to charCode passed. +### encode(long gid, long charCode) {#encode-long-long-} +``` +public void encode(long gid, long charCode) +``` + + +Encode le glyphe. Non pris en charge pour les types de police CFF. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| gid | long | Identifiant du glyphe | +| charCode | long | CharCode associé à l'identifiant du glyphe. | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getNameToCharCodeIndex() {#getNameToCharCodeIndex--} +``` +public NameToCodeMap getNameToCharCodeIndex() +``` + + +Renvoie la table de correspondance nom → code de caractère. Remarque : le code de caractère n'est pas un unicode. Le code de caractère est un indice de caractère dans la \"table\" d'encodage de la police. + +**Returns:** +[NameToCodeMap](../../com.aspose.font/nametocodemap) - Name to character code encoding map. +### getNameToGidIndex() {#getNameToGidIndex--} +``` +public NameToCodeMap getNameToGidIndex() +``` + + +Renvoie la table de correspondance nom → code de caractère. Remarque : le code de caractère n'est pas un unicode. Le code de caractère est un indice de caractère dans la \"table\" d'encodage de la police. + +**Returns:** +[NameToCodeMap](../../com.aspose.font/nametocodemap) - Name to character code encoding map. +### getNameToSidIndex() {#getNameToSidIndex--} +``` +public NameToCodeMap getNameToSidIndex() +``` + + +Renvoie la table de correspondance nom → code de caractère. Remarque : le code de caractère n'est pas un unicode. Le code de caractère est un indice de caractère dans la \"table\" d'encodage de la police. + +**Returns:** +[NameToCodeMap](../../com.aspose.font/nametocodemap) - Name to character code encoding map. +### getSidName(int sid) {#getSidName-int-} +``` +public String getSidName(int sid) +``` + + +Obtient le nom pour le SID spécifié. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| sid | int | Identifiant de chaîne. | + +**Returns:** +java.lang.String - Nom provenant de l'INDEX de chaîne si trouvé. +### gidToUnicode(GlyphId gid) {#gidToUnicode-com.aspose.font.GlyphId-} +``` +public long gidToUnicode(GlyphId gid) +``` + + +Décode le Gid en unicode. L'identifiant de glyphe est un numéro unique pour un glyphe, qui dépend du type \_font. L'identifiant de glyphe CFF Font peut être une instance de la classe ( GlyphStringId ) ou de la classe ( GlyphUInt32Id ). + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| gid | [GlyphId](../../com.aspose.font/glyphid) | Identifiant du glyphe du symbole à décoder. | + +**Returns:** +long - Valeur Unicode liée à l'identifiant du glyphe fourni. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### unicodeToGid(long unicode) {#unicodeToGid-long-} +``` +public GlyphId unicodeToGid(long unicode) +``` + + +Décode un unicode et renvoie l'identifiant du glyphe. L'identifiant du glyphe est un numéro unique pour un glyphe, qui dépend du type \_font. L'identifiant de glyphe CFF Font peut être une instance de la classe ( GlyphStringId ) ou de la classe ( GlyphUInt32Id ). + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| unicode | long | Unicode pour obtenir l'identifiant du glyphe. | + +**Returns:** +[GlyphId](../../com.aspose.font/glyphid) - Glyph identifier related to unicode passed. +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/cfffont/_index.md b/french/java/com.aspose.font/cfffont/_index.md new file mode 100644 index 0000000000..40e5b4613f --- /dev/null +++ b/french/java/com.aspose.font/cfffont/_index.md @@ -0,0 +1,604 @@ +--- +title: "CffFont" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente le format Compact Font Format CFF." +type: docs +weight: 19 +url: /fr/java/com.aspose.font/cfffont/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.font.Font](../../com.aspose.font/font) +``` +public class CffFont extends Font +``` + +Représente le format Compact Font (CFF). +## Méthodes + +| Méthode | Description | +| --- | --- | +| [convert(FontType fontType)](#convert-com.aspose.font.FontType-) | Convertit la police en un autre format. | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getAllGlyphIds()](#getAllGlyphIds--) | Renvoie un tableau de tous les identifiants de glyphes disponibles dans la police. | +| [getClass()](#getClass--) | | +| [getCommonFontsSettings()](#getCommonFontsSettings--) | Obtient les paramètres communs aux polices CFF. | +| [getEncoding()](#getEncoding--) | Obtient l'encodage de la police. | +| [getFontDefinition()](#getFontDefinition--) | Obtient la définition de la police. | +| [getFontFamily()](#getFontFamily--) | Obtient la famille de la police. | +| [getFontName()](#getFontName--) | Obtient le nom de la face de la police. | +| [getFontNames()](#getFontNames--) | Obtient les noms de la police. | +| [getFontSaver()](#getFontSaver--) | Obtient la fonctionnalité d'enregistrement de la police. | +| [getFontStyle()](#getFontStyle--) | Obtient le style de la police. | +| [getFontType()](#getFontType--) | Obtient le type de la police. | +| [getGlyphAccessor()](#getGlyphAccessor--) | Accesseur de glyphes de la police. | +| [getGlyphById(GlyphId id)](#getGlyphById-com.aspose.font.GlyphId-) | Renvoie le glyphe par identifiant de glyphe. | +| [getGlyphById(String glyphName)](#getGlyphById-java.lang.String-) | Renvoie le glyphe par nom de glyphe. | +| [getGlyphById(long id)](#getGlyphById-long-) | Renvoie le glyphe par identifiant de glyphe. | +| [getGlyphIdType()](#getGlyphIdType--) | Obtient la spécification du type d'identifiant de glyphe. | +| [getGlyphsForText(String text)](#getGlyphsForText-java.lang.String-) | Obtient la représentation des glyphes pour le texte. | +| [getIndexDataProvider(CffIndexProviderType indexType)](#getIndexDataProvider-com.aspose.font.CffIndexProviderType-) | Obtient le fournisseur pour le type de structure INDEX CFF spécifié. | +| [getMetrics()](#getMetrics--) | Obtient les métriques de la police. | +| [getNumGlyphs()](#getNumGlyphs--) | Obtient le nombre de glyphes dans la police. | +| [getPostscriptNames()](#getPostscriptNames--) | Obtient les noms de police PostScript. | +| [getStyle()](#getStyle--) | Obtient le style de la police. | +| [getTopDictDataProvider()](#getTopDictDataProvider--) | | +| [hashCode()](#hashCode--) | | +| [isCidKeyedFont()](#isCidKeyedFont--) | Obtient la valeur indiquant que la police est cid-keyed. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [open(FontDefinition fontDefinition)](#open-com.aspose.font.FontDefinition-) | Ouvre une police en utilisant l'objet FontDefinition. | +| [open(FontType fontType, byte[] fontData)](#open-com.aspose.font.FontType-byte---) | Ouvre une police en utilisant le type de police et le tableau d'octets des données de police. | +| [open(FontType fontType, StreamSource fontStreamSource)](#open-com.aspose.font.FontType-com.aspose.font.StreamSource-) | Ouvre une police en utilisant le type de police et la source du flux. | +| [open(FontType fontType, String fileName)](#open-com.aspose.font.FontType-java.lang.String-) | Ouvre une police en utilisant le type de police et le nom du fichier de police. | +| [save(OutputStream stream)](#save-java.io.OutputStream-) | Enregistre la police au format original. | +| [save(String fileName)](#save-java.lang.String-) | Enregistre la police au format original. | +| [saveToFormat(OutputStream stream, FontSavingFormats outFormat)](#saveToFormat-java.io.OutputStream-com.aspose.font.FontSavingFormats-) | Enregistre la police au format spécifié. | +| [setCommonFontsSettings(CffFontsSettings value)](#setCommonFontsSettings-com.aspose.font.CffFontsSettings-) | Spécifie les paramètres communs aux polices CFF. | +| [setFontFamily(String value)](#setFontFamily-java.lang.String-) | Le setter de la famille de police n'est pas encore implémenté. | +| [setFontName(String value)](#setFontName-java.lang.String-) | Le setter du nom de la police n'est pas encore implémenté. | +| [setStyle(String value)](#setStyle-java.lang.String-) | Le setter du style n'est pas encore implémenté. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### convert(FontType fontType) {#convert-com.aspose.font.FontType-} +``` +public Font convert(FontType fontType) +``` + + +Convertit la police en un autre format. Remarque : le type de police TTF n'est désormais pris en charge que. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontType | [FontType](../../com.aspose.font/fonttype) | Type de format de police dans lequel convertir. | + +**Returns:** +[Font](../../com.aspose.font/font) - Font converted into new format. +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getAllGlyphIds() {#getAllGlyphIds--} +``` +public GlyphId[] getAllGlyphIds() +``` + + +Renvoie un tableau de tous les identifiants de glyphes disponibles dans la police. L'identifiant de glyphe est un nombre unique pour un glyphe, dépendant du type de police. L'identifiant de glyphe d'une police CFF peut être une instance de la classe ( GlyphStringId ) ou de la classe ( GlyphUInt32Id ). + +**Returns:** +com.aspose.font.GlyphId[] +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getCommonFontsSettings() {#getCommonFontsSettings--} +``` +public CffFontsSettings getCommonFontsSettings() +``` + + +Obtient les paramètres communs aux polices CFF. Ces paramètres sont utilisés dans différents scénarios et peuvent être modifiés pour chaque police individuelle. + +**Returns:** +[CffFontsSettings](../../com.aspose.font/cfffontssettings) - Font definition. +### getEncoding() {#getEncoding--} +``` +public IFontEncoding getEncoding() +``` + + +Obtient l'encodage de la police. + +**Returns:** +[IFontEncoding](../../com.aspose.font/ifontencoding) - Font encoding. +### getFontDefinition() {#getFontDefinition--} +``` +public FontDefinition getFontDefinition() +``` + + +Obtient la définition de la police. + +**Returns:** +[FontDefinition](../../com.aspose.font/fontdefinition) - Font definition. +### getFontFamily() {#getFontFamily--} +``` +public String getFontFamily() +``` + + +Obtient la famille de la police. + +**Returns:** +java.lang.String - Famille de police. +### getFontName() {#getFontName--} +``` +public String getFontName() +``` + + +Obtient le nom de la face de la police. + +**Returns:** +java.lang.String - Nom de la face de police. +### getFontNames() {#getFontNames--} +``` +public MultiLanguageString getFontNames() +``` + + +Obtient les noms de la police. + +**Returns:** +[MultiLanguageString](../../com.aspose.font/multilanguagestring) - Font names. +### getFontSaver() {#getFontSaver--} +``` +public IFontSaver getFontSaver() +``` + + +Obtient la fonctionnalité d'enregistrement de la police. + +**Returns:** +[IFontSaver](../../com.aspose.font/ifontsaver) - Font save functionality. +### getFontStyle() {#getFontStyle--} +``` +public int getFontStyle() +``` + + +Obtient le style de la police. Il s'agit d'une valeur calculée et représentée dans un type généralisé. + +**Returns:** +int - Style de police. Généralement, une combinaison de valeurs de drapeaux constants de la classe FontStyle ou 0. +### getFontType() {#getFontType--} +``` +public FontType getFontType() +``` + + +Obtient le type de police. Renvoie la valeur FontType.CFF. + +**Returns:** +[FontType](../../com.aspose.font/fonttype) - Font type. +### getGlyphAccessor() {#getGlyphAccessor--} +``` +public IGlyphAccessor getGlyphAccessor() +``` + + +Accesseur de glyphes de police. Récupère les glyphes et les identifiants de glyphes. + +**Returns:** +[IGlyphAccessor](../../com.aspose.font/iglyphaccessor) - Font glyph accessor. +### getGlyphById(GlyphId id) {#getGlyphById-com.aspose.font.GlyphId-} +``` +public Glyph getGlyphById(GlyphId id) +``` + + +Renvoie le glyphe par son identifiant. L'identifiant de glyphe est un nombre unique pour un glyphe, dépendant du type de police. L'identifiant de glyphe d'une police CFF peut être une instance de la classe ( GlyphStringId ) ou de la classe ( GlyphInt32Id ). + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| id | [GlyphId](../../com.aspose.font/glyphid) | Identifiant de glyphe. | + +**Returns:** +[Glyph](../../com.aspose.font/glyph) - Glyph. +### getGlyphById(String glyphName) {#getGlyphById-java.lang.String-} +``` +public Glyph getGlyphById(String glyphName) +``` + + +Renvoie le glyphe par nom de glyphe. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| glyphName | java.lang.String | Nom du glyphe. | + +**Returns:** +[Glyph](../../com.aspose.font/glyph) - Glyph. +### getGlyphById(long id) {#getGlyphById-long-} +``` +public Glyph getGlyphById(long id) +``` + + +Renvoie le glyphe par identifiant de glyphe. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| id | long | Identifiant de glyphe. | + +**Returns:** +[Glyph](../../com.aspose.font/glyph) - Glyph. +### getGlyphIdType() {#getGlyphIdType--} +``` +public GlyphIdType getGlyphIdType() +``` + + +Obtient la spécification du type d'identifiant de glyphe. + +**Returns:** +[GlyphIdType](../../com.aspose.font/glyphidtype) - Glyph id type specification. +### getGlyphsForText(String text) {#getGlyphsForText-java.lang.String-} +``` +public GlyphId[] getGlyphsForText(String text) +``` + + +Obtient la représentation des glyphes pour le texte. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| text | java.lang.String | Texte d'entrée. | + +**Returns:** +com.aspose.font.GlyphId[] - tableau GlyphId. +### getIndexDataProvider(CffIndexProviderType indexType) {#getIndexDataProvider-com.aspose.font.CffIndexProviderType-} +``` +public ICffIndexDataProvider getIndexDataProvider(CffIndexProviderType indexType) +``` + + +Obtient le fournisseur pour le type de structure INDEX CFF spécifié. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| indexType | [CffIndexProviderType](../../com.aspose.font/cffindexprovidertype) | Type de la structure INDEX. | + +**Returns:** +[ICffIndexDataProvider](../../com.aspose.font/icffindexdataprovider) - Implementation of ( ICffIndexDataProvider ) interface. +### getMetrics() {#getMetrics--} +``` +public IFontMetrics getMetrics() +``` + + +Obtient les métriques de la police. + +**Returns:** +[IFontMetrics](../../com.aspose.font/ifontmetrics) - Font metrics. +### getNumGlyphs() {#getNumGlyphs--} +``` +public int getNumGlyphs() +``` + + +Obtient le nombre de glyphes dans la police. + +**Returns:** +int - Nombre de glyphes dans la police. +### getPostscriptNames() {#getPostscriptNames--} +``` +public MultiLanguageString getPostscriptNames() +``` + + +Obtient les noms de police PostScript. + +**Returns:** +[MultiLanguageString](../../com.aspose.font/multilanguagestring) - Postscript Font names. +### getStyle() {#getStyle--} +``` +public String getStyle() +``` + + +Obtient le style de la police. Il s'agit d'une valeur de chaîne brute fournie par le fichier de police. + +**Returns:** +java.lang.String - Style de police. +### getTopDictDataProvider() {#getTopDictDataProvider--} +``` +public TopDictDataProvider getTopDictDataProvider() +``` + + + + +**Returns:** +[TopDictDataProvider](../../com.aspose.font/topdictdataprovider) +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### isCidKeyedFont() {#isCidKeyedFont--} +``` +public boolean isCidKeyedFont() +``` + + +Obtient la valeur indiquant que la police est cid-keyed. + +**Returns:** +booléen - Valeur indiquant que la police est cid-keyed. +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### open(FontDefinition fontDefinition) {#open-com.aspose.font.FontDefinition-} +``` +public static Font open(FontDefinition fontDefinition) +``` + + +Ouvre une police en utilisant l'objet FontDefinition. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontDefinition | [FontDefinition](../../com.aspose.font/fontdefinition) | Objet de définition de police. | + +**Returns:** +[Font](../../com.aspose.font/font) - Font loaded. +### open(FontType fontType, byte[] fontData) {#open-com.aspose.font.FontType-byte---} +``` +public static Font open(FontType fontType, byte[] fontData) +``` + + +Ouvre une police en utilisant le type de police et le tableau d'octets des données de police. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontType | [FontType](../../com.aspose.font/fonttype) | Type de police. | +| fontData | byte[] | Tableau d'octets pour charger la police. | + +**Returns:** +[Font](../../com.aspose.font/font) - Font loaded. +### open(FontType fontType, StreamSource fontStreamSource) {#open-com.aspose.font.FontType-com.aspose.font.StreamSource-} +``` +public static Font open(FontType fontType, StreamSource fontStreamSource) +``` + + +Ouvre une police en utilisant le type de police et la source du flux. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontType | [FontType](../../com.aspose.font/fonttype) | Type de police. | +| fontStreamSource | [StreamSource](../../com.aspose.font/streamsource) | Source de flux pour la police. | + +**Returns:** +[Font](../../com.aspose.font/font) - Font loaded. +### open(FontType fontType, String fileName) {#open-com.aspose.font.FontType-java.lang.String-} +``` +public static Font open(FontType fontType, String fileName) +``` + + +Ouvre une police en utilisant le type de police et le nom du fichier de police. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontType | [FontType](../../com.aspose.font/fonttype) | Type de police. | +| fileName | java.lang.String | Nom du fichier de police. | + +**Returns:** +[Font](../../com.aspose.font/font) - Font loaded. +### save(OutputStream stream) {#save-java.io.OutputStream-} +``` +public void save(OutputStream stream) +``` + + +Enregistre la police au format original. + +-------------------- + +> ``` +> Note: following Font types are supported for saving: +> New TTF fonts; +> TTF Font subsets; +> CFF Font subsets; +> Type1 Font subsets. +> ``` + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| flux | java.io.OutputStream | Flux pour enregistrer la police. | + +### save(String fileName) {#save-java.lang.String-} +``` +public void save(String fileName) +``` + + +Enregistre la police au format original. + +-------------------- + +> ``` +> Note: following Font types are supported for saving: +> New TTF fonts; +> TTF Font subsets; +> CFF Font subsets; +> Type1 Font subsets. +> ``` + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fileName | java.lang.String | Fichier pour enregistrer la police. | + +### saveToFormat(OutputStream stream, FontSavingFormats outFormat) {#saveToFormat-java.io.OutputStream-com.aspose.font.FontSavingFormats-} +``` +public void saveToFormat(OutputStream stream, FontSavingFormats outFormat) +``` + + +Enregistre la police au format spécifié. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| flux | java.io.OutputStream | flux pour enregistrer la police | +| outFormat | [FontSavingFormats](../../com.aspose.font/fontsavingformats) | format souhaité | + +### setCommonFontsSettings(CffFontsSettings value) {#setCommonFontsSettings-com.aspose.font.CffFontsSettings-} +``` +public void setCommonFontsSettings(CffFontsSettings value) +``` + + +Spécifie les paramètres communs aux polices CFF. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [CffFontsSettings](../../com.aspose.font/cfffontssettings) | Définition de la police. | + +### setFontFamily(String value) {#setFontFamily-java.lang.String-} +``` +public void setFontFamily(String value) +``` + + +Le setter de la famille de police n'est pas encore implémenté. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | Nouvelle famille de police. | + +### setFontName(String value) {#setFontName-java.lang.String-} +``` +public void setFontName(String value) +``` + + +Le setter du nom de la police n'est pas encore implémenté. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | Nouveau nom de face de police. | + +### setStyle(String value) {#setStyle-java.lang.String-} +``` +public void setStyle(String value) +``` + + +Le setter du style n'est pas encore implémenté. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | Nouveau style de police. | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/cfffontexception/_index.md b/french/java/com.aspose.font/cfffontexception/_index.md new file mode 100644 index 0000000000..417fc77eec --- /dev/null +++ b/french/java/com.aspose.font/cfffontexception/_index.md @@ -0,0 +1,313 @@ +--- +title: "CffFontException" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente une exception courante liée au traitement des polices au format CFF." +type: docs +weight: 20 +url: /fr/java/com.aspose.font/cfffontexception/ +--- +**Inheritance:** +java.lang.Object, java.lang.Throwable, java.lang.Exception, java.lang.RuntimeException, java.lang.IllegalStateException, [com.aspose.font.FontException](../../com.aspose.font/fontexception) +``` +public class CffFontException extends FontException +``` + +Représente une exception courante liée au traitement des polices au format CFF. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [CffFontException()](#CffFontException--) | Initialise un nouvel objet CffFontException. | +| [CffFontException(String message)](#CffFontException-java.lang.String-) | Initialise un nouvel objet CffFontException. | +| [CffFontException(String message, RuntimeException innerException)](#CffFontException-java.lang.String-java.lang.RuntimeException-) | Initialise un nouvel objet CffFontException. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [addSuppressed(Throwable arg0)](#addSuppressed-java.lang.Throwable-) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [fillInStackTrace()](#fillInStackTrace--) | | +| [getCause()](#getCause--) | | +| [getClass()](#getClass--) | | +| [getLocalizedMessage()](#getLocalizedMessage--) | | +| [getMessage()](#getMessage--) | | +| [getStackTrace()](#getStackTrace--) | | +| [getSuppressed()](#getSuppressed--) | | +| [hashCode()](#hashCode--) | | +| [initCause(Throwable arg0)](#initCause-java.lang.Throwable-) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [printStackTrace()](#printStackTrace--) | | +| [printStackTrace(PrintStream arg0)](#printStackTrace-java.io.PrintStream-) | | +| [printStackTrace(PrintWriter arg0)](#printStackTrace-java.io.PrintWriter-) | | +| [setStackTrace(StackTraceElement[] arg0)](#setStackTrace-java.lang.StackTraceElement---) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### CffFontException() {#CffFontException--} +``` +public CffFontException() +``` + + +Initialise un nouvel objet CffFontException. + +### CffFontException(String message) {#CffFontException-java.lang.String-} +``` +public CffFontException(String message) +``` + + +Initialise un nouvel objet CffFontException. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| message | java.lang.String | Un message qui décrit l'erreur. | + +### CffFontException(String message, RuntimeException innerException) {#CffFontException-java.lang.String-java.lang.RuntimeException-} +``` +public CffFontException(String message, RuntimeException innerException) +``` + + +Initialise un nouvel objet CffFontException. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| message | java.lang.String | Un message qui décrit l'erreur. | +| innerException | java.lang.RuntimeException | L'exception qui est la cause de l'exception actuelle. | + +### addSuppressed(Throwable arg0) {#addSuppressed-java.lang.Throwable-} +``` +public final synchronized void addSuppressed(Throwable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Throwable | | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### fillInStackTrace() {#fillInStackTrace--} +``` +public synchronized Throwable fillInStackTrace() +``` + + + + +**Returns:** +java.lang.Throwable +### getCause() {#getCause--} +``` +public synchronized Throwable getCause() +``` + + + + +**Returns:** +java.lang.Throwable +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getLocalizedMessage() {#getLocalizedMessage--} +``` +public String getLocalizedMessage() +``` + + + + +**Returns:** +java.lang.String +### getMessage() {#getMessage--} +``` +public String getMessage() +``` + + + + +**Returns:** +java.lang.String +### getStackTrace() {#getStackTrace--} +``` +public StackTraceElement[] getStackTrace() +``` + + + + +**Returns:** +java.lang.StackTraceElement[] +### getSuppressed() {#getSuppressed--} +``` +public final synchronized Throwable[] getSuppressed() +``` + + + + +**Returns:** +java.lang.Throwable[] +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### initCause(Throwable arg0) {#initCause-java.lang.Throwable-} +``` +public synchronized Throwable initCause(Throwable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Throwable | | + +**Returns:** +java.lang.Throwable +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### printStackTrace() {#printStackTrace--} +``` +public void printStackTrace() +``` + + + + +### printStackTrace(PrintStream arg0) {#printStackTrace-java.io.PrintStream-} +``` +public void printStackTrace(PrintStream arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.io.PrintStream | | + +### printStackTrace(PrintWriter arg0) {#printStackTrace-java.io.PrintWriter-} +``` +public void printStackTrace(PrintWriter arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.io.PrintWriter | | + +### setStackTrace(StackTraceElement[] arg0) {#setStackTrace-java.lang.StackTraceElement---} +``` +public void setStackTrace(StackTraceElement[] arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.StackTraceElement[] | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/cfffontmetrics/_index.md b/french/java/com.aspose.font/cfffontmetrics/_index.md new file mode 100644 index 0000000000..904b6cfab5 --- /dev/null +++ b/french/java/com.aspose.font/cfffontmetrics/_index.md @@ -0,0 +1,483 @@ +--- +title: "CffFontMetrics" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Implémentation des métriques de police CFF" +type: docs +weight: 21 +url: /fr/java/com.aspose.font/cfffontmetrics/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.font.FontMetrics](../../com.aspose.font/fontmetrics) +``` +public class CffFontMetrics extends FontMetrics +``` + +Implémentation des métriques de police CFF +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getAscender()](#getAscender--) | Obtient la valeur Ascender. | +| [getAscender(double fontSize)](#getAscender-double-) | Renvoie l'ascender pour une taille de police spécifique. | +| [getClass()](#getClass--) | | +| [getDescender()](#getDescender--) | Obtient la valeur Descender. | +| [getDescender(double fontSize)](#getDescender-double-) | Renvoie le descender pour une taille de police spécifique. | +| [getFontBBox()](#getFontBBox--) | Obtient la valeur FontBBox. | +| [getFontMatrix()](#getFontMatrix--) | Obtient la valeur FontMatrix. | +| [getFontMatrixForGlyph(GlyphId glyphId)](#getFontMatrixForGlyph-com.aspose.font.GlyphId-) | Calcule la matrice de transformation pour le glyphe spécifié par l'identifiant. | +| [getGlyphBBox(GlyphId glyphId)](#getGlyphBBox-com.aspose.font.GlyphId-) | Renvoie le glyph Bbox. | +| [getGlyphWidth(GlyphId glyphId)](#getGlyphWidth-com.aspose.font.GlyphId-) | Renvoie la largeur du glyph. | +| [getKerningValue(GlyphId prevGlyphId, GlyphId nextGlyphId)](#getKerningValue-com.aspose.font.GlyphId-com.aspose.font.GlyphId-) | Renvoie la valeur de crénage pour la paire de glyphes. | +| [getLineGap()](#getLineGap--) | Obtient la valeur LineGap. | +| [getTypoAscender()](#getTypoAscender--) | Obtient la valeur TypoAscender. | +| [getTypoAscender(double fontSize)](#getTypoAscender-double-) | Renvoie l'ascendant typographique pour une taille de Font size spécifique. | +| [getTypoDescender()](#getTypoDescender--) | Obtient la valeur TypoDescender. | +| [getTypoDescender(double fontSize)](#getTypoDescender-double-) | Renvoie le descendant typographique pour une taille de font size spécifique. | +| [getTypoLineGap()](#getTypoLineGap--) | Obtient la valeur TypoLineGap. | +| [getTypoLineGap(double fontSize)](#getTypoLineGap-double-) | Renvoie l'écart de ligne pour une taille de Font size spécifique. | +| [getUnitsPerEM()](#getUnitsPerEM--) | Obtient la valeur UnitsPerEM. | +| [hashCode()](#hashCode--) | | +| [isFixedPitch()](#isFixedPitch--) | Obtient la valeur IsFixedPitch. | +| [measureString(String unicode, double fontSize)](#measureString-java.lang.String-double-) | Mesure la chaîne et renvoie la largeur de la chaîne. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setAscender(double value)](#setAscender-double-) | Définit la valeur Ascender. | +| [setDescender(double value)](#setDescender-double-) | Définit la valeur Descender. | +| [setGlyphWidth(GlyphId glyphId, double value)](#setGlyphWidth-com.aspose.font.GlyphId-double-) | | +| [setTypoAscender(double value)](#setTypoAscender-double-) | Définit la valeur TypoAscender. | +| [setTypoDescender(double value)](#setTypoDescender-double-) | Définit la valeur TypoDescender. | +| [setUnitsPerEM(long value)](#setUnitsPerEM-long-) | Définit la valeur UnitsPerEM. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getAscender() {#getAscender--} +``` +public double getAscender() +``` + + +Obtient la valeur Ascender. + +**Returns:** +double - valeur Ascender. +### getAscender(double fontSize) {#getAscender-double-} +``` +public double getAscender(double fontSize) +``` + + +Renvoie l'ascender pour une taille de police spécifique. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontSize | double | Taille de police. | + +**Returns:** +double - valeur Ascender. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDescender() {#getDescender--} +``` +public double getDescender() +``` + + +Obtient la valeur Descender. + +**Returns:** +double - valeur Descender. +### getDescender(double fontSize) {#getDescender-double-} +``` +public double getDescender(double fontSize) +``` + + +Renvoie le descender pour une taille de police spécifique. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontSize | double | Taille de police. | + +**Returns:** +double - valeur Descender. +### getFontBBox() {#getFontBBox--} +``` +public FontBBox getFontBBox() +``` + + +Obtient la valeur FontBBox. + +**Returns:** +[FontBBox](../../com.aspose.font/fontbbox) - FontBBox value. +### getFontMatrix() {#getFontMatrix--} +``` +public TransformationMatrix getFontMatrix() +``` + + +Obtient la valeur FontMatrix. + +**Returns:** +[TransformationMatrix](../../com.aspose.font/transformationmatrix) - FontMatrix value. +### getFontMatrixForGlyph(GlyphId glyphId) {#getFontMatrixForGlyph-com.aspose.font.GlyphId-} +``` +public TransformationMatrix getFontMatrixForGlyph(GlyphId glyphId) +``` + + +Calcule la matrice de transformation pour le glyphe spécifié par l'identifiant. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| glyphId | [GlyphId](../../com.aspose.font/glyphid) | Identifiant du glyph. | + +**Returns:** +[TransformationMatrix](../../com.aspose.font/transformationmatrix) - Glyph transformation matrix. +### getGlyphBBox(GlyphId glyphId) {#getGlyphBBox-com.aspose.font.GlyphId-} +``` +public FontBBox getGlyphBBox(GlyphId glyphId) +``` + + +Renvoie le glyph Bbox. Renvoie FontBBox si le BBox n'était pas défini pour le glyph. Peut être remplacé par des héritiers d'encodage de police spécifiques. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| glyphId | [GlyphId](../../com.aspose.font/glyphid) | Identifiant du glyph. | + +**Returns:** +[FontBBox](../../com.aspose.font/fontbbox) - Glyph BBox. +### getGlyphWidth(GlyphId glyphId) {#getGlyphWidth-com.aspose.font.GlyphId-} +``` +public double getGlyphWidth(GlyphId glyphId) +``` + + +Renvoie la largeur du glyphe. Peut être remplacée par des héritiers d'encodage de police spécifiques. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| glyphId | [GlyphId](../../com.aspose.font/glyphid) | Identifiant du glyph. | + +**Returns:** +double - Largeur du glyphe. +### getKerningValue(GlyphId prevGlyphId, GlyphId nextGlyphId) {#getKerningValue-com.aspose.font.GlyphId-com.aspose.font.GlyphId-} +``` +public double getKerningValue(GlyphId prevGlyphId, GlyphId nextGlyphId) +``` + + +Renvoie la valeur de crénage pour la paire de glyphes. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| prevGlyphId | [GlyphId](../../com.aspose.font/glyphid) | Premier glyphe de la paire. | +| nextGlyphId | [GlyphId](../../com.aspose.font/glyphid) | Taille de police. | + +**Returns:** +double - Valeur du crénage. +### getLineGap() {#getLineGap--} +``` +public double getLineGap() +``` + + +Obtient la valeur LineGap. + +**Returns:** +double - Valeur du LineGap. +### getTypoAscender() {#getTypoAscender--} +``` +public double getTypoAscender() +``` + + +Obtient la valeur TypoAscender. + +**Returns:** +double - Valeur de TypoAscender. +### getTypoAscender(double fontSize) {#getTypoAscender-double-} +``` +public double getTypoAscender(double fontSize) +``` + + +Renvoie l'ascendant typographique pour une taille de Font size spécifique. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontSize | double | Taille de police. | + +**Returns:** +double - Valeur de l'ascendant typographique. +### getTypoDescender() {#getTypoDescender--} +``` +public double getTypoDescender() +``` + + +Obtient la valeur TypoDescender. + +**Returns:** +double - Valeur de TypoDescender. +### getTypoDescender(double fontSize) {#getTypoDescender-double-} +``` +public double getTypoDescender(double fontSize) +``` + + +Renvoie le descendant typographique pour une taille de font size spécifique. + +param fontSize Taille de la police. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontSize | double | | + +**Returns:** +double - Valeur du descendant typographique. +### getTypoLineGap() {#getTypoLineGap--} +``` +public double getTypoLineGap() +``` + + +Obtient la valeur TypoLineGap. + +**Returns:** +double - Valeur de TypoLineGap. +### getTypoLineGap(double fontSize) {#getTypoLineGap-double-} +``` +public double getTypoLineGap(double fontSize) +``` + + +Renvoie l'écart de ligne pour une taille de Font size spécifique. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontSize | double | Taille de police. | + +**Returns:** +double - Valeur de l'écart de ligne. +### getUnitsPerEM() {#getUnitsPerEM--} +``` +public long getUnitsPerEM() +``` + + +Obtient la valeur UnitsPerEM. + +**Returns:** +long - Valeur de UnitsPerEM. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### isFixedPitch() {#isFixedPitch--} +``` +public boolean isFixedPitch() +``` + + +Obtient la valeur IsFixedPitch. + +**Returns:** +boolean - Valeur de IsFixedPitch. +### measureString(String unicode, double fontSize) {#measureString-java.lang.String-double-} +``` +public double measureString(String unicode, double fontSize) +``` + + +Mesure la chaîne et renvoie la largeur de la chaîne. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| unicode | java.lang.String | Chaîne Unicode. | +| fontSize | double | Taille de police. | + +**Returns:** +double - Largeur de la chaîne. +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setAscender(double value) {#setAscender-double-} +``` +public void setAscender(double value) +``` + + +Définit la valeur Ascender. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | double | Valeur de l'ascendant. | + +### setDescender(double value) {#setDescender-double-} +``` +public void setDescender(double value) +``` + + +Définit la valeur Descender. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | double | Valeur du descendant. | + +### setGlyphWidth(GlyphId glyphId, double value) {#setGlyphWidth-com.aspose.font.GlyphId-double-} +``` +public void setGlyphWidth(GlyphId glyphId, double value) +``` + + +Définit la largeur du glyph. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| glyphId | [GlyphId](../../com.aspose.font/glyphid) | | +| valeur | double | | + +### setTypoAscender(double value) {#setTypoAscender-double-} +``` +public void setTypoAscender(double value) +``` + + +Définit la valeur TypoAscender. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | double | Valeur de TypoAscender. | + +### setTypoDescender(double value) {#setTypoDescender-double-} +``` +public void setTypoDescender(double value) +``` + + +Définit la valeur TypoDescender. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | double | Valeur de TypoDescender. | + +### setUnitsPerEM(long value) {#setUnitsPerEM-long-} +``` +public void setUnitsPerEM(long value) +``` + + +Définit la valeur UnitsPerEM. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | long | Valeur de UnitsPerEM. | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/cfffontssettings/_index.md b/french/java/com.aspose.font/cfffontssettings/_index.md new file mode 100644 index 0000000000..dba5bd6087 --- /dev/null +++ b/french/java/com.aspose.font/cfffontssettings/_index.md @@ -0,0 +1,162 @@ +--- +title: "CffFontsSettings" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Fournit des paramètres communs aux polices CFF." +type: docs +weight: 22 +url: /fr/java/com.aspose.font/cfffontssettings/ +--- +**Inheritance:** +java.lang.Object +``` +public class CffFontsSettings +``` + +Fournit des paramètres communs aux polices CFF. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [CffFontsSettings()](#CffFontsSettings--) | Constructeur | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getUpdateStringsStrategy()](#getUpdateStringsStrategy--) | Obtient la stratégie de mise à jour des chaînes dans la structure CFF String INDEX. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setUpdateStringStrategy(CffUpdateStringIndexStrategy updateStringsStrategy)](#setUpdateStringStrategy-com.aspose.font.CffUpdateStringIndexStrategy-) | Spécifie la stratégie de mise à jour des chaînes dans la structure CFF String INDEX. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### CffFontsSettings() {#CffFontsSettings--} +``` +public CffFontsSettings() +``` + + +Constructeur + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getUpdateStringsStrategy() {#getUpdateStringsStrategy--} +``` +public CffUpdateStringIndexStrategy getUpdateStringsStrategy() +``` + + +Obtient la stratégie de mise à jour des chaînes dans la structure CFF String INDEX. L'option AddStringAsIs est utilisée par défaut. + +**Returns:** +[CffUpdateStringIndexStrategy](../../com.aspose.font/cffupdatestringindexstrategy) +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setUpdateStringStrategy(CffUpdateStringIndexStrategy updateStringsStrategy) {#setUpdateStringStrategy-com.aspose.font.CffUpdateStringIndexStrategy-} +``` +public void setUpdateStringStrategy(CffUpdateStringIndexStrategy updateStringsStrategy) +``` + + +Spécifie la stratégie de mise à jour des chaînes dans la structure CFF String INDEX. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| updateStringsStrategy | [CffUpdateStringIndexStrategy](../../com.aspose.font/cffupdatestringindexstrategy) | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/cffindexprovidertype/_index.md b/french/java/com.aspose.font/cffindexprovidertype/_index.md new file mode 100644 index 0000000000..d03a60b510 --- /dev/null +++ b/french/java/com.aspose.font/cffindexprovidertype/_index.md @@ -0,0 +1,250 @@ +--- +title: "CffIndexProviderType" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Spécifie les structures INDEX prises en charge par la famille d'interfaces du fournisseur d'index." +type: docs +weight: 133 +url: /fr/java/com.aspose.font/cffindexprovidertype/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum CffIndexProviderType extends Enum +``` + +Spécifie les structures INDEX prises en charge par la famille d'interfaces du fournisseur d'index. +## Champs + +| Champ | Description | +| --- | --- | +| [NameIndex](#NameIndex) | Name INDEX | +| [StringIndex](#StringIndex) | String INDEX | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### NameIndex {#NameIndex} +``` +public static final CffIndexProviderType NameIndex +``` + + +Name INDEX + +### StringIndex {#StringIndex} +``` +public static final CffIndexProviderType StringIndex +``` + + +String INDEX + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static CffIndexProviderType valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[CffIndexProviderType](../../com.aspose.font/cffindexprovidertype) +### values() {#values--} +``` +public static CffIndexProviderType[] values() +``` + + + + +**Returns:** +com.aspose.font.CffIndexProviderType[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/cffparsingexception/_index.md b/french/java/com.aspose.font/cffparsingexception/_index.md new file mode 100644 index 0000000000..b734acced6 --- /dev/null +++ b/french/java/com.aspose.font/cffparsingexception/_index.md @@ -0,0 +1,313 @@ +--- +title: "CffParsingException" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente une exception d'analyse pour les polices au format cff." +type: docs +weight: 23 +url: /fr/java/com.aspose.font/cffparsingexception/ +--- +**Inheritance:** +java.lang.Object, java.lang.Throwable, java.lang.Exception, java.lang.RuntimeException, java.lang.IllegalStateException, [com.aspose.font.FontException](../../com.aspose.font/fontexception), [com.aspose.font.CffFontException](../../com.aspose.font/cfffontexception) +``` +public class CffParsingException extends CffFontException +``` + +Représente une exception d'analyse pour les polices au format cff. L'exception peut être levée en cas d'erreurs lors du processus d'analyse de la police. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [CffParsingException()](#CffParsingException--) | Initialise un nouvel objet CffParsingException. | +| [CffParsingException(String message)](#CffParsingException-java.lang.String-) | Initialise un nouvel objet CffParsingException. | +| [CffParsingException(String message, RuntimeException innerException)](#CffParsingException-java.lang.String-java.lang.RuntimeException-) | Initialise un nouvel objet CffParsingException. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [addSuppressed(Throwable arg0)](#addSuppressed-java.lang.Throwable-) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [fillInStackTrace()](#fillInStackTrace--) | | +| [getCause()](#getCause--) | | +| [getClass()](#getClass--) | | +| [getLocalizedMessage()](#getLocalizedMessage--) | | +| [getMessage()](#getMessage--) | | +| [getStackTrace()](#getStackTrace--) | | +| [getSuppressed()](#getSuppressed--) | | +| [hashCode()](#hashCode--) | | +| [initCause(Throwable arg0)](#initCause-java.lang.Throwable-) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [printStackTrace()](#printStackTrace--) | | +| [printStackTrace(PrintStream arg0)](#printStackTrace-java.io.PrintStream-) | | +| [printStackTrace(PrintWriter arg0)](#printStackTrace-java.io.PrintWriter-) | | +| [setStackTrace(StackTraceElement[] arg0)](#setStackTrace-java.lang.StackTraceElement---) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### CffParsingException() {#CffParsingException--} +``` +public CffParsingException() +``` + + +Initialise un nouvel objet CffParsingException. + +### CffParsingException(String message) {#CffParsingException-java.lang.String-} +``` +public CffParsingException(String message) +``` + + +Initialise un nouvel objet CffParsingException. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| message | java.lang.String | Un message qui décrit l'erreur. | + +### CffParsingException(String message, RuntimeException innerException) {#CffParsingException-java.lang.String-java.lang.RuntimeException-} +``` +public CffParsingException(String message, RuntimeException innerException) +``` + + +Initialise un nouvel objet CffParsingException. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| message | java.lang.String | Un message qui décrit l'erreur. | +| innerException | java.lang.RuntimeException | L'exception qui est la cause de l'exception actuelle. | + +### addSuppressed(Throwable arg0) {#addSuppressed-java.lang.Throwable-} +``` +public final synchronized void addSuppressed(Throwable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Throwable | | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### fillInStackTrace() {#fillInStackTrace--} +``` +public synchronized Throwable fillInStackTrace() +``` + + + + +**Returns:** +java.lang.Throwable +### getCause() {#getCause--} +``` +public synchronized Throwable getCause() +``` + + + + +**Returns:** +java.lang.Throwable +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getLocalizedMessage() {#getLocalizedMessage--} +``` +public String getLocalizedMessage() +``` + + + + +**Returns:** +java.lang.String +### getMessage() {#getMessage--} +``` +public String getMessage() +``` + + + + +**Returns:** +java.lang.String +### getStackTrace() {#getStackTrace--} +``` +public StackTraceElement[] getStackTrace() +``` + + + + +**Returns:** +java.lang.StackTraceElement[] +### getSuppressed() {#getSuppressed--} +``` +public final synchronized Throwable[] getSuppressed() +``` + + + + +**Returns:** +java.lang.Throwable[] +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### initCause(Throwable arg0) {#initCause-java.lang.Throwable-} +``` +public synchronized Throwable initCause(Throwable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Throwable | | + +**Returns:** +java.lang.Throwable +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### printStackTrace() {#printStackTrace--} +``` +public void printStackTrace() +``` + + + + +### printStackTrace(PrintStream arg0) {#printStackTrace-java.io.PrintStream-} +``` +public void printStackTrace(PrintStream arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.io.PrintStream | | + +### printStackTrace(PrintWriter arg0) {#printStackTrace-java.io.PrintWriter-} +``` +public void printStackTrace(PrintWriter arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.io.PrintWriter | | + +### setStackTrace(StackTraceElement[] arg0) {#setStackTrace-java.lang.StackTraceElement---} +``` +public void setStackTrace(StackTraceElement[] arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.StackTraceElement[] | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/cffupdatestringindexstrategy/_index.md b/french/java/com.aspose.font/cffupdatestringindexstrategy/_index.md new file mode 100644 index 0000000000..6658ddd5ce --- /dev/null +++ b/french/java/com.aspose.font/cffupdatestringindexstrategy/_index.md @@ -0,0 +1,250 @@ +--- +title: "CffUpdateStringIndexStrategy" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Spécifie comment ajouter des chaînes au stockage CFF String INDEX." +type: docs +weight: 134 +url: /fr/java/com.aspose.font/cffupdatestringindexstrategy/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum CffUpdateStringIndexStrategy extends Enum +``` + +Spécifie comment ajouter des chaînes au stockage CFF String INDEX. Lorsque nous essayons d’ajouter une chaîne dans le CFF String INDEX, il peut arriver que cette chaîne soit déjà présente dans le String INDEX. En utilisant l’option SearchForDuplicates, nous pouvons forcer la recherche dans le String INDEX pour détecter si cette chaîne est déjà présente ou non. Cette approche économise de l’espace dans la structure String INDEX, mais nécessite plus de temps pour ajouter la chaîne. +## Champs + +| Champ | Description | +| --- | --- | +| [AddStringAsIs](#AddStringAsIs) | Spécifie qu’aucune vérification des doublons ne doit être effectuée lors de l’ajout d’une chaîne. | +| [SearchForDuplicates](#SearchForDuplicates) | Spécifie que la recherche de la chaîne à ajouter doit être effectuée dans la structure String INDEX afin d’éviter l’ajout de doublons. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### AddStringAsIs {#AddStringAsIs} +``` +public static final CffUpdateStringIndexStrategy AddStringAsIs +``` + + +Spécifie qu’aucune vérification des doublons ne doit être effectuée lors de l’ajout d’une chaîne. Cette approche est plus rapide, mais peut entraîner une utilisation inefficace de la mémoire pour le String INDEX. + +### SearchForDuplicates {#SearchForDuplicates} +``` +public static final CffUpdateStringIndexStrategy SearchForDuplicates +``` + + +Spécifie que la recherche de la chaîne à ajouter doit être effectuée dans la structure String INDEX afin d’éviter l’ajout de doublons. + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static CffUpdateStringIndexStrategy valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[CffUpdateStringIndexStrategy](../../com.aspose.font/cffupdatestringindexstrategy) +### values() {#values--} +``` +public static CffUpdateStringIndexStrategy[] values() +``` + + + + +**Returns:** +com.aspose.font.CffUpdateStringIndexStrategy[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/closepath/_index.md b/french/java/com.aspose.font/closepath/_index.md new file mode 100644 index 0000000000..fc3ca063b3 --- /dev/null +++ b/french/java/com.aspose.font/closepath/_index.md @@ -0,0 +1,200 @@ +--- +title: "ClosePath" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente l'opération ClosePath." +type: docs +weight: 24 +url: /fr/java/com.aspose.font/closepath/ +--- +**Inheritance:** +java.lang.Object + +**All Implemented Interfaces:** +[com.aspose.font.IPathSegment](../../com.aspose.font/ipathsegment) +``` +public class ClosePath implements IPathSegment +``` + +Représente l'opération ClosePath. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [clone()](#clone--) | Crée un nouvel objet qui est une copie de l'instance actuelle. | +| [copy()](#copy--) | Crée une copie de l'objet segment. | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getX()](#getX--) | Obtient la coordonnée x. | +| [getY()](#getY--) | Obtient la coordonnée y. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [shift(double dx, double dy)](#shift-double-double-) | Effectue un décalage selon les coordonnées x et y. | +| [toString()](#toString--) | | +| [transform(TransformationMatrix matrix)](#transform-com.aspose.font.TransformationMatrix-) | Transforme les coordonnées avec la matrice de transformation. | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### clone() {#clone--} +``` +public Object clone() +``` + + +Crée un nouvel objet qui est une copie de l'instance actuelle. + +**Returns:** +java.lang.Object - Un nouvel objet qui est une copie de cette instance. +### copy() {#copy--} +``` +public IPathSegment copy() +``` + + +Crée une copie de l'objet segment. + +**Returns:** +[IPathSegment](../../com.aspose.font/ipathsegment) - Copy of the segment object. +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getX() {#getX--} +``` +public double getX() +``` + + +Obtient la coordonnée x. + +**Returns:** +double - Coordonnée x. +### getY() {#getY--} +``` +public double getY() +``` + + +Obtient la coordonnée y. + +**Returns:** +double - Coordonnée y. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### shift(double dx, double dy) {#shift-double-double-} +``` +public void shift(double dx, double dy) +``` + + +Effectue un décalage selon les coordonnées x et y. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| dx | double | Valeur dx. | +| dy | double | Valeur dy. | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### transform(TransformationMatrix matrix) {#transform-com.aspose.font.TransformationMatrix-} +``` +public void transform(TransformationMatrix matrix) +``` + + +Transforme les coordonnées avec la matrice de transformation. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| matrix | [TransformationMatrix](../../com.aspose.font/transformationmatrix) | Matrice de transformation. | + +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/compositeglyph/_index.md b/french/java/com.aspose.font/compositeglyph/_index.md new file mode 100644 index 0000000000..698c96a4bd --- /dev/null +++ b/french/java/com.aspose.font/compositeglyph/_index.md @@ -0,0 +1,245 @@ +--- +title: "CompositeGlyph" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente un glyphe composite de police." +type: docs +weight: 25 +url: /fr/java/com.aspose.font/compositeglyph/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.font.Glyph](../../com.aspose.font/glyph) +``` +public class CompositeGlyph extends Glyph +``` + +Représente un glyphe composite de police. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [clone()](#clone--) | Renvoie une copie du glyphe. | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getComponents()](#getComponents--) | Obtient la liste des composants. | +| [getGlyphBBox()](#getGlyphBBox--) | Obtient le BBox du glyphe. | +| [getLeftSidebearingX()](#getLeftSidebearingX--) | Obtient la coordonnée x du bord latéral du glyphe. | +| [getLeftSidebearingY()](#getLeftSidebearingY--) | Obtient la coordonnée y du bord latéral du glyphe. | +| [getPath()](#getPath--) | Obtient le chemin du glyphe. | +| [getSourceResolution()](#getSourceResolution--) | Obtient la résolution du jeu de commandes source. | +| [getState()](#getState--) | Obtient l'état du glyphe. | +| [getWidthVectorX()](#getWidthVectorX--) | Obtient le vecteur de largeur du glyphe. | +| [getWidthVectorY()](#getWidthVectorY--) | Obtient le vecteur de largeur du glyphe. | +| [hashCode()](#hashCode--) | | +| [isEmpty()](#isEmpty--) | Vrai si le glyphe ne contient pas d'instructions de dessin. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### clone() {#clone--} +``` +public Object clone() +``` + + +Renvoie une copie du glyphe. + +**Returns:** +java.lang.Object - Copie du glyphe +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getComponents() {#getComponents--} +``` +public CompositeGlyphComponentList getComponents() +``` + + +Obtient la liste des composants. + +**Returns:** +[CompositeGlyphComponentList](../../com.aspose.font/compositeglyphcomponentlist) - Components list. +### getGlyphBBox() {#getGlyphBBox--} +``` +public FontBBox getGlyphBBox() +``` + + +Obtient le BBox du glyphe. + +**Returns:** +[FontBBox](../../com.aspose.font/fontbbox) - Glyph BBox +### getLeftSidebearingX() {#getLeftSidebearingX--} +``` +public double getLeftSidebearingX() +``` + + +Obtient la coordonnée x du bord latéral du glyphe. + +**Returns:** +double - Coordonnée x du bord latéral du glyphe. +### getLeftSidebearingY() {#getLeftSidebearingY--} +``` +public double getLeftSidebearingY() +``` + + +Obtient la coordonnée y du bord latéral du glyphe. + +**Returns:** +double - Coordonnée y du bord latéral du glyphe. +### getPath() {#getPath--} +``` +public SegmentPath getPath() +``` + + +Obtient le chemin du glyphe. + +**Returns:** +[SegmentPath](../../com.aspose.font/segmentpath) - Glyph path. +### getSourceResolution() {#getSourceResolution--} +``` +public int getSourceResolution() +``` + + +Obtient la résolution du jeu de commandes source. + +**Returns:** +int - Résolution du jeu de commandes source. +### getState() {#getState--} +``` +public GlyphState getState() +``` + + +Obtient l'état du glyphe. + +**Returns:** +[GlyphState](../../com.aspose.font/glyphstate) - Glyph state. +### getWidthVectorX() {#getWidthVectorX--} +``` +public double getWidthVectorX() +``` + + +Obtient le vecteur de largeur du glyphe. Coordonnée x. + +**Returns:** +double - Vecteur de largeur du glyphe. Coordonnée x. +### getWidthVectorY() {#getWidthVectorY--} +``` +public double getWidthVectorY() +``` + + +Obtient le vecteur de largeur du glyphe. Coordonnée y. + +**Returns:** +double - Vecteur de largeur du glyphe. Coordonnée y. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### isEmpty() {#isEmpty--} +``` +public boolean isEmpty() +``` + + +Vrai si le glyphe ne contient pas d'instructions de dessin. + +**Returns:** +boolean - Vrai si le glyphe ne contient pas d'instructions de dessin. +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/compositeglyphcomponent/_index.md b/french/java/com.aspose.font/compositeglyphcomponent/_index.md new file mode 100644 index 0000000000..3f452f2bbd --- /dev/null +++ b/french/java/com.aspose.font/compositeglyphcomponent/_index.md @@ -0,0 +1,146 @@ +--- +title: "CompositeGlyphComponent" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente le composant de glyphe composite avec une matrice de placement." +type: docs +weight: 26 +url: /fr/java/com.aspose.font/compositeglyphcomponent/ +--- +**Inheritance:** +java.lang.Object +``` +public class CompositeGlyphComponent +``` + +Représente le composant de glyphe composite (glyphe avec matrice de placement). +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getGlyph()](#getGlyph--) | Obtient le glyphe composant. | +| [getMatrix()](#getMatrix--) | Obtient la matrice de transformation du composant. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getGlyph() {#getGlyph--} +``` +public Glyph getGlyph() +``` + + +Obtient le glyphe composant. + +**Returns:** +[Glyph](../../com.aspose.font/glyph) - The component glyph. +### getMatrix() {#getMatrix--} +``` +public TransformationMatrix getMatrix() +``` + + +Obtient la matrice de transformation du composant. + +**Returns:** +[TransformationMatrix](../../com.aspose.font/transformationmatrix) - The component transformation matrix. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/compositeglyphcomponentlist/_index.md b/french/java/com.aspose.font/compositeglyphcomponentlist/_index.md new file mode 100644 index 0000000000..feb47218c2 --- /dev/null +++ b/french/java/com.aspose.font/compositeglyphcomponentlist/_index.md @@ -0,0 +1,565 @@ +--- +title: "CompositeGlyphComponentList" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente la liste des composants de glyphes composites." +type: docs +weight: 27 +url: /fr/java/com.aspose.font/compositeglyphcomponentlist/ +--- +**Inheritance:** +java.lang.Object, java.util.AbstractCollection, java.util.AbstractList, java.util.ArrayList +``` +public class CompositeGlyphComponentList extends ArrayList +``` + +Représente la liste des composants de glyphes composites. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [toArray(T[] arg0)](#-T-toArray-T---) | | +| [add(E arg0)](#add-E-) | | +| [add(int arg0, E arg1)](#add-int-E-) | | +| [addAll(int arg0, Collection arg1)](#addAll-int-java.util.Collection---extends-E--) | | +| [addAll(Collection arg0)](#addAll-java.util.Collection---extends-E--) | | +| [clear()](#clear--) | | +| [clone()](#clone--) | | +| [contains(Object arg0)](#contains-java.lang.Object-) | | +| [containsAll(Collection arg0)](#containsAll-java.util.Collection----) | | +| [ensureCapacity(int arg0)](#ensureCapacity-int-) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [forEach(Consumer arg0)](#forEach-java.util.function.Consumer---super-E--) | | +| [get(int arg0)](#get-int-) | | +| [getClass()](#getClass--) | | +| [hashCode()](#hashCode--) | | +| [indexOf(Object arg0)](#indexOf-java.lang.Object-) | | +| [isEmpty()](#isEmpty--) | | +| [iterator()](#iterator--) | | +| [lastIndexOf(Object arg0)](#lastIndexOf-java.lang.Object-) | | +| [listIterator()](#listIterator--) | | +| [listIterator(int arg0)](#listIterator-int-) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [remove(int arg0)](#remove-int-) | | +| [remove(Object arg0)](#remove-java.lang.Object-) | | +| [removeAll(Collection arg0)](#removeAll-java.util.Collection----) | | +| [removeIf(Predicate arg0)](#removeIf-java.util.function.Predicate---super-E--) | | +| [replaceAll(UnaryOperator arg0)](#replaceAll-java.util.function.UnaryOperator-E--) | | +| [retainAll(Collection arg0)](#retainAll-java.util.Collection----) | | +| [set(int arg0, E arg1)](#set-int-E-) | | +| [size()](#size--) | | +| [sort(Comparator arg0)](#sort-java.util.Comparator---super-E--) | | +| [spliterator()](#spliterator--) | | +| [subList(int arg0, int arg1)](#subList-int-int-) | | +| [toArray()](#toArray--) | | +| [toString()](#toString--) | | +| [trimToSize()](#trimToSize--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### toArray(T[] arg0) {#-T-toArray-T---} +``` +public T[] toArray(T[] arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | T[] | | + +**Returns:** +T[] +### add(E arg0) {#add-E-} +``` +public boolean add(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +boolean +### add(int arg0, E arg1) {#add-int-E-} +``` +public void add(int arg0, E arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | E | | + +### addAll(int arg0, Collection arg1) {#addAll-int-java.util.Collection---extends-E--} +``` +public boolean addAll(int arg0, Collection arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | java.util.Collection | | + +**Returns:** +boolean +### addAll(Collection arg0) {#addAll-java.util.Collection---extends-E--} +``` +public boolean addAll(Collection arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.util.Collection | | + +**Returns:** +boolean +### clear() {#clear--} +``` +public void clear() +``` + + + + +### clone() {#clone--} +``` +public Object clone() +``` + + + + +**Returns:** +java.lang.Object +### contains(Object arg0) {#contains-java.lang.Object-} +``` +public boolean contains(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### containsAll(Collection arg0) {#containsAll-java.util.Collection----} +``` +public boolean containsAll(Collection arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.util.Collection | | + +**Returns:** +boolean +### ensureCapacity(int arg0) {#ensureCapacity-int-} +``` +public void ensureCapacity(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### forEach(Consumer arg0) {#forEach-java.util.function.Consumer---super-E--} +``` +public void forEach(Consumer arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.util.function.Consumer | | + +### get(int arg0) {#get-int-} +``` +public E get(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +E +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public int hashCode() +``` + + + + +**Returns:** +int +### indexOf(Object arg0) {#indexOf-java.lang.Object-} +``` +public int indexOf(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +int +### isEmpty() {#isEmpty--} +``` +public boolean isEmpty() +``` + + + + +**Returns:** +boolean +### iterator() {#iterator--} +``` +public Iterator iterator() +``` + + + + +**Returns:** +java.util.Iterator +### lastIndexOf(Object arg0) {#lastIndexOf-java.lang.Object-} +``` +public int lastIndexOf(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +int +### listIterator() {#listIterator--} +``` +public ListIterator listIterator() +``` + + + + +**Returns:** +java.util.ListIterator +### listIterator(int arg0) {#listIterator-int-} +``` +public ListIterator listIterator(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +java.util.ListIterator +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### remove(int arg0) {#remove-int-} +``` +public E remove(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +E +### remove(Object arg0) {#remove-java.lang.Object-} +``` +public boolean remove(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### removeAll(Collection arg0) {#removeAll-java.util.Collection----} +``` +public boolean removeAll(Collection arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.util.Collection | | + +**Returns:** +boolean +### removeIf(Predicate arg0) {#removeIf-java.util.function.Predicate---super-E--} +``` +public boolean removeIf(Predicate arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.util.function.Predicate | | + +**Returns:** +boolean +### replaceAll(UnaryOperator arg0) {#replaceAll-java.util.function.UnaryOperator-E--} +``` +public void replaceAll(UnaryOperator arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.util.function.UnaryOperator | | + +### retainAll(Collection arg0) {#retainAll-java.util.Collection----} +``` +public boolean retainAll(Collection arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.util.Collection | | + +**Returns:** +boolean +### set(int arg0, E arg1) {#set-int-E-} +``` +public E set(int arg0, E arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | E | | + +**Returns:** +E +### size() {#size--} +``` +public int size() +``` + + + + +**Returns:** +int +### sort(Comparator arg0) {#sort-java.util.Comparator---super-E--} +``` +public void sort(Comparator arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.util.Comparator | | + +### spliterator() {#spliterator--} +``` +public Spliterator spliterator() +``` + + + + +**Returns:** +java.util.Spliterator +### subList(int arg0, int arg1) {#subList-int-int-} +``` +public List subList(int arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | + +**Returns:** +java.util.List +### toArray() {#toArray--} +``` +public Object[] toArray() +``` + + + + +**Returns:** +java.lang.Object[] +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### trimToSize() {#trimToSize--} +``` +public void trimToSize() +``` + + + + +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/compressionutils/_index.md b/french/java/com.aspose.font/compressionutils/_index.md new file mode 100644 index 0000000000..3cf8b5ac0f --- /dev/null +++ b/french/java/com.aspose.font/compressionutils/_index.md @@ -0,0 +1,168 @@ +--- +title: "CompressionUtils" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Fournit des méthodes utilitaires pour la compression et la décompression." +type: docs +weight: 28 +url: /fr/java/com.aspose.font/compressionutils/ +--- +**Inheritance:** +java.lang.Object +``` +public class CompressionUtils +``` + +Fournit des méthodes utilitaires pour la compression et la décompression. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [CompressionUtils()](#CompressionUtils--) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [decodeByBrotli(byte[] input)](#decodeByBrotli-byte---) | Décompresse le tableau d'octets compressé avec Brotli fourni. | +| [encodeByBrotli(byte[] buff, int buffLength)](#encodeByBrotli-byte---int-) | Compresse le tableau d'octets fourni en utilisant l'algorithme Brotli. | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### CompressionUtils() {#CompressionUtils--} +``` +public CompressionUtils() +``` + + +### decodeByBrotli(byte[] input) {#decodeByBrotli-byte---} +``` +public static byte[] decodeByBrotli(byte[] input) +``` + + +Décompresse le tableau d'octets compressé avec Brotli fourni. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| entrée | byte[] | Les données compressées. | + +**Returns:** +byte[] - Le tableau d'octets décompressé. +### encodeByBrotli(byte[] buff, int buffLength) {#encodeByBrotli-byte---int-} +``` +public static byte[] encodeByBrotli(byte[] buff, int buffLength) +``` + + +Compresse le tableau d'octets fourni en utilisant l'algorithme Brotli. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| tampon | byte[] | Le tampon d'entrée à compresser. | +| buffLength | int | La longueur des données à compresser. | + +**Returns:** +byte[] - Le tableau d'octets compressé. +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/curveto/_index.md b/french/java/com.aspose.font/curveto/_index.md new file mode 100644 index 0000000000..d98e779054 --- /dev/null +++ b/french/java/com.aspose.font/curveto/_index.md @@ -0,0 +1,244 @@ +--- +title: "CurveTo" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente l'opération CurveTo." +type: docs +weight: 29 +url: /fr/java/com.aspose.font/curveto/ +--- +**Inheritance:** +java.lang.Object + +**All Implemented Interfaces:** +[com.aspose.font.IPathSegment](../../com.aspose.font/ipathsegment) +``` +public class CurveTo implements IPathSegment +``` + +Représente l'opération CurveTo. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [clone()](#clone--) | Crée un nouvel objet qui est une copie de l'instance actuelle. | +| [copy()](#copy--) | Crée une copie de l'objet segment. | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getX1()](#getX1--) | Obtient la coordonnée x1. | +| [getX2()](#getX2--) | Obtient la coordonnée x2. | +| [getX3()](#getX3--) | Obtient la coordonnée x3. | +| [getY1()](#getY1--) | Obtient la coordonnée y1. | +| [getY2()](#getY2--) | Obtient la coordonnée y2. | +| [getY3()](#getY3--) | Obtient la coordonnée y3. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [shift(double dx, double dy)](#shift-double-double-) | Effectue un décalage selon les coordonnées x et y. | +| [toString()](#toString--) | | +| [transform(TransformationMatrix matrix)](#transform-com.aspose.font.TransformationMatrix-) | Transforme les coordonnées avec la matrice de transformation. | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### clone() {#clone--} +``` +public Object clone() +``` + + +Crée un nouvel objet qui est une copie de l'instance actuelle. + +**Returns:** +java.lang.Object - Un nouvel objet qui est une copie de cette instance. +### copy() {#copy--} +``` +public IPathSegment copy() +``` + + +Crée une copie de l'objet segment. + +**Returns:** +[IPathSegment](../../com.aspose.font/ipathsegment) - Copy of the segment object. +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getX1() {#getX1--} +``` +public double getX1() +``` + + +Obtient la coordonnée x1. + +**Returns:** +double - Coordonnée x1. +### getX2() {#getX2--} +``` +public double getX2() +``` + + +Obtient la coordonnée x2. + +**Returns:** +double - Coordonnée x2. +### getX3() {#getX3--} +``` +public double getX3() +``` + + +Obtient la coordonnée x3. + +**Returns:** +double - Coordonnée x3. +### getY1() {#getY1--} +``` +public double getY1() +``` + + +Obtient la coordonnée y1. + +**Returns:** +double - Coordonnée y1. +### getY2() {#getY2--} +``` +public double getY2() +``` + + +Obtient la coordonnée y2. + +**Returns:** +double - Coordonnée y2. +### getY3() {#getY3--} +``` +public double getY3() +``` + + +Obtient la coordonnée y3. + +**Returns:** +double - Coordonnée y3. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### shift(double dx, double dy) {#shift-double-double-} +``` +public void shift(double dx, double dy) +``` + + +Effectue un décalage selon les coordonnées x et y. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| dx | double | Valeur dx. | +| dy | double | Valeur dy. | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### transform(TransformationMatrix matrix) {#transform-com.aspose.font.TransformationMatrix-} +``` +public void transform(TransformationMatrix matrix) +``` + + +Transforme les coordonnées avec la matrice de transformation. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| matrix | [TransformationMatrix](../../com.aspose.font/transformationmatrix) | Matrice de transformation. | + +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/encodingexception/_index.md b/french/java/com.aspose.font/encodingexception/_index.md new file mode 100644 index 0000000000..a7d99add6a --- /dev/null +++ b/french/java/com.aspose.font/encodingexception/_index.md @@ -0,0 +1,313 @@ +--- +title: "EncodingException" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente une exception d'encodage." +type: docs +weight: 30 +url: /fr/java/com.aspose.font/encodingexception/ +--- +**Inheritance:** +java.lang.Object, java.lang.Throwable, java.lang.Exception, java.lang.RuntimeException, java.lang.IllegalStateException, [com.aspose.font.FontException](../../com.aspose.font/fontexception) +``` +public class EncodingException extends FontException +``` + +Représente une exception d'encodage. L'exception peut être levée en cas de problème d'encodage/décodage du texte. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [EncodingException()](#EncodingException--) | Initialise un nouvel objet EncodingException. | +| [EncodingException(String message)](#EncodingException-java.lang.String-) | Initialise un nouvel objet EncodingException. | +| [EncodingException(String message, RuntimeException innerException)](#EncodingException-java.lang.String-java.lang.RuntimeException-) | Initialise un nouvel objet EncodingException. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [addSuppressed(Throwable arg0)](#addSuppressed-java.lang.Throwable-) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [fillInStackTrace()](#fillInStackTrace--) | | +| [getCause()](#getCause--) | | +| [getClass()](#getClass--) | | +| [getLocalizedMessage()](#getLocalizedMessage--) | | +| [getMessage()](#getMessage--) | | +| [getStackTrace()](#getStackTrace--) | | +| [getSuppressed()](#getSuppressed--) | | +| [hashCode()](#hashCode--) | | +| [initCause(Throwable arg0)](#initCause-java.lang.Throwable-) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [printStackTrace()](#printStackTrace--) | | +| [printStackTrace(PrintStream arg0)](#printStackTrace-java.io.PrintStream-) | | +| [printStackTrace(PrintWriter arg0)](#printStackTrace-java.io.PrintWriter-) | | +| [setStackTrace(StackTraceElement[] arg0)](#setStackTrace-java.lang.StackTraceElement---) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### EncodingException() {#EncodingException--} +``` +public EncodingException() +``` + + +Initialise un nouvel objet EncodingException. + +### EncodingException(String message) {#EncodingException-java.lang.String-} +``` +public EncodingException(String message) +``` + + +Initialise un nouvel objet EncodingException. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| message | java.lang.String | Un message qui décrit l'erreur. | + +### EncodingException(String message, RuntimeException innerException) {#EncodingException-java.lang.String-java.lang.RuntimeException-} +``` +public EncodingException(String message, RuntimeException innerException) +``` + + +Initialise un nouvel objet EncodingException. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| message | java.lang.String | Un message qui décrit l'erreur. | +| innerException | java.lang.RuntimeException | L'exception qui est la cause de l'exception actuelle. | + +### addSuppressed(Throwable arg0) {#addSuppressed-java.lang.Throwable-} +``` +public final synchronized void addSuppressed(Throwable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Throwable | | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### fillInStackTrace() {#fillInStackTrace--} +``` +public synchronized Throwable fillInStackTrace() +``` + + + + +**Returns:** +java.lang.Throwable +### getCause() {#getCause--} +``` +public synchronized Throwable getCause() +``` + + + + +**Returns:** +java.lang.Throwable +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getLocalizedMessage() {#getLocalizedMessage--} +``` +public String getLocalizedMessage() +``` + + + + +**Returns:** +java.lang.String +### getMessage() {#getMessage--} +``` +public String getMessage() +``` + + + + +**Returns:** +java.lang.String +### getStackTrace() {#getStackTrace--} +``` +public StackTraceElement[] getStackTrace() +``` + + + + +**Returns:** +java.lang.StackTraceElement[] +### getSuppressed() {#getSuppressed--} +``` +public final synchronized Throwable[] getSuppressed() +``` + + + + +**Returns:** +java.lang.Throwable[] +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### initCause(Throwable arg0) {#initCause-java.lang.Throwable-} +``` +public synchronized Throwable initCause(Throwable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Throwable | | + +**Returns:** +java.lang.Throwable +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### printStackTrace() {#printStackTrace--} +``` +public void printStackTrace() +``` + + + + +### printStackTrace(PrintStream arg0) {#printStackTrace-java.io.PrintStream-} +``` +public void printStackTrace(PrintStream arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.io.PrintStream | | + +### printStackTrace(PrintWriter arg0) {#printStackTrace-java.io.PrintWriter-} +``` +public void printStackTrace(PrintWriter arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.io.PrintWriter | | + +### setStackTrace(StackTraceElement[] arg0) {#setStackTrace-java.lang.StackTraceElement---} +``` +public void setStackTrace(StackTraceElement[] arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.StackTraceElement[] | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/filesystemstreamsource/_index.md b/french/java/com.aspose.font/filesystemstreamsource/_index.md new file mode 100644 index 0000000000..ffcc2cf01c --- /dev/null +++ b/french/java/com.aspose.font/filesystemstreamsource/_index.md @@ -0,0 +1,225 @@ +--- +title: "FileSystemStreamSource" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente une source de flux basée sur le système de fichiers." +type: docs +weight: 31 +url: /fr/java/com.aspose.font/filesystemstreamsource/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.font.StreamSource](../../com.aspose.font/streamsource) +``` +public class FileSystemStreamSource extends StreamSource +``` + +Représente une source de flux basée sur le système de fichiers. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [FileSystemStreamSource(String fileName)](#FileSystemStreamSource-java.lang.String-) | Initialise un nouvel objet FileSystemStreamSource. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [deepClone()](#deepClone--) | Clone l'objet FileSystemStreamSource. | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getFileName()](#getFileName--) | Obtient le nom du fichier. | +| [getFontStream()](#getFontStream--) | Renvoie le flux du fichier de police. | +| [getOffset()](#getOffset--) | Obtient le décalage à l'intérieur de la source. | +| [hashCode()](#hashCode--) | | +| [mustCloseAfterUse()](#mustCloseAfterUse--) | Les classes dérivées peuvent empêcher la fermeture du flux. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setFileName(String value)](#setFileName-java.lang.String-) | Définit le nom du fichier. | +| [setOffset(long value)](#setOffset-long-) | Définit le décalage à l'intérieur de la source. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### FileSystemStreamSource(String fileName) {#FileSystemStreamSource-java.lang.String-} +``` +public FileSystemStreamSource(String fileName) +``` + + +Initialise un nouvel objet FileSystemStreamSource. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fileName | java.lang.String | Nom du fichier. | + +### deepClone() {#deepClone--} +``` +public Object deepClone() +``` + + +Clone l'objet FileSystemStreamSource. + +**Returns:** +java.lang.Object - Copie de l'objet FileSystemStreamSource. +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getFileName() {#getFileName--} +``` +public String getFileName() +``` + + +Obtient le nom du fichier. + +**Returns:** +java.lang.String - Nom de fichier. +### getFontStream() {#getFontStream--} +``` +public InputStream getFontStream() +``` + + +Renvoie le flux du fichier de police. N'oubliez pas de fermer le flux après utilisation. + +**Returns:** +java.io.InputStream - Flux du fichier de police. +### getOffset() {#getOffset--} +``` +public long getOffset() +``` + + +Obtient le décalage à l'intérieur de la source. + +**Returns:** +long - Décalage à l'intérieur de la source. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### mustCloseAfterUse() {#mustCloseAfterUse--} +``` +public boolean mustCloseAfterUse() +``` + + +Les classes dérivées peuvent empêcher la fermeture du flux. Renvoie true si le flux source souhaite que le flux soit fermé après utilisation. Sinon renvoie false. + +**Returns:** +boolean - True si le flux source souhaite que le flux soit fermé après utilisation, sinon false. +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setFileName(String value) {#setFileName-java.lang.String-} +``` +public void setFileName(String value) +``` + + +Définit le nom du fichier. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | Nom du fichier. | + +### setOffset(long value) {#setOffset-long-} +``` +public void setOffset(long value) +``` + + +Définit le décalage à l'intérieur de la source. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | long | Décalage à l'intérieur de la source. | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/font/_index.md b/french/java/com.aspose.font/font/_index.md new file mode 100644 index 0000000000..55dc01fa7f --- /dev/null +++ b/french/java/com.aspose.font/font/_index.md @@ -0,0 +1,526 @@ +--- +title: "Police" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente la classe de base Font." +type: docs +weight: 32 +url: /fr/java/com.aspose.font/font/ +--- +**Inheritance:** +java.lang.Object + +**All Implemented Interfaces:** +[com.aspose.font.IFont](../../com.aspose.font/ifont), [com.aspose.font.IGlyphAccessor](../../com.aspose.font/iglyphaccessor), [com.aspose.font.IFontSaver](../../com.aspose.font/ifontsaver) +``` +public abstract class Font implements IFont, IGlyphAccessor, IFontSaver +``` + +Représente la classe de base Font. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [convert(FontType fontType)](#convert-com.aspose.font.FontType-) | Convertit la police en un autre format. | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getAllGlyphIds()](#getAllGlyphIds--) | Renvoie tous les identifiants de glyphes disponibles dans la police. | +| [getClass()](#getClass--) | | +| [getEncoding()](#getEncoding--) | Obtient l'encodage de la police. | +| [getFontDefinition()](#getFontDefinition--) | Obtient la définition de la police. | +| [getFontFamily()](#getFontFamily--) | Obtient la famille de la police. | +| [getFontName()](#getFontName--) | Obtient le nom de la face de la police. | +| [getFontNames()](#getFontNames--) | Obtient les noms de la police. | +| [getFontSaver()](#getFontSaver--) | Obtient la fonctionnalité d'enregistrement de la police. | +| [getFontStyle()](#getFontStyle--) | Obtient le style de la police. | +| [getFontType()](#getFontType--) | Obtient le type de la police. | +| [getGlyphAccessor()](#getGlyphAccessor--) | Accesseur de glyphes de la police. | +| [getGlyphById(GlyphId id)](#getGlyphById-com.aspose.font.GlyphId-) | Renvoie le glyphe par ID de glyphe. | +| [getGlyphIdType()](#getGlyphIdType--) | Spécification du type d'ID de glyphe. | +| [getGlyphsForText(String text)](#getGlyphsForText-java.lang.String-) | Obtient la représentation des glyphes pour le texte. | +| [getMetrics()](#getMetrics--) | Obtient les métriques de la police. | +| [getNumGlyphs()](#getNumGlyphs--) | Obtient le nombre de glyphes dans la police. | +| [getPostscriptNames()](#getPostscriptNames--) | Obtient les noms de police PostScript. | +| [getStyle()](#getStyle--) | Obtient le style de la police. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [open(FontDefinition fontDefinition)](#open-com.aspose.font.FontDefinition-) | Ouvre une police en utilisant l'objet FontDefinition. | +| [open(FontType fontType, byte[] fontData)](#open-com.aspose.font.FontType-byte---) | Ouvre une police en utilisant le type de police et le tableau d'octets des données de police. | +| [open(FontType fontType, StreamSource fontStreamSource)](#open-com.aspose.font.FontType-com.aspose.font.StreamSource-) | Ouvre une police en utilisant le type de police et la source du flux. | +| [open(FontType fontType, String fileName)](#open-com.aspose.font.FontType-java.lang.String-) | Ouvre une police en utilisant le type de police et le nom du fichier de police. | +| [save(OutputStream stream)](#save-java.io.OutputStream-) | Enregistre la police au format original. | +| [save(String fileName)](#save-java.lang.String-) | Enregistre la police au format original. | +| [saveToFormat(OutputStream stream, FontSavingFormats outFormat)](#saveToFormat-java.io.OutputStream-com.aspose.font.FontSavingFormats-) | Enregistre la police au format spécifié. | +| [setFontFamily(String value)](#setFontFamily-java.lang.String-) | Définit la famille de la police. | +| [setFontName(String value)](#setFontName-java.lang.String-) | Définit le nom de la face de la police. | +| [setStyle(String value)](#setStyle-java.lang.String-) | Définit le style de la police. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### convert(FontType fontType) {#convert-com.aspose.font.FontType-} +``` +public abstract Font convert(FontType fontType) +``` + + +Convertit la police en un autre format. + +-------------------- + +> ``` +> Note: TTF Font type is now supported only. +> ``` + +fontType Type de format de police dans lequel convertir. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontType | [FontType](../../com.aspose.font/fonttype) | | + +**Returns:** +[Font](../../com.aspose.font/font) - Font converted into new format. +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getAllGlyphIds() {#getAllGlyphIds--} +``` +public abstract GlyphId[] getAllGlyphIds() +``` + + +Renvoie tous les identifiants de glyphes disponibles dans la police. Un identifiant de glyphe est un nombre unique pour un glyphe, dépendant du type de police. Par exemple : l'identifiant de Type1 est un nom de glyphe, instance de la classe ( GlyphStringId ). L'identifiant de TTF est un indice entier, instance de la classe ( GlyphInt32Id ). + +**Returns:** +com.aspose.font.GlyphId[] - Identifiants de glyphes. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getEncoding() {#getEncoding--} +``` +public abstract IFontEncoding getEncoding() +``` + + +Obtient l'encodage de la police. + +**Returns:** +[IFontEncoding](../../com.aspose.font/ifontencoding) - Font encoding. +### getFontDefinition() {#getFontDefinition--} +``` +public abstract FontDefinition getFontDefinition() +``` + + +Obtient la définition de la police. + +**Returns:** +[FontDefinition](../../com.aspose.font/fontdefinition) - Font definition. +### getFontFamily() {#getFontFamily--} +``` +public abstract String getFontFamily() +``` + + +Obtient la famille de la police. + +**Returns:** +java.lang.String - Famille de police. +### getFontName() {#getFontName--} +``` +public abstract String getFontName() +``` + + +Obtient le nom de la face de la police. + +**Returns:** +java.lang.String - Nom de la face de police. +### getFontNames() {#getFontNames--} +``` +public abstract MultiLanguageString getFontNames() +``` + + +Obtient les noms de la police. + +**Returns:** +[MultiLanguageString](../../com.aspose.font/multilanguagestring) - Font names. +### getFontSaver() {#getFontSaver--} +``` +public IFontSaver getFontSaver() +``` + + +Obtient la fonctionnalité d'enregistrement de la police. + +**Returns:** +[IFontSaver](../../com.aspose.font/ifontsaver) - Font save functionality. +### getFontStyle() {#getFontStyle--} +``` +public abstract int getFontStyle() +``` + + +Obtient le style de la police. Il s'agit d'une valeur calculée et représentée dans un type généralisé. + +**Returns:** +int - Style de police. Généralement, une combinaison de valeurs de drapeaux constants de la classe FontStyle ou 0. +### getFontType() {#getFontType--} +``` +public abstract FontType getFontType() +``` + + +Obtient le type de la police. + +-------------------- + +> ``` +> Type1, TrueType etc. +> ``` + +**Returns:** +[FontType](../../com.aspose.font/fonttype) - Font type. +### getGlyphAccessor() {#getGlyphAccessor--} +``` +public IGlyphAccessor getGlyphAccessor() +``` + + +Accesseur de glyphes de police. Récupère les glyphes et les identifiants de glyphes. + +**Returns:** +[IGlyphAccessor](../../com.aspose.font/iglyphaccessor) - Font glyph accessor. +### getGlyphById(GlyphId id) {#getGlyphById-com.aspose.font.GlyphId-} +``` +public abstract Glyph getGlyphById(GlyphId id) +``` + + +Renvoie le glyphe par son identifiant. L'identifiant de glyphe est un nombre unique pour un glyphe, dépendant du type de police. GlyphId - objet dérivé. Par exemple : l'identifiant de Type1 est un nom de glyphe, instance de la classe ( GlyphStringId ). L'identifiant de TTF est un indice entier, instance de la classe ( GlyphInt32Id ). + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| id | [GlyphId](../../com.aspose.font/glyphid) | Identifiant de glyphe. | + +**Returns:** +[Glyph](../../com.aspose.font/glyph) - Glyph. +### getGlyphIdType() {#getGlyphIdType--} +``` +public abstract GlyphIdType getGlyphIdType() +``` + + +Spécification du type d'identifiant de glyphe. Pour les consommateurs qui ont besoin de connaître le vrai type de 'bytes[]'. + +**Returns:** +[GlyphIdType](../../com.aspose.font/glyphidtype) - Id type specification +### getGlyphsForText(String text) {#getGlyphsForText-java.lang.String-} +``` +public GlyphId[] getGlyphsForText(String text) +``` + + +Obtient la représentation des glyphes pour le texte. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| text | java.lang.String | Texte d'entrée. | + +**Returns:** +com.aspose.font.GlyphId[] - tableau GlyphId. +### getMetrics() {#getMetrics--} +``` +public abstract IFontMetrics getMetrics() +``` + + +Obtient les métriques de la police. + +**Returns:** +[IFontMetrics](../../com.aspose.font/ifontmetrics) - Font metrics. +### getNumGlyphs() {#getNumGlyphs--} +``` +public abstract int getNumGlyphs() +``` + + +Obtient le nombre de glyphes dans la police. + +**Returns:** +int - Nombre de glyphes dans la police. +### getPostscriptNames() {#getPostscriptNames--} +``` +public abstract MultiLanguageString getPostscriptNames() +``` + + +Obtient les noms de police PostScript. + +**Returns:** +[MultiLanguageString](../../com.aspose.font/multilanguagestring) - Postscript font names. +### getStyle() {#getStyle--} +``` +public abstract String getStyle() +``` + + +Obtient le style de la police. Il s'agit d'une valeur de chaîne brute fournie par le fichier de police. + +**Returns:** +java.lang.String - Style de police. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### open(FontDefinition fontDefinition) {#open-com.aspose.font.FontDefinition-} +``` +public static Font open(FontDefinition fontDefinition) +``` + + +Ouvre une police en utilisant l'objet FontDefinition. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontDefinition | [FontDefinition](../../com.aspose.font/fontdefinition) | Objet de définition de police. | + +**Returns:** +[Font](../../com.aspose.font/font) - Font loaded. +### open(FontType fontType, byte[] fontData) {#open-com.aspose.font.FontType-byte---} +``` +public static Font open(FontType fontType, byte[] fontData) +``` + + +Ouvre une police en utilisant le type de police et le tableau d'octets des données de police. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontType | [FontType](../../com.aspose.font/fonttype) | Type de police. | +| fontData | byte[] | Tableau d'octets pour charger la police. | + +**Returns:** +[Font](../../com.aspose.font/font) - Font loaded. +### open(FontType fontType, StreamSource fontStreamSource) {#open-com.aspose.font.FontType-com.aspose.font.StreamSource-} +``` +public static Font open(FontType fontType, StreamSource fontStreamSource) +``` + + +Ouvre une police en utilisant le type de police et la source du flux. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontType | [FontType](../../com.aspose.font/fonttype) | Type de police. | +| fontStreamSource | [StreamSource](../../com.aspose.font/streamsource) | Source de flux pour la police. | + +**Returns:** +[Font](../../com.aspose.font/font) - Font loaded. +### open(FontType fontType, String fileName) {#open-com.aspose.font.FontType-java.lang.String-} +``` +public static Font open(FontType fontType, String fileName) +``` + + +Ouvre une police en utilisant le type de police et le nom du fichier de police. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontType | [FontType](../../com.aspose.font/fonttype) | Type de police. | +| fileName | java.lang.String | Nom du fichier de police. | + +**Returns:** +[Font](../../com.aspose.font/font) - Font loaded. +### save(OutputStream stream) {#save-java.io.OutputStream-} +``` +public void save(OutputStream stream) +``` + + +Enregistre la police au format original. + +-------------------- + +> ``` +> Note: following Font types are supported for saving: +> New TTF fonts; +> TTF Font subsets; +> CFF Font subsets; +> Type1 Font subsets. +> ``` + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| flux | java.io.OutputStream | Flux pour enregistrer la police. | + +### save(String fileName) {#save-java.lang.String-} +``` +public void save(String fileName) +``` + + +Enregistre la police au format original. + +-------------------- + +> ``` +> Note: following Font types are supported for saving: +> New TTF fonts; +> TTF Font subsets; +> CFF Font subsets; +> Type1 Font subsets. +> ``` + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fileName | java.lang.String | Fichier pour enregistrer la police. | + +### saveToFormat(OutputStream stream, FontSavingFormats outFormat) {#saveToFormat-java.io.OutputStream-com.aspose.font.FontSavingFormats-} +``` +public void saveToFormat(OutputStream stream, FontSavingFormats outFormat) +``` + + +Enregistre la police au format spécifié. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| flux | java.io.OutputStream | flux pour enregistrer la police | +| outFormat | [FontSavingFormats](../../com.aspose.font/fontsavingformats) | format souhaité | + +### setFontFamily(String value) {#setFontFamily-java.lang.String-} +``` +public abstract void setFontFamily(String value) +``` + + +Définit la famille de la police. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | Nouvelle famille de police. | + +### setFontName(String value) {#setFontName-java.lang.String-} +``` +public abstract void setFontName(String value) +``` + + +Définit le nom de la face de la police. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | Nouveau nom de face de police. | + +### setStyle(String value) {#setStyle-java.lang.String-} +``` +public abstract void setStyle(String value) +``` + + +Définit le style de police. Il s'agit d'une valeur de chaîne brute fournie par le fichier de police. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | Nouveau style de police. | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/fontagrumentexception/_index.md b/french/java/com.aspose.font/fontagrumentexception/_index.md new file mode 100644 index 0000000000..1ff7a7de16 --- /dev/null +++ b/french/java/com.aspose.font/fontagrumentexception/_index.md @@ -0,0 +1,313 @@ +--- +title: "FontAgrumentException" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente une exception d'argument Font." +type: docs +weight: 33 +url: /fr/java/com.aspose.font/fontagrumentexception/ +--- +**Inheritance:** +java.lang.Object, java.lang.Throwable, java.lang.Exception, java.lang.RuntimeException, java.lang.IllegalStateException, [com.aspose.font.FontException](../../com.aspose.font/fontexception) +``` +public class FontAgrumentException extends FontException +``` + +Représente une exception d'argument de police. L'exception peut être levée en cas d'utilisations d'arguments incorrectes. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [FontAgrumentException()](#FontAgrumentException--) | Initialise un nouvel objet FontAgrumentException. | +| [FontAgrumentException(String message)](#FontAgrumentException-java.lang.String-) | Initialise un nouvel objet FontAgrumentException. | +| [FontAgrumentException(String message, RuntimeException innerException)](#FontAgrumentException-java.lang.String-java.lang.RuntimeException-) | Initialise un nouvel objet FontAgrumentException. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [addSuppressed(Throwable arg0)](#addSuppressed-java.lang.Throwable-) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [fillInStackTrace()](#fillInStackTrace--) | | +| [getCause()](#getCause--) | | +| [getClass()](#getClass--) | | +| [getLocalizedMessage()](#getLocalizedMessage--) | | +| [getMessage()](#getMessage--) | | +| [getStackTrace()](#getStackTrace--) | | +| [getSuppressed()](#getSuppressed--) | | +| [hashCode()](#hashCode--) | | +| [initCause(Throwable arg0)](#initCause-java.lang.Throwable-) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [printStackTrace()](#printStackTrace--) | | +| [printStackTrace(PrintStream arg0)](#printStackTrace-java.io.PrintStream-) | | +| [printStackTrace(PrintWriter arg0)](#printStackTrace-java.io.PrintWriter-) | | +| [setStackTrace(StackTraceElement[] arg0)](#setStackTrace-java.lang.StackTraceElement---) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### FontAgrumentException() {#FontAgrumentException--} +``` +public FontAgrumentException() +``` + + +Initialise un nouvel objet FontAgrumentException. + +### FontAgrumentException(String message) {#FontAgrumentException-java.lang.String-} +``` +public FontAgrumentException(String message) +``` + + +Initialise un nouvel objet FontAgrumentException. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| message | java.lang.String | Un message qui décrit l'erreur. | + +### FontAgrumentException(String message, RuntimeException innerException) {#FontAgrumentException-java.lang.String-java.lang.RuntimeException-} +``` +public FontAgrumentException(String message, RuntimeException innerException) +``` + + +Initialise un nouvel objet FontAgrumentException. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| message | java.lang.String | Un message qui décrit l'erreur. | +| innerException | java.lang.RuntimeException | L'exception qui est la cause de l'exception actuelle. | + +### addSuppressed(Throwable arg0) {#addSuppressed-java.lang.Throwable-} +``` +public final synchronized void addSuppressed(Throwable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Throwable | | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### fillInStackTrace() {#fillInStackTrace--} +``` +public synchronized Throwable fillInStackTrace() +``` + + + + +**Returns:** +java.lang.Throwable +### getCause() {#getCause--} +``` +public synchronized Throwable getCause() +``` + + + + +**Returns:** +java.lang.Throwable +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getLocalizedMessage() {#getLocalizedMessage--} +``` +public String getLocalizedMessage() +``` + + + + +**Returns:** +java.lang.String +### getMessage() {#getMessage--} +``` +public String getMessage() +``` + + + + +**Returns:** +java.lang.String +### getStackTrace() {#getStackTrace--} +``` +public StackTraceElement[] getStackTrace() +``` + + + + +**Returns:** +java.lang.StackTraceElement[] +### getSuppressed() {#getSuppressed--} +``` +public final synchronized Throwable[] getSuppressed() +``` + + + + +**Returns:** +java.lang.Throwable[] +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### initCause(Throwable arg0) {#initCause-java.lang.Throwable-} +``` +public synchronized Throwable initCause(Throwable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Throwable | | + +**Returns:** +java.lang.Throwable +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### printStackTrace() {#printStackTrace--} +``` +public void printStackTrace() +``` + + + + +### printStackTrace(PrintStream arg0) {#printStackTrace-java.io.PrintStream-} +``` +public void printStackTrace(PrintStream arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.io.PrintStream | | + +### printStackTrace(PrintWriter arg0) {#printStackTrace-java.io.PrintWriter-} +``` +public void printStackTrace(PrintWriter arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.io.PrintWriter | | + +### setStackTrace(StackTraceElement[] arg0) {#setStackTrace-java.lang.StackTraceElement---} +``` +public void setStackTrace(StackTraceElement[] arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.StackTraceElement[] | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/fontbbox/_index.md b/french/java/com.aspose.font/fontbbox/_index.md new file mode 100644 index 0000000000..c8d55d947b --- /dev/null +++ b/french/java/com.aspose.font/fontbbox/_index.md @@ -0,0 +1,168 @@ +--- +title: "FontBBox" +second_title: "Référence API d'Aspose.Font pour Java" +description: "représente la boîte englobante de la police." +type: docs +weight: 34 +url: /fr/java/com.aspose.font/fontbbox/ +--- +**Inheritance:** +java.lang.Object +``` +public class FontBBox +``` + +représente la boîte englobante de la police. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getXMax()](#getXMax--) | Obtient la valeur XMax. | +| [getXMin()](#getXMin--) | Obtient la valeur XMin. | +| [getYMax()](#getYMax--) | Obtient la valeur YMax. | +| [getYMin()](#getYMin--) | Obtient la valeur YMin. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getXMax() {#getXMax--} +``` +public double getXMax() +``` + + +Obtient la valeur XMax. + +**Returns:** +double - valeur XMax. +### getXMin() {#getXMin--} +``` +public double getXMin() +``` + + +Obtient la valeur XMin. + +**Returns:** +double - valeur XMin. +### getYMax() {#getYMax--} +``` +public double getYMax() +``` + + +Obtient la valeur YMax. + +**Returns:** +double - valeur YMax. +### getYMin() {#getYMin--} +``` +public double getYMin() +``` + + +Obtient la valeur YMin. + +**Returns:** +double - valeur YMin. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/fontcharactersmerger/_index.md b/french/java/com.aspose.font/fontcharactersmerger/_index.md new file mode 100644 index 0000000000..50ba1f9558 --- /dev/null +++ b/french/java/com.aspose.font/fontcharactersmerger/_index.md @@ -0,0 +1,200 @@ +--- +title: "FontCharactersMerger" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Déclare la fonctionnalité de fusionner des polices de différents types." +type: docs +weight: 35 +url: /fr/java/com.aspose.font/fontcharactersmerger/ +--- +**Inheritance:** +java.lang.Object +``` +public abstract class FontCharactersMerger +``` + +Déclare la fonctionnalité de fusionner des polices de différents types. Une paire de polices est nécessaire pour l'opération de fusion. Une police de cette paire est considérée comme principale. Cela signifie que de nombreuses caractéristiques liées à la police fusionnée finale, telles que les métriques, la structure d'encodage et d'autres, seront prises de cette police principale. L'autre police de la paire (secondaire) fournit uniquement les glyphes pour la police fusionnée finale. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getPrimaryFont()](#getPrimaryFont--) | Obtient la police principale. | +| [getSecondaryFont()](#getSecondaryFont--) | Obtient la police secondaire. | +| [hashCode()](#hashCode--) | | +| [mergeFonts(GlyphId[] primaryFontGlyphs, GlyphId[] secondaryFontGlyphs, String newFontName)](#mergeFonts-com.aspose.font.GlyphId---com.aspose.font.GlyphId---java.lang.String-) | Fusionne les polices en fonction des listes de glyphes fournies. | +| [mergeFonts(int[] primaryFontCharCodes, int[] secondaryFontCharCodes, String newFontName)](#mergeFonts-int---int---java.lang.String-) | Fusionne les polices en fonction des listes de codes de caractères fournies. | +| [mergeFonts(Map primaryFontDict, Map secondaryFontDict, String newFontName)](#mergeFonts-java.util.Map-java.lang.Integer-com.aspose.font.GlyphId--java.util.Map-java.lang.Integer-com.aspose.font.GlyphId--java.lang.String-) | Cette version de la méthode est conçue pour les cas où vous souhaitez définir explicitement les codes de caractères pour les glyphes dans la police résultante. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getPrimaryFont() {#getPrimaryFont--} +``` +public abstract Font getPrimaryFont() +``` + + +Obtient la police principale. + +**Returns:** +[Font](../../com.aspose.font/font) - The primary font. +### getSecondaryFont() {#getSecondaryFont--} +``` +public abstract Font getSecondaryFont() +``` + + +Obtient la police secondaire. + +**Returns:** +[Font](../../com.aspose.font/font) - The secondary font. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### mergeFonts(GlyphId[] primaryFontGlyphs, GlyphId[] secondaryFontGlyphs, String newFontName) {#mergeFonts-com.aspose.font.GlyphId---com.aspose.font.GlyphId---java.lang.String-} +``` +public abstract Font mergeFonts(GlyphId[] primaryFontGlyphs, GlyphId[] secondaryFontGlyphs, String newFontName) +``` + + +Fusionne les polices en fonction des listes de glyphes fournies. Recherche un code de caractère pour chaque glyphe fourni et ajoute le code de caractère trouvé avec le glyphe correspondant dans la nouvelle police résultante. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| primaryFontGlyphs | [GlyphId\[\]](../../com.aspose.font/glyphid) | Liste des glyphes à prendre de la police principale. | +| secondaryFontGlyphs | [GlyphId\[\]](../../com.aspose.font/glyphid) | Liste des glyphes à prendre de la police secondaire. | +| newFontName | java.lang.String | Nom souhaité pour la police résultante. | + +**Returns:** +[Font](../../com.aspose.font/font) - Merged font +### mergeFonts(int[] primaryFontCharCodes, int[] secondaryFontCharCodes, String newFontName) {#mergeFonts-int---int---java.lang.String-} +``` +public abstract Font mergeFonts(int[] primaryFontCharCodes, int[] secondaryFontCharCodes, String newFontName) +``` + + +Fusionne les polices en fonction des listes de codes de caractères fournies. Pour créer la police résultante souhaitée, il suffit de fournir les codes de symboles des polices d'origine que vous voulez inclure dans la police résultante. Les glyphes liés aux codes fournis seront trouvés automatiquement. Par exemple, si vous souhaitez inclure les glyphes liés aux lettres A et B de la première police et les glyphes liés aux lettres C et D de la deuxième police, appelez simplement cette méthode ainsi : `mergeFonts(new uint[] { 'A', 'B' }, new uint[] { 'C', 'D' }, "NewFont")` + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| primaryFontCharCodes | int[] | Codes à prendre de la police principale. | +| secondaryFontCharCodes | int[] | Codes à prendre de la police secondaire. | +| newFontName | java.lang.String | Nom souhaité pour la police résultante. | + +**Returns:** +[Font](../../com.aspose.font/font) - Merged font. +### mergeFonts(Map primaryFontDict, Map secondaryFontDict, String newFontName) {#mergeFonts-java.util.Map-java.lang.Integer-com.aspose.font.GlyphId--java.util.Map-java.lang.Integer-com.aspose.font.GlyphId--java.lang.String-} +``` +public abstract Font mergeFonts(Map primaryFontDict, Map secondaryFontDict, String newFontName) +``` + + +Cette version de la méthode est conçue pour les cas où vous souhaitez définir explicitement les codes de caractères pour les glyphes dans la police résultante. Il n'est pas obligatoire que le code du glyphe que vous avez fourni soit présent dans la police d'origine. Le but du code fourni est qu'il soit associé à l'identifiant de glyphe correspondant dans la police résultante. Ainsi, la règle pour traiter chaque paire transmise via le paramètre dictionnaire [code, identifiant de glyphe] est que seul l'identifiant de glyphe sera pris de la police d'origine, puis il sera lié au code correspondant dans la police résultante. Cela peut être utile lorsque certains codes de la première police entrent en conflit avec les mêmes codes de la deuxième police. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| primaryFontDict | java.util.Map | Dictionnaire contenant des paires [code de symbole, identifiant de glyphe] provenant de la police principale. | +| secondaryFontDict | java.util.Map | Dictionnaire contenant des paires [code de symbole, identifiant de glyphe] provenant de la police secondaire. | +| newFontName | java.lang.String | Nom souhaité pour la police résultante. | + +**Returns:** +[Font](../../com.aspose.font/font) - Merged font. +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/fontconversionexception/_index.md b/french/java/com.aspose.font/fontconversionexception/_index.md new file mode 100644 index 0000000000..18ac7ded84 --- /dev/null +++ b/french/java/com.aspose.font/fontconversionexception/_index.md @@ -0,0 +1,313 @@ +--- +title: "FontConversionException" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente une exception de conversion Font." +type: docs +weight: 36 +url: /fr/java/com.aspose.font/fontconversionexception/ +--- +**Inheritance:** +java.lang.Object, java.lang.Throwable, java.lang.Exception, java.lang.RuntimeException, java.lang.IllegalStateException, [com.aspose.font.FontException](../../com.aspose.font/fontexception) +``` +public class FontConversionException extends FontException +``` + +Représente une exception de conversion de police. L'exception peut être levée en cas d'erreurs lors du processus de conversion de police. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [FontConversionException()](#FontConversionException--) | Initialise un nouvel FontConversionException objet. | +| [FontConversionException(String message)](#FontConversionException-java.lang.String-) | Initialise un nouvel FontConversionException objet. | +| [FontConversionException(String message, RuntimeException innerException)](#FontConversionException-java.lang.String-java.lang.RuntimeException-) | Initialise un nouvel FontConversionException objet. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [addSuppressed(Throwable arg0)](#addSuppressed-java.lang.Throwable-) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [fillInStackTrace()](#fillInStackTrace--) | | +| [getCause()](#getCause--) | | +| [getClass()](#getClass--) | | +| [getLocalizedMessage()](#getLocalizedMessage--) | | +| [getMessage()](#getMessage--) | | +| [getStackTrace()](#getStackTrace--) | | +| [getSuppressed()](#getSuppressed--) | | +| [hashCode()](#hashCode--) | | +| [initCause(Throwable arg0)](#initCause-java.lang.Throwable-) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [printStackTrace()](#printStackTrace--) | | +| [printStackTrace(PrintStream arg0)](#printStackTrace-java.io.PrintStream-) | | +| [printStackTrace(PrintWriter arg0)](#printStackTrace-java.io.PrintWriter-) | | +| [setStackTrace(StackTraceElement[] arg0)](#setStackTrace-java.lang.StackTraceElement---) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### FontConversionException() {#FontConversionException--} +``` +public FontConversionException() +``` + + +Initialise un nouvel FontConversionException objet. + +### FontConversionException(String message) {#FontConversionException-java.lang.String-} +``` +public FontConversionException(String message) +``` + + +Initialise un nouvel FontConversionException objet. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| message | java.lang.String | Un message qui décrit l'erreur. | + +### FontConversionException(String message, RuntimeException innerException) {#FontConversionException-java.lang.String-java.lang.RuntimeException-} +``` +public FontConversionException(String message, RuntimeException innerException) +``` + + +Initialise un nouvel FontConversionException objet. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| message | java.lang.String | Un message qui décrit l'erreur. | +| innerException | java.lang.RuntimeException | L'exception qui est la cause de l'exception actuelle. | + +### addSuppressed(Throwable arg0) {#addSuppressed-java.lang.Throwable-} +``` +public final synchronized void addSuppressed(Throwable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Throwable | | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### fillInStackTrace() {#fillInStackTrace--} +``` +public synchronized Throwable fillInStackTrace() +``` + + + + +**Returns:** +java.lang.Throwable +### getCause() {#getCause--} +``` +public synchronized Throwable getCause() +``` + + + + +**Returns:** +java.lang.Throwable +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getLocalizedMessage() {#getLocalizedMessage--} +``` +public String getLocalizedMessage() +``` + + + + +**Returns:** +java.lang.String +### getMessage() {#getMessage--} +``` +public String getMessage() +``` + + + + +**Returns:** +java.lang.String +### getStackTrace() {#getStackTrace--} +``` +public StackTraceElement[] getStackTrace() +``` + + + + +**Returns:** +java.lang.StackTraceElement[] +### getSuppressed() {#getSuppressed--} +``` +public final synchronized Throwable[] getSuppressed() +``` + + + + +**Returns:** +java.lang.Throwable[] +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### initCause(Throwable arg0) {#initCause-java.lang.Throwable-} +``` +public synchronized Throwable initCause(Throwable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Throwable | | + +**Returns:** +java.lang.Throwable +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### printStackTrace() {#printStackTrace--} +``` +public void printStackTrace() +``` + + + + +### printStackTrace(PrintStream arg0) {#printStackTrace-java.io.PrintStream-} +``` +public void printStackTrace(PrintStream arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.io.PrintStream | | + +### printStackTrace(PrintWriter arg0) {#printStackTrace-java.io.PrintWriter-} +``` +public void printStackTrace(PrintWriter arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.io.PrintWriter | | + +### setStackTrace(StackTraceElement[] arg0) {#setStackTrace-java.lang.StackTraceElement---} +``` +public void setStackTrace(StackTraceElement[] arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.StackTraceElement[] | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/fontcreationexception/_index.md b/french/java/com.aspose.font/fontcreationexception/_index.md new file mode 100644 index 0000000000..7de3f6ea55 --- /dev/null +++ b/french/java/com.aspose.font/fontcreationexception/_index.md @@ -0,0 +1,313 @@ +--- +title: "FontCreationException" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente une exception de création Font." +type: docs +weight: 37 +url: /fr/java/com.aspose.font/fontcreationexception/ +--- +**Inheritance:** +java.lang.Object, java.lang.Throwable, java.lang.Exception, java.lang.RuntimeException, java.lang.IllegalStateException, [com.aspose.font.FontException](../../com.aspose.font/fontexception) +``` +public class FontCreationException extends FontException +``` + +Représente une exception de création de Font. L'exception peut être levée en cas d'erreurs lors du processus de création de Font. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [FontCreationException()](#FontCreationException--) | Initialise un nouvel objet FontCreationException. | +| [FontCreationException(String message)](#FontCreationException-java.lang.String-) | Initialise un nouvel objet FontCreationException. | +| [FontCreationException(String message, RuntimeException innerException)](#FontCreationException-java.lang.String-java.lang.RuntimeException-) | Initialise un nouvel objet FontCreationException. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [addSuppressed(Throwable arg0)](#addSuppressed-java.lang.Throwable-) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [fillInStackTrace()](#fillInStackTrace--) | | +| [getCause()](#getCause--) | | +| [getClass()](#getClass--) | | +| [getLocalizedMessage()](#getLocalizedMessage--) | | +| [getMessage()](#getMessage--) | | +| [getStackTrace()](#getStackTrace--) | | +| [getSuppressed()](#getSuppressed--) | | +| [hashCode()](#hashCode--) | | +| [initCause(Throwable arg0)](#initCause-java.lang.Throwable-) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [printStackTrace()](#printStackTrace--) | | +| [printStackTrace(PrintStream arg0)](#printStackTrace-java.io.PrintStream-) | | +| [printStackTrace(PrintWriter arg0)](#printStackTrace-java.io.PrintWriter-) | | +| [setStackTrace(StackTraceElement[] arg0)](#setStackTrace-java.lang.StackTraceElement---) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### FontCreationException() {#FontCreationException--} +``` +public FontCreationException() +``` + + +Initialise un nouvel objet FontCreationException. + +### FontCreationException(String message) {#FontCreationException-java.lang.String-} +``` +public FontCreationException(String message) +``` + + +Initialise un nouvel objet FontCreationException. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| message | java.lang.String | Un message qui décrit l'erreur. | + +### FontCreationException(String message, RuntimeException innerException) {#FontCreationException-java.lang.String-java.lang.RuntimeException-} +``` +public FontCreationException(String message, RuntimeException innerException) +``` + + +Initialise un nouvel objet FontCreationException. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| message | java.lang.String | Un message qui décrit l'erreur. | +| innerException | java.lang.RuntimeException | L'exception qui est la cause de l'exception actuelle. | + +### addSuppressed(Throwable arg0) {#addSuppressed-java.lang.Throwable-} +``` +public final synchronized void addSuppressed(Throwable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Throwable | | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### fillInStackTrace() {#fillInStackTrace--} +``` +public synchronized Throwable fillInStackTrace() +``` + + + + +**Returns:** +java.lang.Throwable +### getCause() {#getCause--} +``` +public synchronized Throwable getCause() +``` + + + + +**Returns:** +java.lang.Throwable +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getLocalizedMessage() {#getLocalizedMessage--} +``` +public String getLocalizedMessage() +``` + + + + +**Returns:** +java.lang.String +### getMessage() {#getMessage--} +``` +public String getMessage() +``` + + + + +**Returns:** +java.lang.String +### getStackTrace() {#getStackTrace--} +``` +public StackTraceElement[] getStackTrace() +``` + + + + +**Returns:** +java.lang.StackTraceElement[] +### getSuppressed() {#getSuppressed--} +``` +public final synchronized Throwable[] getSuppressed() +``` + + + + +**Returns:** +java.lang.Throwable[] +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### initCause(Throwable arg0) {#initCause-java.lang.Throwable-} +``` +public synchronized Throwable initCause(Throwable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Throwable | | + +**Returns:** +java.lang.Throwable +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### printStackTrace() {#printStackTrace--} +``` +public void printStackTrace() +``` + + + + +### printStackTrace(PrintStream arg0) {#printStackTrace-java.io.PrintStream-} +``` +public void printStackTrace(PrintStream arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.io.PrintStream | | + +### printStackTrace(PrintWriter arg0) {#printStackTrace-java.io.PrintWriter-} +``` +public void printStackTrace(PrintWriter arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.io.PrintWriter | | + +### setStackTrace(StackTraceElement[] arg0) {#setStackTrace-java.lang.StackTraceElement---} +``` +public void setStackTrace(StackTraceElement[] arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.StackTraceElement[] | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/fontdefinition/_index.md b/french/java/com.aspose.font/fontdefinition/_index.md new file mode 100644 index 0000000000..88f853b707 --- /dev/null +++ b/french/java/com.aspose.font/fontdefinition/_index.md @@ -0,0 +1,390 @@ +--- +title: "FontDefinition" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente la définition du jeu de fichiers Font." +type: docs +weight: 38 +url: /fr/java/com.aspose.font/fontdefinition/ +--- +**Inheritance:** +java.lang.Object +``` +public class FontDefinition +``` + +Représente la définition d'un ensemble de fichiers de police. Cette classe contient des champs qui ne sont pas liés aux données internes de la police. Ces champs décrivent le placement de la police et d'autres données nécessaires pour charger la police depuis une source de police (fichier, mémoire, etc.). +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [FontDefinition(FontType fontType, String fileExtension, StreamSource streamSource)](#FontDefinition-com.aspose.font.FontType-java.lang.String-com.aspose.font.StreamSource-) | Crée une définition de police à fichier unique. | +| [FontDefinition(FontType fontType, StreamSource streamSource)](#FontDefinition-com.aspose.font.FontType-com.aspose.font.StreamSource-) | Crée une définition de police à fichier unique. | +| [FontDefinition(String fontName, FontType fontType, String fileExtension, StreamSource streamSource)](#FontDefinition-java.lang.String-com.aspose.font.FontType-java.lang.String-com.aspose.font.StreamSource-) | Crée une définition de police à fichier unique. | +| [FontDefinition(FontType fontType, FontFileDefinition fileDefinition)](#FontDefinition-com.aspose.font.FontType-com.aspose.font.FontFileDefinition-) | Crée une définition de police à fichier unique. | +| [FontDefinition(String fontName, FontType fontType, FontFileDefinition fileDefinition)](#FontDefinition-java.lang.String-com.aspose.font.FontType-com.aspose.font.FontFileDefinition-) | Crée une définition de police à fichier unique. | +| [FontDefinition(String fontName, String postscriptName, FontType fontType, FontFileDefinition fileDefinition)](#FontDefinition-java.lang.String-java.lang.String-com.aspose.font.FontType-com.aspose.font.FontFileDefinition-) | Crée une définition de police à fichier unique. | +| [FontDefinition(FontType fontType, FontFileDefinition[] fileDefinitions)](#FontDefinition-com.aspose.font.FontType-com.aspose.font.FontFileDefinition---) | Crée une définition de police à fichiers multiples. | +| [FontDefinition(String fontName, String postscriptName, FontType fontType, FontFileDefinition[] fileDefinitions)](#FontDefinition-java.lang.String-java.lang.String-com.aspose.font.FontType-com.aspose.font.FontFileDefinition---) | Crée une définition de police à fichiers multiples. | +| [FontDefinition(MultiLanguageString fontNames, MultiLanguageString postscriptNames, FontType fontType, FontFileDefinition fileDefinition)](#FontDefinition-com.aspose.font.MultiLanguageString-com.aspose.font.MultiLanguageString-com.aspose.font.FontType-com.aspose.font.FontFileDefinition-) | Crée une définition de police à fichiers multiples. | +| [FontDefinition(MultiLanguageString fontNames, MultiLanguageString postscriptNames, FontType fontType, FontFileDefinition[] fileDefinitions)](#FontDefinition-com.aspose.font.MultiLanguageString-com.aspose.font.MultiLanguageString-com.aspose.font.FontType-com.aspose.font.FontFileDefinition---) | Crée une définition de police à fichiers multiples. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getFileDefinitions()](#getFileDefinitions--) | Obtient la collection des définitions de fichiers. | +| [getFontName()](#getFontName--) | Renvoie le nom de la police. | +| [getFontNames()](#getFontNames--) | Obtient les noms de police sous forme de MultiLanguageString. | +| [getFontType()](#getFontType--) | Obtient le type de la police. | +| [getPostscriptName()](#getPostscriptName--) | Obtient le nom de la police Postscript. | +| [getPostscriptNames()](#getPostscriptNames--) | Obtient les noms de police Postscript sous forme de MultiLanguageString. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [open(StreamSource source, FontType fontType)](#open-com.aspose.font.StreamSource-com.aspose.font.FontType-) | Renvoie FontDefinition pour la source du flux de police et le type de police. | +| [open(String fileName, FontType fontType)](#open-java.lang.String-com.aspose.font.FontType-) | Renvoie FontDefinition pour le fichier de police et le type de police. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### FontDefinition(FontType fontType, String fileExtension, StreamSource streamSource) {#FontDefinition-com.aspose.font.FontType-java.lang.String-com.aspose.font.StreamSource-} +``` +public FontDefinition(FontType fontType, String fileExtension, StreamSource streamSource) +``` + + +Crée une définition de police à fichier unique. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontType | [FontType](../../com.aspose.font/fonttype) | Type de police. | +| fileExtension | java.lang.String | Extension du fichier de police. | +| streamSource | [StreamSource](../../com.aspose.font/streamsource) | Source du flux de police. | + +### FontDefinition(FontType fontType, StreamSource streamSource) {#FontDefinition-com.aspose.font.FontType-com.aspose.font.StreamSource-} +``` +public FontDefinition(FontType fontType, StreamSource streamSource) +``` + + +Crée une définition de police à fichier unique. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontType | [FontType](../../com.aspose.font/fonttype) | Type de police. | +| streamSource | [StreamSource](../../com.aspose.font/streamsource) | Source du flux de police. | + +### FontDefinition(String fontName, FontType fontType, String fileExtension, StreamSource streamSource) {#FontDefinition-java.lang.String-com.aspose.font.FontType-java.lang.String-com.aspose.font.StreamSource-} +``` +public FontDefinition(String fontName, FontType fontType, String fileExtension, StreamSource streamSource) +``` + + +Crée une définition de police à fichier unique. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontName | java.lang.String | Nom de police. | +| fontType | [FontType](../../com.aspose.font/fonttype) | Type de police. | +| fileExtension | java.lang.String | Extension du fichier de police. | +| streamSource | [StreamSource](../../com.aspose.font/streamsource) | Source du flux de police. | + +### FontDefinition(FontType fontType, FontFileDefinition fileDefinition) {#FontDefinition-com.aspose.font.FontType-com.aspose.font.FontFileDefinition-} +``` +public FontDefinition(FontType fontType, FontFileDefinition fileDefinition) +``` + + +Crée une définition de police à fichier unique. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontType | [FontType](../../com.aspose.font/fonttype) | Type de police. | +| fileDefinition | [FontFileDefinition](../../com.aspose.font/fontfiledefinition) | FontFileDefinition. | + +### FontDefinition(String fontName, FontType fontType, FontFileDefinition fileDefinition) {#FontDefinition-java.lang.String-com.aspose.font.FontType-com.aspose.font.FontFileDefinition-} +``` +public FontDefinition(String fontName, FontType fontType, FontFileDefinition fileDefinition) +``` + + +Crée une définition de police à fichier unique. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontName | java.lang.String | Nom de police. | +| fontType | [FontType](../../com.aspose.font/fonttype) | Type de police. | +| fileDefinition | [FontFileDefinition](../../com.aspose.font/fontfiledefinition) | FontFileDefinition. | + +### FontDefinition(String fontName, String postscriptName, FontType fontType, FontFileDefinition fileDefinition) {#FontDefinition-java.lang.String-java.lang.String-com.aspose.font.FontType-com.aspose.font.FontFileDefinition-} +``` +public FontDefinition(String fontName, String postscriptName, FontType fontType, FontFileDefinition fileDefinition) +``` + + +Crée une définition de police à fichier unique. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontName | java.lang.String | Nom de police. | +| postscriptName | java.lang.String | Nom de la police Postscript. | +| fontType | [FontType](../../com.aspose.font/fonttype) | Type de police. | +| fileDefinition | [FontFileDefinition](../../com.aspose.font/fontfiledefinition) | FontFileDefinition. | + +### FontDefinition(FontType fontType, FontFileDefinition[] fileDefinitions) {#FontDefinition-com.aspose.font.FontType-com.aspose.font.FontFileDefinition---} +``` +public FontDefinition(FontType fontType, FontFileDefinition[] fileDefinitions) +``` + + +Crée une définition de police à fichiers multiples. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontType | [FontType](../../com.aspose.font/fonttype) | Type de police. | +| fileDefinitions | [FontFileDefinition\[\]](../../com.aspose.font/fontfiledefinition) | Tableau d'objets FontFileDefinition. | + +### FontDefinition(String fontName, String postscriptName, FontType fontType, FontFileDefinition[] fileDefinitions) {#FontDefinition-java.lang.String-java.lang.String-com.aspose.font.FontType-com.aspose.font.FontFileDefinition---} +``` +public FontDefinition(String fontName, String postscriptName, FontType fontType, FontFileDefinition[] fileDefinitions) +``` + + +Crée une définition de police à fichiers multiples. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontName | java.lang.String | Nom de police. | +| postscriptName | java.lang.String | Nom de la police Postscript. | +| fontType | [FontType](../../com.aspose.font/fonttype) | Type de police. | +| fileDefinitions | [FontFileDefinition\[\]](../../com.aspose.font/fontfiledefinition) | Tableau d'objets FontFileDefinition. | + +### FontDefinition(MultiLanguageString fontNames, MultiLanguageString postscriptNames, FontType fontType, FontFileDefinition fileDefinition) {#FontDefinition-com.aspose.font.MultiLanguageString-com.aspose.font.MultiLanguageString-com.aspose.font.FontType-com.aspose.font.FontFileDefinition-} +``` +public FontDefinition(MultiLanguageString fontNames, MultiLanguageString postscriptNames, FontType fontType, FontFileDefinition fileDefinition) +``` + + +Crée une définition de police à fichiers multiples. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontNames | [MultiLanguageString](../../com.aspose.font/multilanguagestring) | Noms de police. | +| postscriptNames | [MultiLanguageString](../../com.aspose.font/multilanguagestring) | Noms de police Postscript. | +| fontType | [FontType](../../com.aspose.font/fonttype) | Type de police. | +| fileDefinition | [FontFileDefinition](../../com.aspose.font/fontfiledefinition) | FontFileDefinition. | + +### FontDefinition(MultiLanguageString fontNames, MultiLanguageString postscriptNames, FontType fontType, FontFileDefinition[] fileDefinitions) {#FontDefinition-com.aspose.font.MultiLanguageString-com.aspose.font.MultiLanguageString-com.aspose.font.FontType-com.aspose.font.FontFileDefinition---} +``` +public FontDefinition(MultiLanguageString fontNames, MultiLanguageString postscriptNames, FontType fontType, FontFileDefinition[] fileDefinitions) +``` + + +Crée une définition de police à fichiers multiples. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontNames | [MultiLanguageString](../../com.aspose.font/multilanguagestring) | Noms de police. | +| postscriptNames | [MultiLanguageString](../../com.aspose.font/multilanguagestring) | Noms de police Postscript. | +| fontType | [FontType](../../com.aspose.font/fonttype) | Type de police. | +| fileDefinitions | [FontFileDefinition\[\]](../../com.aspose.font/fontfiledefinition) | Tableau d'objets FontFileDefinition. | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getFileDefinitions() {#getFileDefinitions--} +``` +public FontFileDefinition[] getFileDefinitions() +``` + + +Obtient la collection des définitions de fichiers. + +**Returns:** +com.aspose.font.FontFileDefinition[] - Collection des définitions de fichiers. +### getFontName() {#getFontName--} +``` +public String getFontName() +``` + + +Renvoie le nom de la police. + +**Returns:** +java.lang.String - Nom de police. +### getFontNames() {#getFontNames--} +``` +public MultiLanguageString getFontNames() +``` + + +Obtient les noms de police sous forme de MultiLanguageString. + +**Returns:** +[MultiLanguageString](../../com.aspose.font/multilanguagestring) - Font names as a MultiLanguageString . +### getFontType() {#getFontType--} +``` +public FontType getFontType() +``` + + +Obtient le type de la police. + +**Returns:** +[FontType](../../com.aspose.font/fonttype) - Font type. +### getPostscriptName() {#getPostscriptName--} +``` +public String getPostscriptName() +``` + + +Obtient le nom de la police Postscript. + +**Returns:** +java.lang.String - Nom de la police Postscript. +### getPostscriptNames() {#getPostscriptNames--} +``` +public MultiLanguageString getPostscriptNames() +``` + + +Obtient les noms de police Postscript sous forme de MultiLanguageString. + +**Returns:** +[MultiLanguageString](../../com.aspose.font/multilanguagestring) - Postscript Font names as a MultiLanguageString . +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### open(StreamSource source, FontType fontType) {#open-com.aspose.font.StreamSource-com.aspose.font.FontType-} +``` +public static FontDefinition open(StreamSource source, FontType fontType) +``` + + +Renvoie FontDefinition pour la source du flux de police et le type de police. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| source | [StreamSource](../../com.aspose.font/streamsource) | Source du flux de police. | +| fontType | [FontType](../../com.aspose.font/fonttype) | Type de police. | + +**Returns:** +[FontDefinition](../../com.aspose.font/fontdefinition) - FontDefinition. +### open(String fileName, FontType fontType) {#open-java.lang.String-com.aspose.font.FontType-} +``` +public static FontDefinition open(String fileName, FontType fontType) +``` + + +Renvoie FontDefinition pour le fichier de police et le type de police. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fileName | java.lang.String | Nom du fichier de police. | +| fontType | [FontType](../../com.aspose.font/fonttype) | Type de police. | + +**Returns:** +[FontDefinition](../../com.aspose.font/fontdefinition) - FontDefinition. +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/fontenvironment/_index.md b/french/java/com.aspose.font/fontenvironment/_index.md new file mode 100644 index 0000000000..f8698088aa --- /dev/null +++ b/french/java/com.aspose.font/fontenvironment/_index.md @@ -0,0 +1,193 @@ +--- +title: "FontEnvironment" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Fournit des informations sur l'environnement et la plateforme actuels." +type: docs +weight: 39 +url: /fr/java/com.aspose.font/fontenvironment/ +--- +**Inheritance:** +java.lang.Object +``` +public class FontEnvironment +``` + +Fournit des informations sur l'environnement et la plateforme actuels. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getCffCommonFontsSettings()](#getCffCommonFontsSettings--) | Paramètres communs aux polices CFF. | +| [getClass()](#getClass--) | | +| [getCurrent()](#getCurrent--) | Obtient l'environnement actuel. | +| [getCurrentPlatformId()](#getCurrentPlatformId--) | Obtient l'identifiant de plateforme actuel. | +| [getFontSpecificEncodings()](#getFontSpecificEncodings--) | Stocke les encodages spécifiques pour les polices conscientes du consommateur. | +| [getStrictness()](#getStrictness--) | Certaines polices peuvent contenir des données inattendues, des fonctionnalités non spécifiées, ou être grossièrement découpées. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setStrictness(FontEnvironment.ParsingStrictness value)](#setStrictness-com.aspose.font.FontEnvironment.ParsingStrictness-) | Certaines polices peuvent contenir des données inattendues, des fonctionnalités non spécifiées, ou être grossièrement découpées. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getCffCommonFontsSettings() {#getCffCommonFontsSettings--} +``` +public static CffFontsSettings getCffCommonFontsSettings() +``` + + +Paramètres communs aux polices CFF. + +**Returns:** +[CffFontsSettings](../../com.aspose.font/cfffontssettings) +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getCurrent() {#getCurrent--} +``` +public static FontEnvironment getCurrent() +``` + + +Obtient l'environnement actuel. + +**Returns:** +[FontEnvironment](../../com.aspose.font/fontenvironment) - Current environment. +### getCurrentPlatformId() {#getCurrentPlatformId--} +``` +public int getCurrentPlatformId() +``` + + +Obtient l'identifiant de plateforme actuel. + +**Returns:** +int - Identifiant de plateforme actuel. +### getFontSpecificEncodings() {#getFontSpecificEncodings--} +``` +public FontSpecificEncodings getFontSpecificEncodings() +``` + + +Stocke les encodages spécifiques pour les polices conscientes du consommateur. Par exemple, PDF utilise les encodages spécifiques Adobe Symbol et ZapfDingbats. + +**Returns:** +[FontSpecificEncodings](../../com.aspose.font/fontspecificencodings) - Specific encodings for consumer-aware Fonts. +### getStrictness() {#getStrictness--} +``` +public FontEnvironment.ParsingStrictness getStrictness() +``` + + +Certaines polices peuvent contenir des données inattendues, des fonctionnalités non spécifiées, ou être grossièrement découpées. Un réglage tolérant est recommandé pour les consommateurs qui souhaitent ouvrir n'importe quelle police, quelles que soient les éventuelles insuffisances de la police. Les structures internes des polices ne sont pas garanties d'être cohérentes. Un réglage strict est recommandé pour les consommateurs qui souhaitent ouvrir principalement des polices valides et solides. + +**Returns:** +[ParsingStrictness](../../com.aspose.font/parsingstrictness) - Strictness. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setStrictness(FontEnvironment.ParsingStrictness value) {#setStrictness-com.aspose.font.FontEnvironment.ParsingStrictness-} +``` +public void setStrictness(FontEnvironment.ParsingStrictness value) +``` + + +Certaines polices peuvent contenir des données inattendues, des fonctionnalités non spécifiées, ou être grossièrement découpées. Un réglage tolérant est recommandé pour les consommateurs qui souhaitent ouvrir n'importe quelle police, quelles que soient les éventuelles insuffisances de la police. Les structures internes des polices ne sont pas garanties d'être cohérentes. Un réglage strict est recommandé pour les consommateurs qui souhaitent ouvrir principalement des polices valides et solides. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [ParsingStrictness](../../com.aspose.font/parsingstrictness) | Rigueur. | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/fontexception/_index.md b/french/java/com.aspose.font/fontexception/_index.md new file mode 100644 index 0000000000..d59904fa28 --- /dev/null +++ b/french/java/com.aspose.font/fontexception/_index.md @@ -0,0 +1,313 @@ +--- +title: "FontException" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente une exception commune liée au traitement des polices Font." +type: docs +weight: 40 +url: /fr/java/com.aspose.font/fontexception/ +--- +**Inheritance:** +java.lang.Object, java.lang.Throwable, java.lang.Exception, java.lang.RuntimeException, java.lang.IllegalStateException +``` +public class FontException extends IllegalStateException +``` + +Représente une exception commune liée au traitement des polices Font. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [FontException()](#FontException--) | Initialise un nouvel FontException objet. | +| [FontException(String message)](#FontException-java.lang.String-) | Initialise un nouvel FontException objet. | +| [FontException(String message, RuntimeException innerException)](#FontException-java.lang.String-java.lang.RuntimeException-) | Initialise un nouvel FontException objet. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [addSuppressed(Throwable arg0)](#addSuppressed-java.lang.Throwable-) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [fillInStackTrace()](#fillInStackTrace--) | | +| [getCause()](#getCause--) | | +| [getClass()](#getClass--) | | +| [getLocalizedMessage()](#getLocalizedMessage--) | | +| [getMessage()](#getMessage--) | | +| [getStackTrace()](#getStackTrace--) | | +| [getSuppressed()](#getSuppressed--) | | +| [hashCode()](#hashCode--) | | +| [initCause(Throwable arg0)](#initCause-java.lang.Throwable-) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [printStackTrace()](#printStackTrace--) | | +| [printStackTrace(PrintStream arg0)](#printStackTrace-java.io.PrintStream-) | | +| [printStackTrace(PrintWriter arg0)](#printStackTrace-java.io.PrintWriter-) | | +| [setStackTrace(StackTraceElement[] arg0)](#setStackTrace-java.lang.StackTraceElement---) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### FontException() {#FontException--} +``` +public FontException() +``` + + +Initialise un nouvel FontException objet. + +### FontException(String message) {#FontException-java.lang.String-} +``` +public FontException(String message) +``` + + +Initialise un nouvel FontException objet. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| message | java.lang.String | Un message qui décrit l'erreur. | + +### FontException(String message, RuntimeException innerException) {#FontException-java.lang.String-java.lang.RuntimeException-} +``` +public FontException(String message, RuntimeException innerException) +``` + + +Initialise un nouvel FontException objet. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| message | java.lang.String | Un message qui décrit l'erreur. | +| innerException | java.lang.RuntimeException | L'exception qui est la cause de l'exception actuelle. | + +### addSuppressed(Throwable arg0) {#addSuppressed-java.lang.Throwable-} +``` +public final synchronized void addSuppressed(Throwable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Throwable | | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### fillInStackTrace() {#fillInStackTrace--} +``` +public synchronized Throwable fillInStackTrace() +``` + + + + +**Returns:** +java.lang.Throwable +### getCause() {#getCause--} +``` +public synchronized Throwable getCause() +``` + + + + +**Returns:** +java.lang.Throwable +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getLocalizedMessage() {#getLocalizedMessage--} +``` +public String getLocalizedMessage() +``` + + + + +**Returns:** +java.lang.String +### getMessage() {#getMessage--} +``` +public String getMessage() +``` + + + + +**Returns:** +java.lang.String +### getStackTrace() {#getStackTrace--} +``` +public StackTraceElement[] getStackTrace() +``` + + + + +**Returns:** +java.lang.StackTraceElement[] +### getSuppressed() {#getSuppressed--} +``` +public final synchronized Throwable[] getSuppressed() +``` + + + + +**Returns:** +java.lang.Throwable[] +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### initCause(Throwable arg0) {#initCause-java.lang.Throwable-} +``` +public synchronized Throwable initCause(Throwable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Throwable | | + +**Returns:** +java.lang.Throwable +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### printStackTrace() {#printStackTrace--} +``` +public void printStackTrace() +``` + + + + +### printStackTrace(PrintStream arg0) {#printStackTrace-java.io.PrintStream-} +``` +public void printStackTrace(PrintStream arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.io.PrintStream | | + +### printStackTrace(PrintWriter arg0) {#printStackTrace-java.io.PrintWriter-} +``` +public void printStackTrace(PrintWriter arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.io.PrintWriter | | + +### setStackTrace(StackTraceElement[] arg0) {#setStackTrace-java.lang.StackTraceElement---} +``` +public void setStackTrace(StackTraceElement[] arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.StackTraceElement[] | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/fontfactory/_index.md b/french/java/com.aspose.font/fontfactory/_index.md new file mode 100644 index 0000000000..23572a2888 --- /dev/null +++ b/french/java/com.aspose.font/fontfactory/_index.md @@ -0,0 +1,204 @@ +--- +title: "FontFactory" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Contient des fonctionnalités pour ouvrir des polices de différents types et d'autres méthodes pour créer divers objets." +type: docs +weight: 41 +url: /fr/java/com.aspose.font/fontfactory/ +--- +**Inheritance:** +java.lang.Object +``` +public class FontFactory +``` + +Contient la fonctionnalité d'ouverture de polices de différents types et d'autres méthodes pour créer divers objets. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [FontFactory()](#FontFactory--) | Constructeur | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [open(FontDefinition fontDefinition)](#open-com.aspose.font.FontDefinition-) | Ouvre une police en utilisant l'objet FontDefinition. | +| [open(FontType fontType, byte[] fontData)](#open-com.aspose.font.FontType-byte---) | Ouvre une police en utilisant le type de police et le tableau d'octets des données de police. | +| [open(FontType fontType, StreamSource fontStreamSource)](#open-com.aspose.font.FontType-com.aspose.font.StreamSource-) | Ouvre une police en utilisant le type de police et la source du flux. | +| [open(FontType fontType, String fileName)](#open-com.aspose.font.FontType-java.lang.String-) | Ouvre une police en utilisant le type de police et le nom du fichier de police. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### FontFactory() {#FontFactory--} +``` +public FontFactory() +``` + + +Constructeur + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### open(FontDefinition fontDefinition) {#open-com.aspose.font.FontDefinition-} +``` +public Font open(FontDefinition fontDefinition) +``` + + +Ouvre une police en utilisant l'objet FontDefinition. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontDefinition | [FontDefinition](../../com.aspose.font/fontdefinition) | Objet de définition de police. | + +**Returns:** +[Font](../../com.aspose.font/font) - Font loaded. +### open(FontType fontType, byte[] fontData) {#open-com.aspose.font.FontType-byte---} +``` +public Font open(FontType fontType, byte[] fontData) +``` + + +Ouvre une police en utilisant le type de police et le tableau d'octets des données de police. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontType | [FontType](../../com.aspose.font/fonttype) | Type de police. | +| fontData | byte[] | Tableau d'octets pour charger la police. | + +**Returns:** +[Font](../../com.aspose.font/font) - Font loaded. +### open(FontType fontType, StreamSource fontStreamSource) {#open-com.aspose.font.FontType-com.aspose.font.StreamSource-} +``` +public Font open(FontType fontType, StreamSource fontStreamSource) +``` + + +Ouvre une police en utilisant le type de police et la source du flux. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontType | [FontType](../../com.aspose.font/fonttype) | Type de police. | +| fontStreamSource | [StreamSource](../../com.aspose.font/streamsource) | Source de flux pour la police. | + +**Returns:** +[Font](../../com.aspose.font/font) - Font loaded. +### open(FontType fontType, String fileName) {#open-com.aspose.font.FontType-java.lang.String-} +``` +public Font open(FontType fontType, String fileName) +``` + + +Ouvre une police en utilisant le type de police et le nom du fichier de police. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontType | [FontType](../../com.aspose.font/fonttype) | Type de police. | +| fileName | java.lang.String | Nom du fichier de police. | + +**Returns:** +[Font](../../com.aspose.font/font) - Font loaded. +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/fontfiledefinition/_index.md b/french/java/com.aspose.font/fontfiledefinition/_index.md new file mode 100644 index 0000000000..dc38b05f09 --- /dev/null +++ b/french/java/com.aspose.font/fontfiledefinition/_index.md @@ -0,0 +1,231 @@ +--- +title: "FontFileDefinition" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente la définition du fichier Font." +type: docs +weight: 42 +url: /fr/java/com.aspose.font/fontfiledefinition/ +--- +**Inheritance:** +java.lang.Object +``` +public class FontFileDefinition +``` + +Représente la définition du fichier Font. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [FontFileDefinition(StreamSource streamSource)](#FontFileDefinition-com.aspose.font.StreamSource-) | Crée une définition de fichier en utilisant uniquement le contenu du fichier. | +| [FontFileDefinition(String fileExtension, StreamSource streamSource)](#FontFileDefinition-java.lang.String-com.aspose.font.StreamSource-) | Crée une définition de fichier en utilisant uniquement le contenu du fichier. | +| [FontFileDefinition(String fileExtension, StreamSource streamSource, long offset)](#FontFileDefinition-java.lang.String-com.aspose.font.StreamSource-long-) | Crée une définition de fichier en utilisant uniquement le contenu du fichier. | +| [FontFileDefinition(File fontFile)](#FontFileDefinition-java.io.File-) | Crée une définition de fichier en utilisant le fichier de police (représenté par File) et le contenu du fichier. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getFileExtension()](#getFileExtension--) | Obtient l'extension du fichier. | +| [getFileName()](#getFileName--) | Obtient le nom du fichier. | +| [getOffset()](#getOffset--) | Obtient le décalage dans le flux. | +| [getStreamSource()](#getStreamSource--) | Obtient la source du flux. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### FontFileDefinition(StreamSource streamSource) {#FontFileDefinition-com.aspose.font.StreamSource-} +``` +public FontFileDefinition(StreamSource streamSource) +``` + + +Crée une définition de fichier en utilisant uniquement le contenu du fichier. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| streamSource | [StreamSource](../../com.aspose.font/streamsource) | Source du flux de police. | + +### FontFileDefinition(String fileExtension, StreamSource streamSource) {#FontFileDefinition-java.lang.String-com.aspose.font.StreamSource-} +``` +public FontFileDefinition(String fileExtension, StreamSource streamSource) +``` + + +Crée une définition de fichier en utilisant uniquement le contenu du fichier. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fileExtension | java.lang.String | Extension du fichier de police. | +| streamSource | [StreamSource](../../com.aspose.font/streamsource) | Source du flux de police. | + +### FontFileDefinition(String fileExtension, StreamSource streamSource, long offset) {#FontFileDefinition-java.lang.String-com.aspose.font.StreamSource-long-} +``` +public FontFileDefinition(String fileExtension, StreamSource streamSource, long offset) +``` + + +Crée une définition de fichier en utilisant uniquement le contenu du fichier. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fileExtension | java.lang.String | Extension du fichier de police. | +| streamSource | [StreamSource](../../com.aspose.font/streamsource) | Source du flux de police. | +| décalage | long | Décalage vers les données de police dans la source de flux. | + +### FontFileDefinition(File fontFile) {#FontFileDefinition-java.io.File-} +``` +public FontFileDefinition(File fontFile) +``` + + +Crée une définition de fichier en utilisant le fichier de police (représenté par File) et le contenu du fichier. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontFile | java.io.File | Objet File. | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getFileExtension() {#getFileExtension--} +``` +public String getFileExtension() +``` + + +Obtient l'extension du fichier. + +**Returns:** +java.lang.String - Extension de fichier. +### getFileName() {#getFileName--} +``` +public String getFileName() +``` + + +Obtient le nom du fichier. + +**Returns:** +java.lang.String - Nom de fichier. +### getOffset() {#getOffset--} +``` +public long getOffset() +``` + + +Obtient le décalage dans le flux. + +**Returns:** +long - Décalage dans le flux. +### getStreamSource() {#getStreamSource--} +``` +public StreamSource getStreamSource() +``` + + +Obtient la source du flux. + +**Returns:** +[StreamSource](../../com.aspose.font/streamsource) - The stream source. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/fontmergeexception/_index.md b/french/java/com.aspose.font/fontmergeexception/_index.md new file mode 100644 index 0000000000..b80d56cf2d --- /dev/null +++ b/french/java/com.aspose.font/fontmergeexception/_index.md @@ -0,0 +1,313 @@ +--- +title: "FontMergeException" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente une exception de fusion Font." +type: docs +weight: 43 +url: /fr/java/com.aspose.font/fontmergeexception/ +--- +**Inheritance:** +java.lang.Object, java.lang.Throwable, java.lang.Exception, java.lang.RuntimeException, java.lang.IllegalStateException, [com.aspose.font.FontException](../../com.aspose.font/fontexception) +``` +public class FontMergeException extends FontException +``` + +Représente l'exception de fusion de police. L'exception peut être levée en cas d'erreurs lors de la fusion des polices. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [FontMergeException()](#FontMergeException--) | Initialise un nouvel FontMergeException objet. | +| [FontMergeException(String message)](#FontMergeException-java.lang.String-) | Initialise un nouvel FontMergeException objet. | +| [FontMergeException(String message, RuntimeException innerException)](#FontMergeException-java.lang.String-java.lang.RuntimeException-) | Initialise un nouvel FontMergeException objet. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [addSuppressed(Throwable arg0)](#addSuppressed-java.lang.Throwable-) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [fillInStackTrace()](#fillInStackTrace--) | | +| [getCause()](#getCause--) | | +| [getClass()](#getClass--) | | +| [getLocalizedMessage()](#getLocalizedMessage--) | | +| [getMessage()](#getMessage--) | | +| [getStackTrace()](#getStackTrace--) | | +| [getSuppressed()](#getSuppressed--) | | +| [hashCode()](#hashCode--) | | +| [initCause(Throwable arg0)](#initCause-java.lang.Throwable-) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [printStackTrace()](#printStackTrace--) | | +| [printStackTrace(PrintStream arg0)](#printStackTrace-java.io.PrintStream-) | | +| [printStackTrace(PrintWriter arg0)](#printStackTrace-java.io.PrintWriter-) | | +| [setStackTrace(StackTraceElement[] arg0)](#setStackTrace-java.lang.StackTraceElement---) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### FontMergeException() {#FontMergeException--} +``` +public FontMergeException() +``` + + +Initialise un nouvel FontMergeException objet. + +### FontMergeException(String message) {#FontMergeException-java.lang.String-} +``` +public FontMergeException(String message) +``` + + +Initialise un nouvel FontMergeException objet. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| message | java.lang.String | Un message qui décrit l'erreur. | + +### FontMergeException(String message, RuntimeException innerException) {#FontMergeException-java.lang.String-java.lang.RuntimeException-} +``` +public FontMergeException(String message, RuntimeException innerException) +``` + + +Initialise un nouvel FontMergeException objet. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| message | java.lang.String | Un message qui décrit l'erreur. | +| innerException | java.lang.RuntimeException | L'exception qui est la cause de l'exception actuelle. | + +### addSuppressed(Throwable arg0) {#addSuppressed-java.lang.Throwable-} +``` +public final synchronized void addSuppressed(Throwable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Throwable | | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### fillInStackTrace() {#fillInStackTrace--} +``` +public synchronized Throwable fillInStackTrace() +``` + + + + +**Returns:** +java.lang.Throwable +### getCause() {#getCause--} +``` +public synchronized Throwable getCause() +``` + + + + +**Returns:** +java.lang.Throwable +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getLocalizedMessage() {#getLocalizedMessage--} +``` +public String getLocalizedMessage() +``` + + + + +**Returns:** +java.lang.String +### getMessage() {#getMessage--} +``` +public String getMessage() +``` + + + + +**Returns:** +java.lang.String +### getStackTrace() {#getStackTrace--} +``` +public StackTraceElement[] getStackTrace() +``` + + + + +**Returns:** +java.lang.StackTraceElement[] +### getSuppressed() {#getSuppressed--} +``` +public final synchronized Throwable[] getSuppressed() +``` + + + + +**Returns:** +java.lang.Throwable[] +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### initCause(Throwable arg0) {#initCause-java.lang.Throwable-} +``` +public synchronized Throwable initCause(Throwable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Throwable | | + +**Returns:** +java.lang.Throwable +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### printStackTrace() {#printStackTrace--} +``` +public void printStackTrace() +``` + + + + +### printStackTrace(PrintStream arg0) {#printStackTrace-java.io.PrintStream-} +``` +public void printStackTrace(PrintStream arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.io.PrintStream | | + +### printStackTrace(PrintWriter arg0) {#printStackTrace-java.io.PrintWriter-} +``` +public void printStackTrace(PrintWriter arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.io.PrintWriter | | + +### setStackTrace(StackTraceElement[] arg0) {#setStackTrace-java.lang.StackTraceElement---} +``` +public void setStackTrace(StackTraceElement[] arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.StackTraceElement[] | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/fontmetrics/_index.md b/french/java/com.aspose.font/fontmetrics/_index.md new file mode 100644 index 0000000000..25866702a6 --- /dev/null +++ b/french/java/com.aspose.font/fontmetrics/_index.md @@ -0,0 +1,470 @@ +--- +title: "FontMetrics" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente les métriques de la police." +type: docs +weight: 44 +url: /fr/java/com.aspose.font/fontmetrics/ +--- +**Inheritance:** +java.lang.Object + +**All Implemented Interfaces:** +[com.aspose.font.IFontMetrics](../../com.aspose.font/ifontmetrics) +``` +public abstract class FontMetrics implements IFontMetrics +``` + +Représente les métriques de la police. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getAscender()](#getAscender--) | Obtient la valeur Ascender. | +| [getAscender(double fontSize)](#getAscender-double-) | Renvoie l'ascender pour une taille de police spécifique. | +| [getClass()](#getClass--) | | +| [getDescender()](#getDescender--) | Obtient la valeur Descender. | +| [getDescender(double fontSize)](#getDescender-double-) | Renvoie le descender pour une taille de police spécifique. | +| [getFontBBox()](#getFontBBox--) | Obtient la valeur FontBBox. | +| [getFontMatrix()](#getFontMatrix--) | Obtient la valeur FontMatrix. | +| [getGlyphBBox(GlyphId glyphId)](#getGlyphBBox-com.aspose.font.GlyphId-) | Renvoie le glyph Bbox. | +| [getGlyphWidth(GlyphId glyphId)](#getGlyphWidth-com.aspose.font.GlyphId-) | Renvoie la largeur du glyph. | +| [getKerningValue(GlyphId prevGlyphId, GlyphId nextGlyphId)](#getKerningValue-com.aspose.font.GlyphId-com.aspose.font.GlyphId-) | Renvoie la valeur de crénage pour la paire de glyphes. | +| [getLineGap()](#getLineGap--) | Obtient la valeur LineGap. | +| [getTypoAscender()](#getTypoAscender--) | Obtient la valeur TypoAscender. | +| [getTypoAscender(double fontSize)](#getTypoAscender-double-) | Renvoie l'ascendant typographique pour une taille de Font size spécifique. | +| [getTypoDescender()](#getTypoDescender--) | Obtient la valeur TypoDescender. | +| [getTypoDescender(double fontSize)](#getTypoDescender-double-) | Renvoie le descendant typographique pour une taille de font size spécifique. | +| [getTypoLineGap()](#getTypoLineGap--) | Obtient la valeur TypoLineGap. | +| [getTypoLineGap(double fontSize)](#getTypoLineGap-double-) | Renvoie l'écart de ligne pour une taille de Font size spécifique. | +| [getUnitsPerEM()](#getUnitsPerEM--) | Obtient la valeur UnitsPerEM. | +| [hashCode()](#hashCode--) | | +| [isFixedPitch()](#isFixedPitch--) | Obtient la valeur IsFixedPitch. | +| [measureString(String unicode, double fontSize)](#measureString-java.lang.String-double-) | Mesure la chaîne et renvoie la largeur de la chaîne. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setAscender(double value)](#setAscender-double-) | Définit la valeur Ascender. | +| [setDescender(double value)](#setDescender-double-) | Définit la valeur Descender. | +| [setGlyphWidth(GlyphId glyphId, double value)](#setGlyphWidth-com.aspose.font.GlyphId-double-) | Définit la largeur du glyph. | +| [setTypoAscender(double value)](#setTypoAscender-double-) | Définit la valeur TypoAscender. | +| [setTypoDescender(double value)](#setTypoDescender-double-) | Définit la valeur TypoDescender. | +| [setUnitsPerEM(long value)](#setUnitsPerEM-long-) | Définit la valeur UnitsPerEM. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getAscender() {#getAscender--} +``` +public double getAscender() +``` + + +Obtient la valeur Ascender. + +**Returns:** +double - valeur Ascender. +### getAscender(double fontSize) {#getAscender-double-} +``` +public double getAscender(double fontSize) +``` + + +Renvoie l'ascender pour une taille de police spécifique. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontSize | double | Taille de police. | + +**Returns:** +double - valeur Ascender. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDescender() {#getDescender--} +``` +public double getDescender() +``` + + +Obtient la valeur Descender. + +**Returns:** +double - valeur Descender. +### getDescender(double fontSize) {#getDescender-double-} +``` +public double getDescender(double fontSize) +``` + + +Renvoie le descender pour une taille de police spécifique. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontSize | double | Taille de police. | + +**Returns:** +double - valeur Descender. +### getFontBBox() {#getFontBBox--} +``` +public FontBBox getFontBBox() +``` + + +Obtient la valeur FontBBox. + +**Returns:** +[FontBBox](../../com.aspose.font/fontbbox) - FontBBox value. +### getFontMatrix() {#getFontMatrix--} +``` +public TransformationMatrix getFontMatrix() +``` + + +Obtient la valeur FontMatrix. + +**Returns:** +[TransformationMatrix](../../com.aspose.font/transformationmatrix) - FontMatrix value. +### getGlyphBBox(GlyphId glyphId) {#getGlyphBBox-com.aspose.font.GlyphId-} +``` +public FontBBox getGlyphBBox(GlyphId glyphId) +``` + + +Renvoie le glyph Bbox. Renvoie FontBBox si le BBox n'était pas défini pour le glyph. Peut être remplacé par des héritiers d'encodage de police spécifiques. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| glyphId | [GlyphId](../../com.aspose.font/glyphid) | Identifiant du glyph. | + +**Returns:** +[FontBBox](../../com.aspose.font/fontbbox) - Glyph BBox. +### getGlyphWidth(GlyphId glyphId) {#getGlyphWidth-com.aspose.font.GlyphId-} +``` +public double getGlyphWidth(GlyphId glyphId) +``` + + +Renvoie la largeur du glyphe. Peut être remplacé par des héritiers d'encodage de police spécifiques. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| glyphId | [GlyphId](../../com.aspose.font/glyphid) | Identifiant du glyph. | + +**Returns:** +double - Largeur du glyphe. +### getKerningValue(GlyphId prevGlyphId, GlyphId nextGlyphId) {#getKerningValue-com.aspose.font.GlyphId-com.aspose.font.GlyphId-} +``` +public double getKerningValue(GlyphId prevGlyphId, GlyphId nextGlyphId) +``` + + +Renvoie la valeur de crénage pour la paire de glyphes. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| prevGlyphId | [GlyphId](../../com.aspose.font/glyphid) | Premier glyphe de la paire. | +| nextGlyphId | [GlyphId](../../com.aspose.font/glyphid) | Taille de police. | + +**Returns:** +double - Valeur du crénage. +### getLineGap() {#getLineGap--} +``` +public double getLineGap() +``` + + +Obtient la valeur LineGap. + +**Returns:** +double - Valeur du LineGap. +### getTypoAscender() {#getTypoAscender--} +``` +public double getTypoAscender() +``` + + +Obtient la valeur TypoAscender. + +**Returns:** +double - Valeur de TypoAscender. +### getTypoAscender(double fontSize) {#getTypoAscender-double-} +``` +public double getTypoAscender(double fontSize) +``` + + +Renvoie l'ascendant typographique pour une taille de Font size spécifique. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontSize | double | Taille de police. | + +**Returns:** +double - Valeur de l'ascendant typographique. +### getTypoDescender() {#getTypoDescender--} +``` +public double getTypoDescender() +``` + + +Obtient la valeur TypoDescender. + +**Returns:** +double - Valeur de TypoDescender. +### getTypoDescender(double fontSize) {#getTypoDescender-double-} +``` +public double getTypoDescender(double fontSize) +``` + + +Renvoie le descendant typographique pour une taille de font size spécifique. + +param fontSize Taille de la police. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontSize | double | | + +**Returns:** +double - Valeur du descendant typographique. +### getTypoLineGap() {#getTypoLineGap--} +``` +public double getTypoLineGap() +``` + + +Obtient la valeur TypoLineGap. + +**Returns:** +double - Valeur de TypoLineGap. +### getTypoLineGap(double fontSize) {#getTypoLineGap-double-} +``` +public double getTypoLineGap(double fontSize) +``` + + +Renvoie l'écart de ligne pour une taille de Font size spécifique. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontSize | double | Taille de police. | + +**Returns:** +double - Valeur de l'écart de ligne. +### getUnitsPerEM() {#getUnitsPerEM--} +``` +public long getUnitsPerEM() +``` + + +Obtient la valeur UnitsPerEM. + +**Returns:** +long - Valeur de UnitsPerEM. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### isFixedPitch() {#isFixedPitch--} +``` +public boolean isFixedPitch() +``` + + +Obtient la valeur IsFixedPitch. + +**Returns:** +boolean - Valeur de IsFixedPitch. +### measureString(String unicode, double fontSize) {#measureString-java.lang.String-double-} +``` +public abstract double measureString(String unicode, double fontSize) +``` + + +Mesure la chaîne et renvoie la largeur de la chaîne. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| unicode | java.lang.String | Chaîne Unicode. | +| fontSize | double | Taille de police. | + +**Returns:** +double - Largeur de la chaîne. +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setAscender(double value) {#setAscender-double-} +``` +public void setAscender(double value) +``` + + +Définit la valeur Ascender. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | double | Valeur de l'ascendant. | + +### setDescender(double value) {#setDescender-double-} +``` +public void setDescender(double value) +``` + + +Définit la valeur Descender. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | double | Valeur du descendant. | + +### setGlyphWidth(GlyphId glyphId, double value) {#setGlyphWidth-com.aspose.font.GlyphId-double-} +``` +public abstract void setGlyphWidth(GlyphId glyphId, double value) +``` + + +Définit la largeur du glyph. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| glyphId | [GlyphId](../../com.aspose.font/glyphid) | Identifiant du glyph. | +| valeur | double | Nouvelle largeur. | + +### setTypoAscender(double value) {#setTypoAscender-double-} +``` +public void setTypoAscender(double value) +``` + + +Définit la valeur TypoAscender. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | double | Valeur de TypoAscender. | + +### setTypoDescender(double value) {#setTypoDescender-double-} +``` +public void setTypoDescender(double value) +``` + + +Définit la valeur TypoDescender. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | double | Valeur de TypoDescender. | + +### setUnitsPerEM(long value) {#setUnitsPerEM-long-} +``` +public void setUnitsPerEM(long value) +``` + + +Définit la valeur UnitsPerEM. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | long | Valeur de UnitsPerEM. | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/fontnotsupportedoperationexception/_index.md b/french/java/com.aspose.font/fontnotsupportedoperationexception/_index.md new file mode 100644 index 0000000000..77c07c22e5 --- /dev/null +++ b/french/java/com.aspose.font/fontnotsupportedoperationexception/_index.md @@ -0,0 +1,313 @@ +--- +title: "FontNotSupportedOperationException" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente une exception d'opération non prise en charge." +type: docs +weight: 45 +url: /fr/java/com.aspose.font/fontnotsupportedoperationexception/ +--- +**Inheritance:** +java.lang.Object, java.lang.Throwable, java.lang.Exception, java.lang.RuntimeException, java.lang.IllegalStateException, [com.aspose.font.FontException](../../com.aspose.font/fontexception) +``` +public class FontNotSupportedOperationException extends FontException +``` + +Représente une exception d'opération non prise en charge. L'exception peut être levée si une opération n'est pas prise en charge pour un type de police particulier. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [FontNotSupportedOperationException()](#FontNotSupportedOperationException--) | Initialise un nouvel objet FontNotSupportedOperationException. | +| [FontNotSupportedOperationException(String message)](#FontNotSupportedOperationException-java.lang.String-) | Initialise un nouvel objet FontNotSupportedOperationException. | +| [FontNotSupportedOperationException(String message, RuntimeException innerException)](#FontNotSupportedOperationException-java.lang.String-java.lang.RuntimeException-) | Initialise un nouvel objet FontNotSupportedOperationException. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [addSuppressed(Throwable arg0)](#addSuppressed-java.lang.Throwable-) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [fillInStackTrace()](#fillInStackTrace--) | | +| [getCause()](#getCause--) | | +| [getClass()](#getClass--) | | +| [getLocalizedMessage()](#getLocalizedMessage--) | | +| [getMessage()](#getMessage--) | | +| [getStackTrace()](#getStackTrace--) | | +| [getSuppressed()](#getSuppressed--) | | +| [hashCode()](#hashCode--) | | +| [initCause(Throwable arg0)](#initCause-java.lang.Throwable-) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [printStackTrace()](#printStackTrace--) | | +| [printStackTrace(PrintStream arg0)](#printStackTrace-java.io.PrintStream-) | | +| [printStackTrace(PrintWriter arg0)](#printStackTrace-java.io.PrintWriter-) | | +| [setStackTrace(StackTraceElement[] arg0)](#setStackTrace-java.lang.StackTraceElement---) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### FontNotSupportedOperationException() {#FontNotSupportedOperationException--} +``` +public FontNotSupportedOperationException() +``` + + +Initialise un nouvel objet FontNotSupportedOperationException. + +### FontNotSupportedOperationException(String message) {#FontNotSupportedOperationException-java.lang.String-} +``` +public FontNotSupportedOperationException(String message) +``` + + +Initialise un nouvel objet FontNotSupportedOperationException. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| message | java.lang.String | Un message qui décrit l'erreur. | + +### FontNotSupportedOperationException(String message, RuntimeException innerException) {#FontNotSupportedOperationException-java.lang.String-java.lang.RuntimeException-} +``` +public FontNotSupportedOperationException(String message, RuntimeException innerException) +``` + + +Initialise un nouvel objet FontNotSupportedOperationException. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| message | java.lang.String | Un message qui décrit l'erreur. | +| innerException | java.lang.RuntimeException | L'exception qui est la cause de l'exception actuelle. | + +### addSuppressed(Throwable arg0) {#addSuppressed-java.lang.Throwable-} +``` +public final synchronized void addSuppressed(Throwable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Throwable | | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### fillInStackTrace() {#fillInStackTrace--} +``` +public synchronized Throwable fillInStackTrace() +``` + + + + +**Returns:** +java.lang.Throwable +### getCause() {#getCause--} +``` +public synchronized Throwable getCause() +``` + + + + +**Returns:** +java.lang.Throwable +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getLocalizedMessage() {#getLocalizedMessage--} +``` +public String getLocalizedMessage() +``` + + + + +**Returns:** +java.lang.String +### getMessage() {#getMessage--} +``` +public String getMessage() +``` + + + + +**Returns:** +java.lang.String +### getStackTrace() {#getStackTrace--} +``` +public StackTraceElement[] getStackTrace() +``` + + + + +**Returns:** +java.lang.StackTraceElement[] +### getSuppressed() {#getSuppressed--} +``` +public final synchronized Throwable[] getSuppressed() +``` + + + + +**Returns:** +java.lang.Throwable[] +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### initCause(Throwable arg0) {#initCause-java.lang.Throwable-} +``` +public synchronized Throwable initCause(Throwable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Throwable | | + +**Returns:** +java.lang.Throwable +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### printStackTrace() {#printStackTrace--} +``` +public void printStackTrace() +``` + + + + +### printStackTrace(PrintStream arg0) {#printStackTrace-java.io.PrintStream-} +``` +public void printStackTrace(PrintStream arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.io.PrintStream | | + +### printStackTrace(PrintWriter arg0) {#printStackTrace-java.io.PrintWriter-} +``` +public void printStackTrace(PrintWriter arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.io.PrintWriter | | + +### setStackTrace(StackTraceElement[] arg0) {#setStackTrace-java.lang.StackTraceElement---} +``` +public void setStackTrace(StackTraceElement[] arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.StackTraceElement[] | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/fontsavingformats/_index.md b/french/java/com.aspose.font/fontsavingformats/_index.md new file mode 100644 index 0000000000..29c658b6f3 --- /dev/null +++ b/french/java/com.aspose.font/fontsavingformats/_index.md @@ -0,0 +1,277 @@ +--- +title: "FontSavingFormats" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Spécifie le type de police." +type: docs +weight: 135 +url: /fr/java/com.aspose.font/fontsavingformats/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum FontSavingFormats extends Enum +``` + +Spécifie le type de police. +## Champs + +| Champ | Description | +| --- | --- | +| [OTF](#OTF) | Police OpenType. | +| [SVG](#SVG) | Format de police SVG (Scalable Vector Graphics) | +| [TTF](#TTF) | Format de police TTF (TrueType). | +| [WOFF](#WOFF) | WOFF (Web Open Font Format). | +| [WOFF2](#WOFF2) | Format de fichier WOFF 2.0 | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### OTF {#OTF} +``` +public static final FontSavingFormats OTF +``` + + +Police OpenType. Le format de police OpenType est une extension du format de police TrueType, ajoutant la prise en charge des données de police PostScript. + +### SVG {#SVG} +``` +public static final FontSavingFormats SVG +``` + + +Format de police SVG (Scalable Vector Graphics) + +### TTF {#TTF} +``` +public static final FontSavingFormats TTF +``` + + +Format de police TTF (TrueType). + +### WOFF {#WOFF} +``` +public static final FontSavingFormats WOFF +``` + + +WOFF (Web Open Font Format). + +### WOFF2 {#WOFF2} +``` +public static final FontSavingFormats WOFF2 +``` + + +Format de fichier WOFF 2.0 + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static FontSavingFormats valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[FontSavingFormats](../../com.aspose.font/fontsavingformats) +### values() {#values--} +``` +public static FontSavingFormats[] values() +``` + + + + +**Returns:** +com.aspose.font.FontSavingFormats[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/fontspecificencodings/_index.md b/french/java/com.aspose.font/fontspecificencodings/_index.md new file mode 100644 index 0000000000..a5a1e0d8cf --- /dev/null +++ b/french/java/com.aspose.font/fontspecificencodings/_index.md @@ -0,0 +1,139 @@ +--- +title: "FontSpecificEncodings" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente des encodages spécifiques pour les polices conscientes du consommateur." +type: docs +weight: 46 +url: /fr/java/com.aspose.font/fontspecificencodings/ +--- +**Inheritance:** +java.lang.Object +``` +public class FontSpecificEncodings +``` + +Représente des encodages spécifiques pour les polices conscientes du consommateur. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [registerEncoding(String fontName, String[] encoding)](#registerEncoding-java.lang.String-java.lang.String---) | Enregistrer l'encodage pour les Polices conscientes du consommateur. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### registerEncoding(String fontName, String[] encoding) {#registerEncoding-java.lang.String-java.lang.String---} +``` +public void registerEncoding(String fontName, String[] encoding) +``` + + +Enregistrer l'encodage pour les Polices conscientes du consommateur. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontName | java.lang.String | Nom de police. | +| encodage | java.lang.String[] | Encodage. | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/fontstyle/_index.md b/french/java/com.aspose.font/fontstyle/_index.md new file mode 100644 index 0000000000..29ad029ebe --- /dev/null +++ b/french/java/com.aspose.font/fontstyle/_index.md @@ -0,0 +1,155 @@ +--- +title: "FontStyle" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Énumération des styles de police" +type: docs +weight: 47 +url: /fr/java/com.aspose.font/fontstyle/ +--- +**Inheritance:** +java.lang.Object +``` +public final class FontStyle +``` + +Énumération des styles de police +## Champs + +| Champ | Description | +| --- | --- | +| [Bold](#Bold) | Spécifie le style gras de la Font. | +| [Italic](#Italic) | Spécifie le style italique de la Font. | +| [Regular](#Regular) | Spécifie le style normal de la Font. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### Bold {#Bold} +``` +public static final int Bold +``` + + +Spécifie le style gras de la Font. + +### Italic {#Italic} +``` +public static final int Italic +``` + + +Spécifie le style italique de la Font. + +### Regular {#Regular} +``` +public static final int Regular +``` + + +Spécifie le style normal de la Font. + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/fonttype/_index.md b/french/java/com.aspose.font/fonttype/_index.md new file mode 100644 index 0000000000..058ecf060c --- /dev/null +++ b/french/java/com.aspose.font/fonttype/_index.md @@ -0,0 +1,268 @@ +--- +title: "FontType" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Spécifie le type de police." +type: docs +weight: 136 +url: /fr/java/com.aspose.font/fonttype/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum FontType extends Enum +``` + +Spécifie le type de police. +## Champs + +| Champ | Description | +| --- | --- | +| [CFF](#CFF) | CFF (Compact Font Format) Type de police. | +| [OTF](#OTF) | Police OpenType. | +| [TTF](#TTF) | TTF (TrueType) Type de police et associés. | +| [Type1](#Type1) | Type1 Type de police. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### CFF {#CFF} +``` +public static final FontType CFF +``` + + +CFF (Compact Font Format) Type de police. + +### OTF {#OTF} +``` +public static final FontType OTF +``` + + +Police OpenType. Le format de police OpenType est une extension du format de police TrueType, ajoutant la prise en charge des données de police PostScript. + +### TTF {#TTF} +``` +public static final FontType TTF +``` + + +TTF (TrueType) Type de police et associés. + +### Type1 {#Type1} +``` +public static final FontType Type1 +``` + + +Type1 Type de police. + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static FontType valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[FontType](../../com.aspose.font/fonttype) +### values() {#values--} +``` +public static FontType[] values() +``` + + + + +**Returns:** +com.aspose.font.FontType[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/gasprange/_index.md b/french/java/com.aspose.font/gasprange/_index.md new file mode 100644 index 0000000000..5dd314a1fe --- /dev/null +++ b/french/java/com.aspose.font/gasprange/_index.md @@ -0,0 +1,163 @@ +--- +title: "GaspRange" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Le tableau d'enregistrements GaspRange fournit des comportements recommandés pour diverses tailles ppem" +type: docs +weight: 48 +url: /fr/java/com.aspose.font/gasprange/ +--- +**Inheritance:** +java.lang.Object +``` +public class GaspRange +``` + +Le tableau d'enregistrements GaspRange fournit des comportements recommandés pour diverses tailles ppem +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [GaspRange(int rangeMaxPPEM, AsFoEnumSet rangeGaspBehaviorFlags)](#GaspRange-int-com.aspose.font.util.AsFoEnumSet-com.aspose.font.RangeGaspBehaviorFlags--) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getRangeGaspBehaviorFlags()](#getRangeGaspBehaviorFlags--) | Obtient les indicateurs décrivant le comportement souhaité du rasteriseur. | +| [getRangeMaxPPEM()](#getRangeMaxPPEM--) | Obtient la limite supérieure de la plage, en PPEM. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### GaspRange(int rangeMaxPPEM, AsFoEnumSet rangeGaspBehaviorFlags) {#GaspRange-int-com.aspose.font.util.AsFoEnumSet-com.aspose.font.RangeGaspBehaviorFlags--} +``` +public GaspRange(int rangeMaxPPEM, AsFoEnumSet rangeGaspBehaviorFlags) +``` + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| rangeMaxPPEM | int | | +| rangeGaspBehaviorFlags | com.aspose.font.util.AsFoEnumSet | | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getRangeGaspBehaviorFlags() {#getRangeGaspBehaviorFlags--} +``` +public AsFoEnumSet getRangeGaspBehaviorFlags() +``` + + +Obtient les indicateurs décrivant le comportement souhaité du rasteriseur. + +**Returns:** +[AsFoEnumSet](../../com.aspose.font.util/asfoenumset) - The flags describing desired rasterizer behavior. +### getRangeMaxPPEM() {#getRangeMaxPPEM--} +``` +public int getRangeMaxPPEM() +``` + + +Obtient la limite supérieure de la plage, en PPEM. + +**Returns:** +int - La limite supérieure de la plage, en PPEM. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/glyph/_index.md b/french/java/com.aspose.font/glyph/_index.md new file mode 100644 index 0000000000..d33c9c1044 --- /dev/null +++ b/french/java/com.aspose.font/glyph/_index.md @@ -0,0 +1,237 @@ +--- +title: "Glyph" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente un glyphe de police." +type: docs +weight: 49 +url: /fr/java/com.aspose.font/glyph/ +--- +**Inheritance:** +java.lang.Object + +**All Implemented Interfaces:** +java.lang.Cloneable +``` +public class Glyph implements Cloneable +``` + +Représente un glyphe de police. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [clone()](#clone--) | Renvoie une copie du glyphe. | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getGlyphBBox()](#getGlyphBBox--) | Obtient le BBox du glyphe. | +| [getLeftSidebearingX()](#getLeftSidebearingX--) | Obtient la coordonnée x du bord latéral du glyphe. | +| [getLeftSidebearingY()](#getLeftSidebearingY--) | Obtient la coordonnée y du bord latéral du glyphe. | +| [getPath()](#getPath--) | Obtient le chemin du glyphe. | +| [getSourceResolution()](#getSourceResolution--) | Obtient la résolution du jeu de commandes source. | +| [getState()](#getState--) | Obtient l'état du glyphe. | +| [getWidthVectorX()](#getWidthVectorX--) | Obtient le vecteur de largeur du glyphe. | +| [getWidthVectorY()](#getWidthVectorY--) | Obtient le vecteur de largeur du glyphe. | +| [hashCode()](#hashCode--) | | +| [isEmpty()](#isEmpty--) | Vrai si le glyphe ne contient pas d'instructions de dessin. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### clone() {#clone--} +``` +public Object clone() +``` + + +Renvoie une copie du glyphe. + +**Returns:** +java.lang.Object - Copie du glyphe. +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getGlyphBBox() {#getGlyphBBox--} +``` +public FontBBox getGlyphBBox() +``` + + +Obtient le BBox du glyphe. + +**Returns:** +[FontBBox](../../com.aspose.font/fontbbox) - Glyph BBox +### getLeftSidebearingX() {#getLeftSidebearingX--} +``` +public double getLeftSidebearingX() +``` + + +Obtient la coordonnée x du bord latéral du glyphe. + +**Returns:** +double - Coordonnée x du bord latéral du glyphe. +### getLeftSidebearingY() {#getLeftSidebearingY--} +``` +public double getLeftSidebearingY() +``` + + +Obtient la coordonnée y du bord latéral du glyphe. + +**Returns:** +double - Coordonnée y du bord latéral du glyphe. +### getPath() {#getPath--} +``` +public SegmentPath getPath() +``` + + +Obtient le chemin du glyphe. + +**Returns:** +[SegmentPath](../../com.aspose.font/segmentpath) - Glyph path. +### getSourceResolution() {#getSourceResolution--} +``` +public int getSourceResolution() +``` + + +Obtient la résolution du jeu de commandes source. + +**Returns:** +int - Résolution du jeu de commandes source. +### getState() {#getState--} +``` +public GlyphState getState() +``` + + +Obtient l'état du glyphe. + +**Returns:** +[GlyphState](../../com.aspose.font/glyphstate) - Glyph state. +### getWidthVectorX() {#getWidthVectorX--} +``` +public double getWidthVectorX() +``` + + +Obtient le vecteur de largeur du glyphe. Coordonnée x. + +**Returns:** +double - Vecteur de largeur du glyphe. Coordonnée x. +### getWidthVectorY() {#getWidthVectorY--} +``` +public double getWidthVectorY() +``` + + +Obtient le vecteur de largeur du glyphe. Coordonnée y. + +**Returns:** +double - Vecteur de largeur du glyphe. Coordonnée y. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### isEmpty() {#isEmpty--} +``` +public boolean isEmpty() +``` + + +Vrai si le glyphe ne contient pas d'instructions de dessin. + +**Returns:** +boolean - Vrai si le glyphe ne contient pas d'instructions de dessin. +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/glyphid/_index.md b/french/java/com.aspose.font/glyphid/_index.md new file mode 100644 index 0000000000..f992deed0a --- /dev/null +++ b/french/java/com.aspose.font/glyphid/_index.md @@ -0,0 +1,180 @@ +--- +title: "GlyphId" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente les identifiants de glyphes disponibles dans la police." +type: docs +weight: 50 +url: /fr/java/com.aspose.font/glyphid/ +--- +**Inheritance:** +java.lang.Object +``` +public abstract class GlyphId +``` + +Représente les identifiants de glyphes disponibles dans la police. Un identifiant de glyphe est un nombre unique pour un glyphe, dépendant du type de police. Par exemple : l'identifiant de Type1 est un nom de glyphe, instance de la classe ( GlyphStringId ). L'identifiant de TTF est un index entier, instance de la classe ( GlyphUInt32Id ). +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object obj)](#equals-java.lang.Object-) | Renvoie vrai si deux identifiants de glyphe ne sont pas égaux. | +| [getClass()](#getClass--) | | +| [hashCode()](#hashCode--) | Renvoie le code de hachage de l'objet. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [op_Equality(GlyphId obj1, Object obj2)](#op-Equality-com.aspose.font.GlyphId-java.lang.Object-) | Renvoie vrai si deux identifiants de glyphe sont égaux. | +| [op_Inequality(GlyphId obj1, Object obj2)](#op-Inequality-com.aspose.font.GlyphId-java.lang.Object-) | Renvoie vrai si deux identifiants de glyphe ne sont pas égaux. | +| [toGlyphStringId()](#toGlyphStringId--) | Conversion virtuelle en GlyphStringId. | +| [toGlyphUInt32Id()](#toGlyphUInt32Id--) | Conversion virtuelle en GlyphUInt32Id. | +| [toString()](#toString--) | Renvoie la représentation sous forme de chaîne de l'identifiant du glyphe. | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object obj) {#equals-java.lang.Object-} +``` +public boolean equals(Object obj) +``` + + +Renvoie vrai si deux identifiants de glyphe ne sont pas égaux. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| obj | java.lang.Object | Identifiant du glyphe à comparer. | + +**Returns:** +booléen - Résultat de la comparaison. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public abstract int hashCode() +``` + + +Renvoie le code de hachage de l'objet. + +**Returns:** +int - Code de hachage de l'objet. +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### op_Equality(GlyphId obj1, Object obj2) {#op-Equality-com.aspose.font.GlyphId-java.lang.Object-} +``` +public static boolean op_Equality(GlyphId obj1, Object obj2) +``` + + +Renvoie vrai si deux identifiants de glyphe sont égaux. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| obj1 | [GlyphId](../../com.aspose.font/glyphid) | Premier identifiant de glyphe à comparer. | +| obj2 | java.lang.Object | Deuxième identifiant de glyphe à comparer. | + +**Returns:** +booléen - Résultat de la comparaison. +### op_Inequality(GlyphId obj1, Object obj2) {#op-Inequality-com.aspose.font.GlyphId-java.lang.Object-} +``` +public static boolean op_Inequality(GlyphId obj1, Object obj2) +``` + + +Renvoie vrai si deux identifiants de glyphe ne sont pas égaux. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| obj1 | [GlyphId](../../com.aspose.font/glyphid) | Premier identifiant de glyphe à comparer. | +| obj2 | java.lang.Object | Deuxième identifiant de glyphe à comparer. | + +**Returns:** +booléen - Résultat de la comparaison. +### toGlyphStringId() {#toGlyphStringId--} +``` +public GlyphStringId toGlyphStringId() +``` + + +Conversion virtuelle en GlyphStringId. GlyphStringId surcharge pour retourner une instance. + +**Returns:** +[GlyphStringId](../../com.aspose.font/glyphstringid) - null +### toGlyphUInt32Id() {#toGlyphUInt32Id--} +``` +public GlyphUInt32Id toGlyphUInt32Id() +``` + + +Conversion virtuelle en GlyphUInt32Id. GlyphUInt32Id surcharge pour retourner l'instance. + +**Returns:** +[GlyphUInt32Id](../../com.aspose.font/glyphuint32id) - null +### toString() {#toString--} +``` +public abstract String toString() +``` + + +Renvoie la représentation sous forme de chaîne de l'identifiant du glyphe. + +**Returns:** +java.lang.String - identifiant du glyphe +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/glyphidlist/_index.md b/french/java/com.aspose.font/glyphidlist/_index.md new file mode 100644 index 0000000000..94120e93a2 --- /dev/null +++ b/french/java/com.aspose.font/glyphidlist/_index.md @@ -0,0 +1,613 @@ +--- +title: "GlyphIdList" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente la liste des identifiants de glyphes." +type: docs +weight: 51 +url: /fr/java/com.aspose.font/glyphidlist/ +--- +**Inheritance:** +java.lang.Object, java.util.AbstractCollection, java.util.AbstractList, java.util.ArrayList +``` +public class GlyphIdList extends ArrayList +``` + +Représente la liste des identifiants de glyphes. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [toArray(T[] arg0)](#-T-toArray-T---) | | +| [add(E arg0)](#add-E-) | | +| [add(GlyphId glyphId)](#add-com.aspose.font.GlyphId-) | Ajoute l'identifiant de glyphe à la liste. | +| [add(int arg0, E arg1)](#add-int-E-) | | +| [addAll(int arg0, Collection arg1)](#addAll-int-java.util.Collection---extends-E--) | | +| [addAll(Collection arg0)](#addAll-java.util.Collection---extends-E--) | | +| [clear()](#clear--) | Vide la liste. | +| [clone()](#clone--) | | +| [contains(GlyphId glyphId)](#contains-com.aspose.font.GlyphId-) | Renvoie vrai si l'identifiant du glyphe se trouve dans la liste. | +| [contains(Object arg0)](#contains-java.lang.Object-) | | +| [containsAll(Collection arg0)](#containsAll-java.util.Collection----) | | +| [ensureCapacity(int arg0)](#ensureCapacity-int-) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [forEach(Consumer arg0)](#forEach-java.util.function.Consumer---super-E--) | | +| [get(int index)](#get-int-) | Renvoie l'identifiant du glyphe par l'index. | +| [getClass()](#getClass--) | | +| [hashCode()](#hashCode--) | | +| [indexOf(Object arg0)](#indexOf-java.lang.Object-) | | +| [isEmpty()](#isEmpty--) | | +| [iterator()](#iterator--) | | +| [lastIndexOf(Object arg0)](#lastIndexOf-java.lang.Object-) | | +| [listIterator()](#listIterator--) | | +| [listIterator(int arg0)](#listIterator-int-) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [remove(GlyphId glyphId)](#remove-com.aspose.font.GlyphId-) | Supprime l'identifiant du glyphe de la liste. | +| [remove(int arg0)](#remove-int-) | | +| [remove(Object arg0)](#remove-java.lang.Object-) | | +| [removeAll(Collection arg0)](#removeAll-java.util.Collection----) | | +| [removeIf(Predicate arg0)](#removeIf-java.util.function.Predicate---super-E--) | | +| [replaceAll(UnaryOperator arg0)](#replaceAll-java.util.function.UnaryOperator-E--) | | +| [retainAll(Collection arg0)](#retainAll-java.util.Collection----) | | +| [set(int arg0, E arg1)](#set-int-E-) | | +| [size()](#size--) | | +| [sort(Comparator arg0)](#sort-java.util.Comparator---super-E--) | | +| [spliterator()](#spliterator--) | | +| [subList(int arg0, int arg1)](#subList-int-int-) | | +| [toArray()](#toArray--) | | +| [toString()](#toString--) | | +| [trimToSize()](#trimToSize--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### toArray(T[] arg0) {#-T-toArray-T---} +``` +public T[] toArray(T[] arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | T[] | | + +**Returns:** +T[] +### add(E arg0) {#add-E-} +``` +public boolean add(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +boolean +### add(GlyphId glyphId) {#add-com.aspose.font.GlyphId-} +``` +public boolean add(GlyphId glyphId) +``` + + +Ajoute l'identifiant de glyphe à la liste. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| glyphId | [GlyphId](../../com.aspose.font/glyphid) | identifiant du glyphe | + +**Returns:** +boolean +### add(int arg0, E arg1) {#add-int-E-} +``` +public void add(int arg0, E arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | E | | + +### addAll(int arg0, Collection arg1) {#addAll-int-java.util.Collection---extends-E--} +``` +public boolean addAll(int arg0, Collection arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | java.util.Collection | | + +**Returns:** +boolean +### addAll(Collection arg0) {#addAll-java.util.Collection---extends-E--} +``` +public boolean addAll(Collection arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.util.Collection | | + +**Returns:** +boolean +### clear() {#clear--} +``` +public void clear() +``` + + +Vide la liste. + +### clone() {#clone--} +``` +public Object clone() +``` + + + + +**Returns:** +java.lang.Object +### contains(GlyphId glyphId) {#contains-com.aspose.font.GlyphId-} +``` +public boolean contains(GlyphId glyphId) +``` + + +Renvoie vrai si l'identifiant du glyphe se trouve dans la liste. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| glyphId | [GlyphId](../../com.aspose.font/glyphid) | identifiant du glyphe | + +**Returns:** +booléen - vrai si l'identifiant du glyphe se trouve dans la liste, sinon faux +### contains(Object arg0) {#contains-java.lang.Object-} +``` +public boolean contains(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### containsAll(Collection arg0) {#containsAll-java.util.Collection----} +``` +public boolean containsAll(Collection arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.util.Collection | | + +**Returns:** +boolean +### ensureCapacity(int arg0) {#ensureCapacity-int-} +``` +public void ensureCapacity(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### forEach(Consumer arg0) {#forEach-java.util.function.Consumer---super-E--} +``` +public void forEach(Consumer arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.util.function.Consumer | | + +### get(int index) {#get-int-} +``` +public GlyphId get(int index) +``` + + +Renvoie l'identifiant du glyphe par l'index. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| index | int | index du glyphe dans la liste | + +**Returns:** +[GlyphId](../../com.aspose.font/glyphid) +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public int hashCode() +``` + + + + +**Returns:** +int +### indexOf(Object arg0) {#indexOf-java.lang.Object-} +``` +public int indexOf(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +int +### isEmpty() {#isEmpty--} +``` +public boolean isEmpty() +``` + + + + +**Returns:** +boolean +### iterator() {#iterator--} +``` +public Iterator iterator() +``` + + + + +**Returns:** +java.util.Iterator +### lastIndexOf(Object arg0) {#lastIndexOf-java.lang.Object-} +``` +public int lastIndexOf(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +int +### listIterator() {#listIterator--} +``` +public ListIterator listIterator() +``` + + + + +**Returns:** +java.util.ListIterator +### listIterator(int arg0) {#listIterator-int-} +``` +public ListIterator listIterator(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +java.util.ListIterator +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### remove(GlyphId glyphId) {#remove-com.aspose.font.GlyphId-} +``` +public boolean remove(GlyphId glyphId) +``` + + +Supprime l'identifiant du glyphe de la liste. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| glyphId | [GlyphId](../../com.aspose.font/glyphid) | identifiant du glyphe | + +**Returns:** +booléen - vrai si l'élément est supprimé avec succès ; sinon, faux +### remove(int arg0) {#remove-int-} +``` +public E remove(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +E +### remove(Object arg0) {#remove-java.lang.Object-} +``` +public boolean remove(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### removeAll(Collection arg0) {#removeAll-java.util.Collection----} +``` +public boolean removeAll(Collection arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.util.Collection | | + +**Returns:** +boolean +### removeIf(Predicate arg0) {#removeIf-java.util.function.Predicate---super-E--} +``` +public boolean removeIf(Predicate arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.util.function.Predicate | | + +**Returns:** +boolean +### replaceAll(UnaryOperator arg0) {#replaceAll-java.util.function.UnaryOperator-E--} +``` +public void replaceAll(UnaryOperator arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.util.function.UnaryOperator | | + +### retainAll(Collection arg0) {#retainAll-java.util.Collection----} +``` +public boolean retainAll(Collection arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.util.Collection | | + +**Returns:** +boolean +### set(int arg0, E arg1) {#set-int-E-} +``` +public E set(int arg0, E arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | E | | + +**Returns:** +E +### size() {#size--} +``` +public int size() +``` + + + + +**Returns:** +int +### sort(Comparator arg0) {#sort-java.util.Comparator---super-E--} +``` +public void sort(Comparator arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.util.Comparator | | + +### spliterator() {#spliterator--} +``` +public Spliterator spliterator() +``` + + + + +**Returns:** +java.util.Spliterator +### subList(int arg0, int arg1) {#subList-int-int-} +``` +public List subList(int arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | + +**Returns:** +java.util.List +### toArray() {#toArray--} +``` +public Object[] toArray() +``` + + + + +**Returns:** +java.lang.Object[] +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### trimToSize() {#trimToSize--} +``` +public void trimToSize() +``` + + + + +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/glyphidtype/_index.md b/french/java/com.aspose.font/glyphidtype/_index.md new file mode 100644 index 0000000000..1ccb5ac413 --- /dev/null +++ b/french/java/com.aspose.font/glyphidtype/_index.md @@ -0,0 +1,250 @@ +--- +title: "GlyphIdType" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Spécifie les types d'identifiants de glyphe." +type: docs +weight: 137 +url: /fr/java/com.aspose.font/glyphidtype/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum GlyphIdType extends Enum +``` + +Spécifie les types d'identifiants de glyphe. +## Champs + +| Champ | Description | +| --- | --- | +| [ASCIIStringName](#ASCIIStringName) | Nom de glyphe en chaîne ASCII. | +| [Int32Index](#Int32Index) | Index de glyphe entier. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### ASCIIStringName {#ASCIIStringName} +``` +public static final GlyphIdType ASCIIStringName +``` + + +Nom de glyphe en chaîne ASCII. + +### Int32Index {#Int32Index} +``` +public static final GlyphIdType Int32Index +``` + + +Index de glyphe entier. + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static GlyphIdType valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[GlyphIdType](../../com.aspose.font/glyphidtype) +### values() {#values--} +``` +public static GlyphIdType[] values() +``` + + + + +**Returns:** +com.aspose.font.GlyphIdType[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/glyphoutlinerenderer/_index.md b/french/java/com.aspose.font/glyphoutlinerenderer/_index.md new file mode 100644 index 0000000000..f1641b4dfb --- /dev/null +++ b/french/java/com.aspose.font/glyphoutlinerenderer/_index.md @@ -0,0 +1,238 @@ +--- +title: "GlyphOutlineRenderer" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente le rendu du contour du glyphe." +type: docs +weight: 52 +url: /fr/java/com.aspose.font/glyphoutlinerenderer/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.font.GlyphRendererBase](../../com.aspose.font/glyphrendererbase) +``` +public class GlyphOutlineRenderer extends GlyphRendererBase +``` + +Représente le rendu du contour du glyphe. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [GlyphOutlineRenderer(IGlyphOutlinePainter painter)](#GlyphOutlineRenderer-com.aspose.font.IGlyphOutlinePainter-) | Initialise un nouvel objet GlyphOutlineRenderer. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [renderGlyph(IFont font, GlyphId glyphId)](#renderGlyph-com.aspose.font.IFont-com.aspose.font.GlyphId-) | Rend le glyphe. | +| [renderGlyph(IFont font, GlyphId glyphId, Glyph glyph, TransformationMatrix glyphPlacementMatrix)](#renderGlyph-com.aspose.font.IFont-com.aspose.font.GlyphId-com.aspose.font.Glyph-com.aspose.font.TransformationMatrix-) | Rend le glyphe, un objectif de cette version surchargée - à utiliser avec le cache des glyphes. | +| [renderGlyph(IFont font, GlyphId glyphId, TransformationMatrix glyphPlacementMatrix)](#renderGlyph-com.aspose.font.IFont-com.aspose.font.GlyphId-com.aspose.font.TransformationMatrix-) | Rend le glyphe. | +| [renderGlyph(IFont font, long glyphIndex)](#renderGlyph-com.aspose.font.IFont-long-) | Rend le glyphe | +| [renderGlyph(IFont font, long glyphIndex, TransformationMatrix glyphPlacementMatrix)](#renderGlyph-com.aspose.font.IFont-long-com.aspose.font.TransformationMatrix-) | Rend le glyphe. | +| [renderIndependentGlyphPath(IFont font, GlyphId glyphId, Glyph glyph, TransformationMatrix glyphPlacementMatrix)](#renderIndependentGlyphPath-com.aspose.font.IFont-com.aspose.font.GlyphId-com.aspose.font.Glyph-com.aspose.font.TransformationMatrix-) | Rend le glyphe en utilisant un chemin de glyphe indépendant. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### GlyphOutlineRenderer(IGlyphOutlinePainter painter) {#GlyphOutlineRenderer-com.aspose.font.IGlyphOutlinePainter-} +``` +public GlyphOutlineRenderer(IGlyphOutlinePainter painter) +``` + + +Initialise un nouvel objet GlyphOutlineRenderer. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| painter | [IGlyphOutlinePainter](../../com.aspose.font/iglyphoutlinepainter) | Peintre de glyphe. | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### renderGlyph(IFont font, GlyphId glyphId) {#renderGlyph-com.aspose.font.IFont-com.aspose.font.GlyphId-} +``` +public void renderGlyph(IFont font, GlyphId glyphId) +``` + + +Rend le glyphe. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| font | [IFont](../../com.aspose.font/ifont) | La police qui contient le glyphe. | +| glyphId | [GlyphId](../../com.aspose.font/glyphid) | Indice physique du glyphe dans la police. Notez que ce n'est pas un Unicode. | + +### renderGlyph(IFont font, GlyphId glyphId, Glyph glyph, TransformationMatrix glyphPlacementMatrix) {#renderGlyph-com.aspose.font.IFont-com.aspose.font.GlyphId-com.aspose.font.Glyph-com.aspose.font.TransformationMatrix-} +``` +public void renderGlyph(IFont font, GlyphId glyphId, Glyph glyph, TransformationMatrix glyphPlacementMatrix) +``` + + +Rend le glyphe, un objectif de cette version surchargée - à utiliser avec le cache des glyphes. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| font | [IFont](../../com.aspose.font/ifont) | La police qui contient le glyphe. | +| glyphId | [GlyphId](../../com.aspose.font/glyphid) | Indice physique du glyphe dans la police. Notez que ce n'est pas un Unicode. | +| glyph | [Glyph](../../com.aspose.font/glyph) | Glyphe à rendre. | +| glyphPlacementMatrix | [TransformationMatrix](../../com.aspose.font/transformationmatrix) | Matrice appliquée aux coordonnées du glyphe. | + +### renderGlyph(IFont font, GlyphId glyphId, TransformationMatrix glyphPlacementMatrix) {#renderGlyph-com.aspose.font.IFont-com.aspose.font.GlyphId-com.aspose.font.TransformationMatrix-} +``` +public void renderGlyph(IFont font, GlyphId glyphId, TransformationMatrix glyphPlacementMatrix) +``` + + +Rend le glyphe. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| font | [IFont](../../com.aspose.font/ifont) | La police qui contient le glyphe. | +| glyphId | [GlyphId](../../com.aspose.font/glyphid) | Indice physique du glyphe dans la police. Notez que ce n'est pas un Unicode. | +| glyphPlacementMatrix | [TransformationMatrix](../../com.aspose.font/transformationmatrix) | Matrice appliquée aux coordonnées du glyphe. | + +### renderGlyph(IFont font, long glyphIndex) {#renderGlyph-com.aspose.font.IFont-long-} +``` +public void renderGlyph(IFont font, long glyphIndex) +``` + + +Rend le glyphe + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| font | [IFont](../../com.aspose.font/ifont) | La police qui contient le glyphe. | +| glyphIndex | long | Indice physique du glyphe dans la police. Notez que ce n'est pas un Unicode. | + +### renderGlyph(IFont font, long glyphIndex, TransformationMatrix glyphPlacementMatrix) {#renderGlyph-com.aspose.font.IFont-long-com.aspose.font.TransformationMatrix-} +``` +public void renderGlyph(IFont font, long glyphIndex, TransformationMatrix glyphPlacementMatrix) +``` + + +Rend le glyphe. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| font | [IFont](../../com.aspose.font/ifont) | La police qui contient le glyphe. | +| glyphIndex | long | Indice physique du glyphe dans la police. Notez que ce n'est pas un Unicode. | +| glyphPlacementMatrix | [TransformationMatrix](../../com.aspose.font/transformationmatrix) | Matrice appliquée aux coordonnées du glyphe. | + +### renderIndependentGlyphPath(IFont font, GlyphId glyphId, Glyph glyph, TransformationMatrix glyphPlacementMatrix) {#renderIndependentGlyphPath-com.aspose.font.IFont-com.aspose.font.GlyphId-com.aspose.font.Glyph-com.aspose.font.TransformationMatrix-} +``` +public void renderIndependentGlyphPath(IFont font, GlyphId glyphId, Glyph glyph, TransformationMatrix glyphPlacementMatrix) +``` + + +Rendu du glyphe en utilisant un chemin de glyphe indépendant. La famille de fonctions RenderGlyph() modifie le chemin du glyphe lors du rendu. Cela entraîne la nécessité de recharger ce glyphe à nouveau. Cette fonction utilise une copie du chemin du glyphe et ne modifie pas le chemin du glyphe original, de sorte que le même glyphe puisse être réutilisé plusieurs fois. Cette version de la fonction est destinée à être utilisée avec un cache de glyphes. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| font | [IFont](../../com.aspose.font/ifont) | La police qui contient le glyphe. | +| glyphId | [GlyphId](../../com.aspose.font/glyphid) | Indice physique du glyphe dans la police. Notez que ce n'est pas un Unicode. | +| glyph | [Glyph](../../com.aspose.font/glyph) | Glyphe à rendre. | +| glyphPlacementMatrix | [TransformationMatrix](../../com.aspose.font/transformationmatrix) | Matrice appliquée aux coordonnées du glyphe. | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/glyphrendererbase/_index.md b/french/java/com.aspose.font/glyphrendererbase/_index.md new file mode 100644 index 0000000000..b15a65ed83 --- /dev/null +++ b/french/java/com.aspose.font/glyphrendererbase/_index.md @@ -0,0 +1,223 @@ +--- +title: "GlyphRendererBase" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente la classe de base pour les rendus de glyphes." +type: docs +weight: 53 +url: /fr/java/com.aspose.font/glyphrendererbase/ +--- +**Inheritance:** +java.lang.Object + +**All Implemented Interfaces:** +[com.aspose.font.IGlyphRenderer](../../com.aspose.font/iglyphrenderer) +``` +public abstract class GlyphRendererBase implements IGlyphRenderer +``` + +Représente la classe de base pour les rendus de glyphes. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [renderGlyph(IFont font, GlyphId glyphId)](#renderGlyph-com.aspose.font.IFont-com.aspose.font.GlyphId-) | Rend le glyphe. | +| [renderGlyph(IFont font, GlyphId glyphId, Glyph glyph, TransformationMatrix glyphPlacementMatrix)](#renderGlyph-com.aspose.font.IFont-com.aspose.font.GlyphId-com.aspose.font.Glyph-com.aspose.font.TransformationMatrix-) | Rend le glyphe, un objectif de cette version surchargée - à utiliser avec le cache des glyphes. | +| [renderGlyph(IFont font, GlyphId glyphId, TransformationMatrix glyphPlacementMatrix)](#renderGlyph-com.aspose.font.IFont-com.aspose.font.GlyphId-com.aspose.font.TransformationMatrix-) | Rend le glyphe. | +| [renderGlyph(IFont font, long glyphIndex)](#renderGlyph-com.aspose.font.IFont-long-) | Rend le glyphe | +| [renderGlyph(IFont font, long glyphIndex, TransformationMatrix glyphPlacementMatrix)](#renderGlyph-com.aspose.font.IFont-long-com.aspose.font.TransformationMatrix-) | Rend le glyphe. | +| [renderIndependentGlyphPath(IFont font, GlyphId glyphId, Glyph glyph, TransformationMatrix glyphPlacementMatrix)](#renderIndependentGlyphPath-com.aspose.font.IFont-com.aspose.font.GlyphId-com.aspose.font.Glyph-com.aspose.font.TransformationMatrix-) | Rend le glyphe en utilisant un chemin de glyphe indépendant. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### renderGlyph(IFont font, GlyphId glyphId) {#renderGlyph-com.aspose.font.IFont-com.aspose.font.GlyphId-} +``` +public void renderGlyph(IFont font, GlyphId glyphId) +``` + + +Rend le glyphe. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| font | [IFont](../../com.aspose.font/ifont) | La police qui contient le glyphe. | +| glyphId | [GlyphId](../../com.aspose.font/glyphid) | Indice physique du glyphe dans la police. Notez que ce n'est pas un Unicode. | + +### renderGlyph(IFont font, GlyphId glyphId, Glyph glyph, TransformationMatrix glyphPlacementMatrix) {#renderGlyph-com.aspose.font.IFont-com.aspose.font.GlyphId-com.aspose.font.Glyph-com.aspose.font.TransformationMatrix-} +``` +public void renderGlyph(IFont font, GlyphId glyphId, Glyph glyph, TransformationMatrix glyphPlacementMatrix) +``` + + +Rend le glyphe, un objectif de cette version surchargée - à utiliser avec le cache des glyphes. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| font | [IFont](../../com.aspose.font/ifont) | La police qui contient le glyphe. | +| glyphId | [GlyphId](../../com.aspose.font/glyphid) | Indice physique du glyphe dans la police. Notez que ce n'est pas un Unicode. | +| glyph | [Glyph](../../com.aspose.font/glyph) | Glyphe à rendre. | +| glyphPlacementMatrix | [TransformationMatrix](../../com.aspose.font/transformationmatrix) | Matrice appliquée aux coordonnées du glyphe. | + +### renderGlyph(IFont font, GlyphId glyphId, TransformationMatrix glyphPlacementMatrix) {#renderGlyph-com.aspose.font.IFont-com.aspose.font.GlyphId-com.aspose.font.TransformationMatrix-} +``` +public void renderGlyph(IFont font, GlyphId glyphId, TransformationMatrix glyphPlacementMatrix) +``` + + +Rend le glyphe. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| font | [IFont](../../com.aspose.font/ifont) | La police qui contient le glyphe. | +| glyphId | [GlyphId](../../com.aspose.font/glyphid) | Indice physique du glyphe dans la police. Notez que ce n'est pas un Unicode. | +| glyphPlacementMatrix | [TransformationMatrix](../../com.aspose.font/transformationmatrix) | Matrice appliquée aux coordonnées du glyphe. | + +### renderGlyph(IFont font, long glyphIndex) {#renderGlyph-com.aspose.font.IFont-long-} +``` +public void renderGlyph(IFont font, long glyphIndex) +``` + + +Rend le glyphe + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| font | [IFont](../../com.aspose.font/ifont) | La police qui contient le glyphe. | +| glyphIndex | long | Indice physique du glyphe dans la police. Notez que ce n'est pas un Unicode. | + +### renderGlyph(IFont font, long glyphIndex, TransformationMatrix glyphPlacementMatrix) {#renderGlyph-com.aspose.font.IFont-long-com.aspose.font.TransformationMatrix-} +``` +public void renderGlyph(IFont font, long glyphIndex, TransformationMatrix glyphPlacementMatrix) +``` + + +Rend le glyphe. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| font | [IFont](../../com.aspose.font/ifont) | La police qui contient le glyphe. | +| glyphIndex | long | Indice physique du glyphe dans la police. Notez que ce n'est pas un Unicode. | +| glyphPlacementMatrix | [TransformationMatrix](../../com.aspose.font/transformationmatrix) | Matrice appliquée aux coordonnées du glyphe. | + +### renderIndependentGlyphPath(IFont font, GlyphId glyphId, Glyph glyph, TransformationMatrix glyphPlacementMatrix) {#renderIndependentGlyphPath-com.aspose.font.IFont-com.aspose.font.GlyphId-com.aspose.font.Glyph-com.aspose.font.TransformationMatrix-} +``` +public void renderIndependentGlyphPath(IFont font, GlyphId glyphId, Glyph glyph, TransformationMatrix glyphPlacementMatrix) +``` + + +Rendu du glyphe en utilisant un chemin de glyphe indépendant. La famille de fonctions RenderGlyph() modifie le chemin du glyphe lors du rendu. Cela entraîne la nécessité de recharger ce glyphe à nouveau. Cette fonction utilise une copie du chemin du glyphe et ne modifie pas le chemin du glyphe original, de sorte que le même glyphe puisse être réutilisé plusieurs fois. Cette version de la fonction est destinée à être utilisée avec un cache de glyphes. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| font | [IFont](../../com.aspose.font/ifont) | La police qui contient le glyphe. | +| glyphId | [GlyphId](../../com.aspose.font/glyphid) | Indice physique du glyphe dans la police. Notez que ce n'est pas un Unicode. | +| glyph | [Glyph](../../com.aspose.font/glyph) | Glyphe à rendre. | +| glyphPlacementMatrix | [TransformationMatrix](../../com.aspose.font/transformationmatrix) | Matrice appliquée aux coordonnées du glyphe. | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/glyphstate/_index.md b/french/java/com.aspose.font/glyphstate/_index.md new file mode 100644 index 0000000000..5ab2361a2d --- /dev/null +++ b/french/java/com.aspose.font/glyphstate/_index.md @@ -0,0 +1,250 @@ +--- +title: "GlyphState" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Spécifie l'état du glyphe." +type: docs +weight: 138 +url: /fr/java/com.aspose.font/glyphstate/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum GlyphState extends Enum +``` + +Spécifie l'état du glyphe. +## Champs + +| Champ | Description | +| --- | --- | +| [ParsedWithErrors](#ParsedWithErrors) | Le glyphe a été analysé avec des erreurs. | +| [Success](#Success) | Le glyphe a été analysé avec succès. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### ParsedWithErrors {#ParsedWithErrors} +``` +public static final GlyphState ParsedWithErrors +``` + + +Le glyphe a été analysé avec des erreurs. + +### Success {#Success} +``` +public static final GlyphState Success +``` + + +Le glyphe a été analysé avec succès. + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static GlyphState valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[GlyphState](../../com.aspose.font/glyphstate) +### values() {#values--} +``` +public static GlyphState[] values() +``` + + + + +**Returns:** +com.aspose.font.GlyphState[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/glyphstringid/_index.md b/french/java/com.aspose.font/glyphstringid/_index.md new file mode 100644 index 0000000000..52ecda30a8 --- /dev/null +++ b/french/java/com.aspose.font/glyphstringid/_index.md @@ -0,0 +1,234 @@ +--- +title: "GlyphStringId" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente l'identifiant de glyphe de chaîne." +type: docs +weight: 54 +url: /fr/java/com.aspose.font/glyphstringid/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.font.GlyphId](../../com.aspose.font/glyphid) +``` +public class GlyphStringId extends GlyphId +``` + +Représente l'identifiant de glyphe de chaîne. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [GlyphStringId(String value)](#GlyphStringId-java.lang.String-) | Initialise un nouvel objet GlyphStringID. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object obj)](#equals-java.lang.Object-) | Renvoie vrai si les identifiants de chaîne sont égaux. | +| [getClass()](#getClass--) | | +| [getNotDefId()](#getNotDefId--) | Obtient l'identifiant de glyphe non défini. | +| [getValue()](#getValue--) | Obtient la valeur de la chaîne. | +| [hashCode()](#hashCode--) | Implémentation de GetHashCode. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [op_Equality(GlyphId obj1, Object obj2)](#op-Equality-com.aspose.font.GlyphId-java.lang.Object-) | Renvoie vrai si deux identifiants de glyphe sont égaux. | +| [op_Inequality(GlyphId obj1, Object obj2)](#op-Inequality-com.aspose.font.GlyphId-java.lang.Object-) | Renvoie vrai si deux identifiants de glyphe ne sont pas égaux. | +| [setValue(String value)](#setValue-java.lang.String-) | Définit la valeur de la chaîne. | +| [toGlyphStringId()](#toGlyphStringId--) | Convertir GlyphId en GlyphStringId | +| [toGlyphUInt32Id()](#toGlyphUInt32Id--) | Conversion virtuelle en GlyphUInt32Id. | +| [toString()](#toString--) | Renvoie la valeur chaîne de l'ID du glyphe. | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### GlyphStringId(String value) {#GlyphStringId-java.lang.String-} +``` +public GlyphStringId(String value) +``` + + +Initialise un nouvel objet GlyphStringID. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | Identifiant du glyph. | + +### equals(Object obj) {#equals-java.lang.Object-} +``` +public boolean equals(Object obj) +``` + + +Renvoie vrai si les identifiants de chaîne sont égaux. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| obj | java.lang.Object | Identifiant de chaîne de glyphe à comparer avec. | + +**Returns:** +booléen - Résultat de la comparaison +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getNotDefId() {#getNotDefId--} +``` +public static GlyphStringId getNotDefId() +``` + + +Obtient l'identifiant de glyphe non défini. + +**Returns:** +[GlyphStringId](../../com.aspose.font/glyphstringid) - Not defined glyph id. +### getValue() {#getValue--} +``` +public String getValue() +``` + + +Obtient la valeur de la chaîne. + +**Returns:** +java.lang.String - Valeur de chaîne. +### hashCode() {#hashCode--} +``` +public int hashCode() +``` + + +Implémentation de GetHashCode. + +**Returns:** +int - Code de hachage de l'objet. +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### op_Equality(GlyphId obj1, Object obj2) {#op-Equality-com.aspose.font.GlyphId-java.lang.Object-} +``` +public static boolean op_Equality(GlyphId obj1, Object obj2) +``` + + +Renvoie vrai si deux identifiants de glyphe sont égaux. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| obj1 | [GlyphId](../../com.aspose.font/glyphid) | Premier identifiant de glyphe à comparer. | +| obj2 | java.lang.Object | Deuxième identifiant de glyphe à comparer. | + +**Returns:** +booléen - Résultat de la comparaison. +### op_Inequality(GlyphId obj1, Object obj2) {#op-Inequality-com.aspose.font.GlyphId-java.lang.Object-} +``` +public static boolean op_Inequality(GlyphId obj1, Object obj2) +``` + + +Renvoie vrai si deux identifiants de glyphe ne sont pas égaux. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| obj1 | [GlyphId](../../com.aspose.font/glyphid) | Premier identifiant de glyphe à comparer. | +| obj2 | java.lang.Object | Deuxième identifiant de glyphe à comparer. | + +**Returns:** +booléen - Résultat de la comparaison. +### setValue(String value) {#setValue-java.lang.String-} +``` +public void setValue(String value) +``` + + +Définit la valeur de la chaîne. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | Valeur de chaîne. | + +### toGlyphStringId() {#toGlyphStringId--} +``` +public GlyphStringId toGlyphStringId() +``` + + +Convertir GlyphId en GlyphStringId + +**Returns:** +[GlyphStringId](../../com.aspose.font/glyphstringid) - this +### toGlyphUInt32Id() {#toGlyphUInt32Id--} +``` +public GlyphUInt32Id toGlyphUInt32Id() +``` + + +Conversion virtuelle en GlyphUInt32Id. GlyphUInt32Id surcharge pour retourner l'instance. + +**Returns:** +[GlyphUInt32Id](../../com.aspose.font/glyphuint32id) - null +### toString() {#toString--} +``` +public String toString() +``` + + +Renvoie la valeur chaîne de l'ID du glyphe. + +**Returns:** +java.lang.String - Identifiant de glyphe. +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/glyphuint32id/_index.md b/french/java/com.aspose.font/glyphuint32id/_index.md new file mode 100644 index 0000000000..a772774c7a --- /dev/null +++ b/french/java/com.aspose.font/glyphuint32id/_index.md @@ -0,0 +1,268 @@ +--- +title: "GlyphUInt32Id" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente l'identifiant de glyphe entier." +type: docs +weight: 55 +url: /fr/java/com.aspose.font/glyphuint32id/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.font.GlyphId](../../com.aspose.font/glyphid) +``` +public class GlyphUInt32Id extends GlyphId +``` + +Représente l'identifiant de glyphe entier. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [GlyphUInt32Id(long value)](#GlyphUInt32Id-long-) | Initialise un nouveau GlyphUInt32Id objet. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object obj)](#equals-java.lang.Object-) | Renvoie vrai si les Ids sont égaux. | +| [getClass()](#getClass--) | | +| [getNotDefId()](#getNotDefId--) | Obtient l'identifiant de glyphe non défini. | +| [getValue()](#getValue--) | Obtient la valeur int de l'ID. | +| [hashCode()](#hashCode--) | Implémentation de GetHashCode. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [op_Equality(GlyphId obj1, Object obj2)](#op-Equality-com.aspose.font.GlyphId-java.lang.Object-) | Renvoie vrai si deux identifiants de glyphe sont égaux. | +| [op_Equality(GlyphUInt32Id obj1, Object obj2)](#op-Equality-com.aspose.font.GlyphUInt32Id-java.lang.Object-) | Implémentation de l'opérateur d'égalité. | +| [op_Inequality(GlyphId obj1, Object obj2)](#op-Inequality-com.aspose.font.GlyphId-java.lang.Object-) | Renvoie vrai si deux identifiants de glyphe ne sont pas égaux. | +| [op_Inequality(GlyphUInt32Id obj1, Object obj2)](#op-Inequality-com.aspose.font.GlyphUInt32Id-java.lang.Object-) | Implémentation de l'opérateur d'inégalité. | +| [setValue(long value)](#setValue-long-) | Définit la valeur int de l'ID. | +| [toGlyphStringId()](#toGlyphStringId--) | Conversion virtuelle en GlyphStringId. | +| [toGlyphUInt32Id()](#toGlyphUInt32Id--) | Convertir GlyphId en GlyphUInt32Id | +| [toString()](#toString--) | Obtient la représentation sous forme de chaîne de la valeur entière. | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### GlyphUInt32Id(long value) {#GlyphUInt32Id-long-} +``` +public GlyphUInt32Id(long value) +``` + + +Initialise un nouveau GlyphUInt32Id objet. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | long | Identifiant du glyph. | + +### equals(Object obj) {#equals-java.lang.Object-} +``` +public boolean equals(Object obj) +``` + + +Renvoie vrai si les Ids sont égaux. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| obj | java.lang.Object | identifiant de glyphe à comparer avec | + +**Returns:** +boolean - résultat de comparaison +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getNotDefId() {#getNotDefId--} +``` +public static GlyphUInt32Id getNotDefId() +``` + + +Obtient l'identifiant de glyphe non défini. + +**Returns:** +[GlyphUInt32Id](../../com.aspose.font/glyphuint32id) - Not defined glyph id. +### getValue() {#getValue--} +``` +public long getValue() +``` + + +Obtient la valeur int de l'ID. + +**Returns:** +long - Valeur Int de l'ID. +### hashCode() {#hashCode--} +``` +public int hashCode() +``` + + +Implémentation de GetHashCode. + +**Returns:** +int - code de hachage de l'objet +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### op_Equality(GlyphId obj1, Object obj2) {#op-Equality-com.aspose.font.GlyphId-java.lang.Object-} +``` +public static boolean op_Equality(GlyphId obj1, Object obj2) +``` + + +Renvoie vrai si deux identifiants de glyphe sont égaux. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| obj1 | [GlyphId](../../com.aspose.font/glyphid) | Premier identifiant de glyphe à comparer. | +| obj2 | java.lang.Object | Deuxième identifiant de glyphe à comparer. | + +**Returns:** +booléen - Résultat de la comparaison. +### op_Equality(GlyphUInt32Id obj1, Object obj2) {#op-Equality-com.aspose.font.GlyphUInt32Id-java.lang.Object-} +``` +public static boolean op_Equality(GlyphUInt32Id obj1, Object obj2) +``` + + +Implémentation de l'opérateur d'égalité. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| obj1 | [GlyphUInt32Id](../../com.aspose.font/glyphuint32id) | premier identifiant de glyphe à comparer | +| obj2 | java.lang.Object | deuxième identifiant de glyphe à comparer | + +**Returns:** +boolean - résultat de comparaison +### op_Inequality(GlyphId obj1, Object obj2) {#op-Inequality-com.aspose.font.GlyphId-java.lang.Object-} +``` +public static boolean op_Inequality(GlyphId obj1, Object obj2) +``` + + +Renvoie vrai si deux identifiants de glyphe ne sont pas égaux. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| obj1 | [GlyphId](../../com.aspose.font/glyphid) | Premier identifiant de glyphe à comparer. | +| obj2 | java.lang.Object | Deuxième identifiant de glyphe à comparer. | + +**Returns:** +booléen - Résultat de la comparaison. +### op_Inequality(GlyphUInt32Id obj1, Object obj2) {#op-Inequality-com.aspose.font.GlyphUInt32Id-java.lang.Object-} +``` +public static boolean op_Inequality(GlyphUInt32Id obj1, Object obj2) +``` + + +Implémentation de l'opérateur d'inégalité. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| obj1 | [GlyphUInt32Id](../../com.aspose.font/glyphuint32id) | premier identifiant de glyphe à comparer | +| obj2 | java.lang.Object | deuxième identifiant de glyphe à comparer | + +**Returns:** +boolean - résultat de comparaison +### setValue(long value) {#setValue-long-} +``` +public void setValue(long value) +``` + + +Définit la valeur int de l'ID. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | long | Valeur entière de l'ID. | + +### toGlyphStringId() {#toGlyphStringId--} +``` +public GlyphStringId toGlyphStringId() +``` + + +Conversion virtuelle en GlyphStringId. GlyphStringId surcharge pour retourner une instance. + +**Returns:** +[GlyphStringId](../../com.aspose.font/glyphstringid) - null +### toGlyphUInt32Id() {#toGlyphUInt32Id--} +``` +public GlyphUInt32Id toGlyphUInt32Id() +``` + + +Convertir GlyphId en GlyphUInt32Id + +**Returns:** +[GlyphUInt32Id](../../com.aspose.font/glyphuint32id) - this +### toString() {#toString--} +``` +public String toString() +``` + + +Obtient la représentation sous forme de chaîne de la valeur entière. + +**Returns:** +java.lang.String - identifiant du glyphe +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/helpersfactory/_index.md b/french/java/com.aspose.font/helpersfactory/_index.md new file mode 100644 index 0000000000..46f58ef43d --- /dev/null +++ b/french/java/com.aspose.font/helpersfactory/_index.md @@ -0,0 +1,141 @@ +--- +title: "HelpersFactory" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Crée des objets liés à l'espace de noms TtfHelpers" +type: docs +weight: 56 +url: /fr/java/com.aspose.font/helpersfactory/ +--- +**Inheritance:** +java.lang.Object +``` +public class HelpersFactory +``` + +Crée des objets liés à l'espace de noms TtfHelpers +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getFontCharactersMerger(TtfFont font1, TtfFont font2)](#getFontCharactersMerger-com.aspose.font.TtfFont-com.aspose.font.TtfFont-) | Crée une instance de IFontCharactersMerger | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getFontCharactersMerger(TtfFont font1, TtfFont font2) {#getFontCharactersMerger-com.aspose.font.TtfFont-com.aspose.font.TtfFont-} +``` +public static IFontCharactersMerger getFontCharactersMerger(TtfFont font1, TtfFont font2) +``` + + +Crée une instance de IFontCharactersMerger + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| font1 | [TtfFont](../../com.aspose.font/ttffont) | Première police à fusionner, cette police sera considérée comme police principale | +| font2 | [TtfFont](../../com.aspose.font/ttffont) | Deuxième police à fusionner | + +**Returns:** +[IFontCharactersMerger](../../com.aspose.font/ifontcharactersmerger) - IFontCharactersMerger instance +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/icffindexdataprovider/_index.md b/french/java/com.aspose.font/icffindexdataprovider/_index.md new file mode 100644 index 0000000000..ed58ce6520 --- /dev/null +++ b/french/java/com.aspose.font/icffindexdataprovider/_index.md @@ -0,0 +1,38 @@ +--- +title: "ICffIndexDataProvider" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Interface de base pour accéder aux structures INDEX des polices CFF." +type: docs +weight: 120 +url: /fr/java/com.aspose.font/icffindexdataprovider/ +---``` +public interface ICffIndexDataProvider +``` + +Basic interface for accessing INDEX structures of CFF fonts. +## Methods + +| Method | Description | +| --- | --- | +| [getCount()](#getCount--) | The number of objects in the CFF INDEX structure. | +| [getRawBytes()](#getRawBytes--) | Gets all the bytes of the CFF INDEX structure. | +### getCount() {#getCount--} +``` +public abstract int getCount() +``` + + +The number of objects in the CFF INDEX structure. + +**Returns:** +int +### getRawBytes() {#getRawBytes--} +``` +public abstract byte[] getRawBytes() +``` + + +Gets all the bytes of the CFF INDEX structure. + +**Returns:** +byte[] - Bytes of the CFF INDEX structure diff --git a/french/java/com.aspose.font/iencodingparameters/_index.md b/french/java/com.aspose.font/iencodingparameters/_index.md new file mode 100644 index 0000000000..4d4fbc3e27 --- /dev/null +++ b/french/java/com.aspose.font/iencodingparameters/_index.md @@ -0,0 +1,12 @@ +--- +title: "IEncodingParameters" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Interface commune pour prendre en charge les paramètres d'encodage." +type: docs +weight: 121 +url: /fr/java/com.aspose.font/iencodingparameters/ +---``` +public interface IEncodingParameters +``` + +Common interface to support encoding parameters. Some font types can have multiple encoding algorithms/maps. So, this interface should be used to create concrete font encoding parameters. diff --git a/french/java/com.aspose.font/ifont/_index.md b/french/java/com.aspose.font/ifont/_index.md new file mode 100644 index 0000000000..35525a3f46 --- /dev/null +++ b/french/java/com.aspose.font/ifont/_index.md @@ -0,0 +1,223 @@ +--- +title: "IFont" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Déclare la fonctionnalité commune pour tous les formats de police." +type: docs +weight: 122 +url: /fr/java/com.aspose.font/ifont/ +---``` +public interface IFont +``` + +Declares common functionality for all font formats. Implemented by Font classes. +## Methods + +| Method | Description | +| --- | --- | +| [convert(FontType fontType)](#convert-com.aspose.font.FontType-) | Converts the Font into another format. | +| [getEncoding()](#getEncoding--) | Gets Font encoding. | +| [getFontDefinition()](#getFontDefinition--) | Gets Font definition. | +| [getFontFamily()](#getFontFamily--) | Gets Font family. | +| [getFontName()](#getFontName--) | Gets Font face name. | +| [getFontNames()](#getFontNames--) | Gets Font names. | +| [getFontSaver()](#getFontSaver--) | Gets Font save functionality. | +| [getFontStyle()](#getFontStyle--) | Gets Font style. | +| [getFontType()](#getFontType--) | Gets Font type. | +| [getGlyphAccessor()](#getGlyphAccessor--) | Gets Font glyph accessor. | +| [getMetrics()](#getMetrics--) | Gets Font metrics. | +| [getNumGlyphs()](#getNumGlyphs--) | Gets number of glyphs in the Font. | +| [getPostscriptNames()](#getPostscriptNames--) | Gets postscript Font names. | +| [getStyle()](#getStyle--) | Gets Font style. | +| [setFontFamily(String value)](#setFontFamily-java.lang.String-) | Sets Font family. | +| [setFontName(String value)](#setFontName-java.lang.String-) | Sets Font face name. | +| [setStyle(String value)](#setStyle-java.lang.String-) | Sets Font style. | +### convert(FontType fontType) {#convert-com.aspose.font.FontType-} +``` +public abstract Font convert(FontType fontType) +``` + + +Converts the Font into another format. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| fontType | [FontType](../../com.aspose.font/fonttype) | type to convert to font into | + +**Returns:** +[Font](../../com.aspose.font/font) - font converted into format specified +### getEncoding() {#getEncoding--} +``` +public abstract IFontEncoding getEncoding() +``` + + +Gets Font encoding. + +**Returns:** +[IFontEncoding](../../com.aspose.font/ifontencoding) - Font encoding. +### getFontDefinition() {#getFontDefinition--} +``` +public abstract FontDefinition getFontDefinition() +``` + + +Gets Font definition. + +**Returns:** +[FontDefinition](../../com.aspose.font/fontdefinition) - Font definition. +### getFontFamily() {#getFontFamily--} +``` +public abstract String getFontFamily() +``` + + +Gets Font family. + +**Returns:** +java.lang.String - Font family. +### getFontName() {#getFontName--} +``` +public abstract String getFontName() +``` + + +Gets Font face name. + +**Returns:** +java.lang.String - Font face name. +### getFontNames() {#getFontNames--} +``` +public abstract MultiLanguageString getFontNames() +``` + + +Gets Font names. + +**Returns:** +[MultiLanguageString](../../com.aspose.font/multilanguagestring) - Font names. +### getFontSaver() {#getFontSaver--} +``` +public abstract IFontSaver getFontSaver() +``` + + +Gets Font save functionality. + +**Returns:** +[IFontSaver](../../com.aspose.font/ifontsaver) - Font save functionality. +### getFontStyle() {#getFontStyle--} +``` +public abstract int getFontStyle() +``` + + +Gets Font style. This is a value computed and represented in generalized type. + +**Returns:** +int - Font style. Usually, a combination of FontStyle class constant flag values or 0. +### getFontType() {#getFontType--} +``` +public abstract FontType getFontType() +``` + + +Gets Font type. + +-------------------- + +> ``` +> Type1, TrueType etc. +> ``` + +**Returns:** +[FontType](../../com.aspose.font/fonttype) - Font type. +### getGlyphAccessor() {#getGlyphAccessor--} +``` +public abstract IGlyphAccessor getGlyphAccessor() +``` + + +Gets Font glyph accessor. Retrieves glyphs and glyph identifiers. + +**Returns:** +[IGlyphAccessor](../../com.aspose.font/iglyphaccessor) - Font glyph accessor. +### getMetrics() {#getMetrics--} +``` +public abstract IFontMetrics getMetrics() +``` + + +Gets Font metrics. + +**Returns:** +[IFontMetrics](../../com.aspose.font/ifontmetrics) - Font metrics. +### getNumGlyphs() {#getNumGlyphs--} +``` +public abstract int getNumGlyphs() +``` + + +Gets number of glyphs in the Font. + +**Returns:** +int - Number of glyphs in the Font.. +### getPostscriptNames() {#getPostscriptNames--} +``` +public abstract MultiLanguageString getPostscriptNames() +``` + + +Gets postscript Font names. + +**Returns:** +[MultiLanguageString](../../com.aspose.font/multilanguagestring) - Postscript Font names. +### getStyle() {#getStyle--} +``` +public abstract String getStyle() +``` + + +Gets Font style. This is a raw string value provided by Font file. + +**Returns:** +java.lang.String - Font style. +### setFontFamily(String value) {#setFontFamily-java.lang.String-} +``` +public abstract void setFontFamily(String value) +``` + + +Sets Font family. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| value | java.lang.String | New Font family. | + +### setFontName(String value) {#setFontName-java.lang.String-} +``` +public abstract void setFontName(String value) +``` + + +Sets Font face name. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| value | java.lang.String | New Font face name. | + +### setStyle(String value) {#setStyle-java.lang.String-} +``` +public abstract void setStyle(String value) +``` + + +Sets Font style. This is a raw string value provided by Font file. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| value | java.lang.String | New Font style. | + diff --git a/french/java/com.aspose.font/ifontcharactersmerger/_index.md b/french/java/com.aspose.font/ifontcharactersmerger/_index.md new file mode 100644 index 0000000000..3cf6c4857e --- /dev/null +++ b/french/java/com.aspose.font/ifontcharactersmerger/_index.md @@ -0,0 +1,70 @@ +--- +title: "IFontCharactersMerger" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Déclare la fonctionnalité des assistants pour fusionner les polices TrueType." +type: docs +weight: 123 +url: /fr/java/com.aspose.font/ifontcharactersmerger/ +---``` +public interface IFontCharactersMerger +``` + +Declares helpers functionality to merge TrueType fonts. Font which is passed by parameter font1 considered as primary. It means that many characteristics, related to final merged font, such as metrics, encoding structure and others, will be taken from this primary font. +## Methods + +| Method | Description | +| --- | --- | +| [mergeFonts(GlyphId[] font1Glyphs, GlyphId[] font2Glyphs, String newFontName)](#mergeFonts-com.aspose.font.GlyphId---com.aspose.font.GlyphId---java.lang.String-) | Merges fonts based on glyphs lists passed. | +| [mergeFonts(int[] font1CharCodes, int[] font2CharCodes, String newFontName)](#mergeFonts-int---int---java.lang.String-) | Merges fonts based on character codes lists passed. | +| [mergeFonts(Map font1Dict, Map font2Dict, String newFontName)](#mergeFonts-java.util.Map-java.lang.Integer-com.aspose.font.GlyphId--java.util.Map-java.lang.Integer-com.aspose.font.GlyphId--java.lang.String-) | This method version designed for cases when you want to set character codes for glyphs in resultant font explicitly. | +### mergeFonts(GlyphId[] font1Glyphs, GlyphId[] font2Glyphs, String newFontName) {#mergeFonts-com.aspose.font.GlyphId---com.aspose.font.GlyphId---java.lang.String-} +``` +public abstract TtfFont mergeFonts(GlyphId[] font1Glyphs, GlyphId[] font2Glyphs, String newFontName) +``` + + +Merges fonts based on glyphs lists passed. Searches for a character code for every glyph passed and add found character code with correspondent glyph into resultant new font. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| font1Glyphs | [GlyphId\[\]](../../com.aspose.font/glyphid) | List of glyphs from first font | +| font2Glyphs | [GlyphId\[\]](../../com.aspose.font/glyphid) | List of glyphs from second font | +| newFontName | java.lang.String | Desired name for resultant font | + +**Returns:** +[TtfFont](../../com.aspose.font/ttffont) - Merged font +### mergeFonts(int[] font1CharCodes, int[] font2CharCodes, String newFontName) {#mergeFonts-int---int---java.lang.String-} +``` +public abstract TtfFont mergeFonts(int[] font1CharCodes, int[] font2CharCodes, String newFontName) +``` + + +Merges fonts based on character codes lists passed. To create desired resultant font just pass symbol codes from original fonts you want to include into resultant font. Glyphs related to codes passed will be found automatically. For example, if you want to include into resultant font glyphs related to letters A and B from first font and glyphs, related to letters C and D from second font, just call this method like this: MergeFonts(new uint[] \{ 'A', 'B' \}, new uint[] \{ 'C', 'D' \}, "NewFont") + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| font1CharCodes | int[] | Codes to take from first font | +| font2CharCodes | int[] | Codes to take from second font | +| newFontName | java.lang.String | Desired name for resultant font | + +**Returns:** +[TtfFont](../../com.aspose.font/ttffont) - Merged font +### mergeFonts(Map font1Dict, Map font2Dict, String newFontName) {#mergeFonts-java.util.Map-java.lang.Integer-com.aspose.font.GlyphId--java.util.Map-java.lang.Integer-com.aspose.font.GlyphId--java.lang.String-} +``` +public abstract TtfFont mergeFonts(Map font1Dict, Map font2Dict, String newFontName) +``` + + +This method version designed for cases when you want to set character codes for glyphs in resultant font explicitly. It's not mandatory that code for glyph you provided is included in original font. The sense of code passed is that it will be associated with correspondent glyph identifier in resultant font. So, rule to process every pair passed by dictionary parameter[code, glyph ideitifier] is that only glyph identifer will be taken from original font and then it will be linked with correspondent code in resultant font. It can be helpful when some codes from first font conflict with same codes from second font. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| font1Dict | java.util.Map | Dictionary with pairs [symbol code, glyph identifier] from first font | +| font2Dict | java.util.Map | Dictionary with pairs [symbol code, glyph identifier] from second font | +| newFontName | java.lang.String | Desired name for resultant font | + +**Returns:** +[TtfFont](../../com.aspose.font/ttffont) - Merged font diff --git a/french/java/com.aspose.font/ifontencoding/_index.md b/french/java/com.aspose.font/ifontencoding/_index.md new file mode 100644 index 0000000000..91fa6de45c --- /dev/null +++ b/french/java/com.aspose.font/ifontencoding/_index.md @@ -0,0 +1,96 @@ +--- +title: "IFontEncoding" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Définit une interface pour l'encodage des polices." +type: docs +weight: 124 +url: /fr/java/com.aspose.font/ifontencoding/ +---``` +public interface IFontEncoding +``` + +Defines an interface for Font encoding. +## Methods + +| Method | Description | +| --- | --- | +| [decodeToGid(long charCode)](#decodeToGid-long-) | Decodes a character code and returns glyph id. | +| [decodeToGidParameterized(IEncodingParameters parameters, long charCode)](#decodeToGidParameterized-com.aspose.font.IEncodingParameters-long-) | Parameterized decode method. | +| [encode(long gid, long charCode)](#encode-long-long-) | Encodes the glyph. | +| [gidToUnicode(GlyphId gid)](#gidToUnicode-com.aspose.font.GlyphId-) | Decodes Gid to unicode. | +| [unicodeToGid(long unicode)](#unicodeToGid-long-) | Decodes a unicode and returns glyph id. | +### decodeToGid(long charCode) {#decodeToGid-long-} +``` +public abstract GlyphId decodeToGid(long charCode) +``` + + +Decodes a character code and returns glyph id. Glyph id is a unique number for a glyph, which is font type dependent. For example: Type1's id is a glyph name, instance of ( GlyphStringId ) class. TTF's id is an int index, instance of ( GlyphUInt32Id ) class. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| charCode | long | Character code to get glyph identifier for. | + +**Returns:** +[GlyphId](../../com.aspose.font/glyphid) - Glyph identifier related to charCode passed. +### decodeToGidParameterized(IEncodingParameters parameters, long charCode) {#decodeToGidParameterized-com.aspose.font.IEncodingParameters-long-} +``` +public abstract GlyphId decodeToGidParameterized(IEncodingParameters parameters, long charCode) +``` + + +Parameterized decode method. Some font types can have multiple encoding algorithms/maps. So, IEncodingParameters interface is used to create concrete font encoding parameters. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| parameters | [IEncodingParameters](../../com.aspose.font/iencodingparameters) | Implementation of IEncodingParameters interface. | +| charCode | long | Character code to get glyph identifier for. | + +**Returns:** +[GlyphId](../../com.aspose.font/glyphid) - Glyph identifier related to char code passed. +### encode(long gid, long charCode) {#encode-long-long-} +``` +public abstract void encode(long gid, long charCode) +``` + + +Encodes the glyph. For TTF Fonts the charCode is unicode. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| gid | long | Glyph id. | +| charCode | long | Character code associated with the glyph id. | + +### gidToUnicode(GlyphId gid) {#gidToUnicode-com.aspose.font.GlyphId-} +``` +public abstract long gidToUnicode(GlyphId gid) +``` + + +Decodes Gid to unicode. Glyph id is a unique number for a glyph, which is font type dependent. For example: Type1's id is a glyph name, instance of ( GlyphStringId ) class. TTF's id is an int index, instance of ( GlyphUInt32Id ) class. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| gid | [GlyphId](../../com.aspose.font/glyphid) | Glyph identifier of symbol to decode. | + +**Returns:** +long - Unicode value related to glyph id passed. +### unicodeToGid(long unicode) {#unicodeToGid-long-} +``` +public abstract GlyphId unicodeToGid(long unicode) +``` + + +Decodes a unicode and returns glyph id. Glyph id is a unique number for a glyph, which is font type dependent. For example: Type1's id is a glyph name, instance of ( GlyphStringId ) class. TTF's id is an int index, instance of ( GlyphUInt32Id ) class. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| unicode | long | Unicode to get glyph identifier for. | + +**Returns:** +[GlyphId](../../com.aspose.font/glyphid) - Glyph identifier related to unicode passed. diff --git a/french/java/com.aspose.font/ifontmetrics/_index.md b/french/java/com.aspose.font/ifontmetrics/_index.md new file mode 100644 index 0000000000..b018a5c931 --- /dev/null +++ b/french/java/com.aspose.font/ifontmetrics/_index.md @@ -0,0 +1,357 @@ +--- +title: "IFontMetrics" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Définit une interface pour les outils de métriques de police." +type: docs +weight: 125 +url: /fr/java/com.aspose.font/ifontmetrics/ +---``` +public interface IFontMetrics +``` + +Defines an interface for Font metrics tools. +## Methods + +| Method | Description | +| --- | --- | +| [getAscender()](#getAscender--) | Gets ascender value of the Font in font units. | +| [getAscender(double fontSize)](#getAscender-double-) | Returns ascender for specific Font size. | +| [getDescender()](#getDescender--) | Gets descender value of the Font in font units. | +| [getDescender(double fontSize)](#getDescender-double-) | Returns descender for specific Font size. | +| [getFontBBox()](#getFontBBox--) | Gets Font bounding box. | +| [getFontMatrix()](#getFontMatrix--) | Gets Font transformation matrix. | +| [getGlyphBBox(GlyphId glyphId)](#getGlyphBBox-com.aspose.font.GlyphId-) | Returns glyph BBox. | +| [getGlyphWidth(GlyphId glyphId)](#getGlyphWidth-com.aspose.font.GlyphId-) | Returns glyph width. | +| [getKerningValue(GlyphId prevGlyphId, GlyphId nextGlyphId)](#getKerningValue-com.aspose.font.GlyphId-com.aspose.font.GlyphId-) | Returns kerning value for the glyph pair. | +| [getLineGap()](#getLineGap--) | Gets LineGap value of the Font in Font units. | +| [getTypoAscender()](#getTypoAscender--) | Gets typographic ascender value of the Font in font units | +| [getTypoAscender(double fontSize)](#getTypoAscender-double-) | Returns typographic ascender for specific Font size. | +| [getTypoDescender()](#getTypoDescender--) | Gets typographic descender value of the Font in Font units. | +| [getTypoDescender(double fontSize)](#getTypoDescender-double-) | Returns typographic descender for specific Font size. | +| [getTypoLineGap()](#getTypoLineGap--) | Gets typographic LineGap value of the Font in Font units. | +| [getTypoLineGap(double fontSize)](#getTypoLineGap-double-) | Returns line gap for specific Font size. | +| [getUnitsPerEM()](#getUnitsPerEM--) | Gets Gets units per em. | +| [isFixedPitch()](#isFixedPitch--) | True, if the Font is monospaced. | +| [measureString(String unicode, double fontSize)](#measureString-java.lang.String-double-) | Measures string and returns string width. | +| [setAscender(double value)](#setAscender-double-) | | +| [setDescender(double value)](#setDescender-double-) | | +| [setGlyphWidth(GlyphId glyphId, double value)](#setGlyphWidth-com.aspose.font.GlyphId-double-) | Specifies glyph width. | +| [setTypoAscender(double value)](#setTypoAscender-double-) | | +| [setTypoDescender(double value)](#setTypoDescender-double-) | | +| [setUnitsPerEM(long value)](#setUnitsPerEM-long-) | | +### getAscender() {#getAscender--} +``` +public abstract double getAscender() +``` + + +Gets ascender value of the Font in font units. + +**Returns:** +double - Ascender value of the Font in font units. +### getAscender(double fontSize) {#getAscender-double-} +``` +public abstract double getAscender(double fontSize) +``` + + +Returns ascender for specific Font size. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| fontSize | double | Font size. | + +**Returns:** +double - Ascender value. +### getDescender() {#getDescender--} +``` +public abstract double getDescender() +``` + + +Gets descender value of the Font in font units. + +**Returns:** +double - Descender value of the Font in font units. +### getDescender(double fontSize) {#getDescender-double-} +``` +public abstract double getDescender(double fontSize) +``` + + +Returns descender for specific Font size. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| fontSize | double | Font size. | + +**Returns:** +double - Descender value. +### getFontBBox() {#getFontBBox--} +``` +public abstract FontBBox getFontBBox() +``` + + +Gets Font bounding box. + +**Returns:** +[FontBBox](../../com.aspose.font/fontbbox) - Font bounding box. +### getFontMatrix() {#getFontMatrix--} +``` +public abstract TransformationMatrix getFontMatrix() +``` + + +Gets Font transformation matrix. + +**Returns:** +[TransformationMatrix](../../com.aspose.font/transformationmatrix) - Font transformation matrix. +### getGlyphBBox(GlyphId glyphId) {#getGlyphBBox-com.aspose.font.GlyphId-} +``` +public abstract FontBBox getGlyphBBox(GlyphId glyphId) +``` + + +Returns glyph BBox. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| glyphId | [GlyphId](../../com.aspose.font/glyphid) | glyph identifier | + +**Returns:** +[FontBBox](../../com.aspose.font/fontbbox) - glyph BBox +### getGlyphWidth(GlyphId glyphId) {#getGlyphWidth-com.aspose.font.GlyphId-} +``` +public abstract double getGlyphWidth(GlyphId glyphId) +``` + + +Returns glyph width. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| glyphId | [GlyphId](../../com.aspose.font/glyphid) | Glyph identifier. | + +**Returns:** +double - Glyph width. +### getKerningValue(GlyphId prevGlyphId, GlyphId nextGlyphId) {#getKerningValue-com.aspose.font.GlyphId-com.aspose.font.GlyphId-} +``` +public abstract double getKerningValue(GlyphId prevGlyphId, GlyphId nextGlyphId) +``` + + +Returns kerning value for the glyph pair. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| prevGlyphId | [GlyphId](../../com.aspose.font/glyphid) | First glyph in pair. | +| nextGlyphId | [GlyphId](../../com.aspose.font/glyphid) | Font size. | + +**Returns:** +double - Kerning value. +### getLineGap() {#getLineGap--} +``` +public abstract double getLineGap() +``` + + +Gets LineGap value of the Font in Font units. + +**Returns:** +double - LineGap value of the Font in Font units. +### getTypoAscender() {#getTypoAscender--} +``` +public abstract double getTypoAscender() +``` + + +Gets typographic ascender value of the Font in font units + +**Returns:** +double - Typographic ascender value of the Font in font units +### getTypoAscender(double fontSize) {#getTypoAscender-double-} +``` +public abstract double getTypoAscender(double fontSize) +``` + + +Returns typographic ascender for specific Font size. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| fontSize | double | Font size. | + +**Returns:** +double - Typographic ascender value. +### getTypoDescender() {#getTypoDescender--} +``` +public abstract double getTypoDescender() +``` + + +Gets typographic descender value of the Font in Font units. + +**Returns:** +double - Typographic descender value of the Font in Font units. +### getTypoDescender(double fontSize) {#getTypoDescender-double-} +``` +public abstract double getTypoDescender(double fontSize) +``` + + +Returns typographic descender for specific Font size. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| fontSize | double | Font size. | + +**Returns:** +double - Typographic descender value. +### getTypoLineGap() {#getTypoLineGap--} +``` +public abstract double getTypoLineGap() +``` + + +Gets typographic LineGap value of the Font in Font units. + +**Returns:** +double - Typographic LineGap value of the Font in Font units. +### getTypoLineGap(double fontSize) {#getTypoLineGap-double-} +``` +public abstract double getTypoLineGap(double fontSize) +``` + + +Returns line gap for specific Font size. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| fontSize | double | Font size. | + +**Returns:** +double - Line gap value. +### getUnitsPerEM() {#getUnitsPerEM--} +``` +public abstract long getUnitsPerEM() +``` + + +Gets Gets units per em. + +**Returns:** +long - Units per em. +### isFixedPitch() {#isFixedPitch--} +``` +public abstract boolean isFixedPitch() +``` + + +True, if the Font is monospaced. + +**Returns:** +boolean - True, if the Font is monospaced. +### measureString(String unicode, double fontSize) {#measureString-java.lang.String-double-} +``` +public abstract double measureString(String unicode, double fontSize) +``` + + +Measures string and returns string width. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| unicode | java.lang.String | Unicode string. | +| fontSize | double | Font size. | + +**Returns:** +double - String width. +### setAscender(double value) {#setAscender-double-} +``` +public abstract void setAscender(double value) +``` + + + + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| value | double | | + +### setDescender(double value) {#setDescender-double-} +``` +public abstract void setDescender(double value) +``` + + + + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| value | double | | + +### setGlyphWidth(GlyphId glyphId, double value) {#setGlyphWidth-com.aspose.font.GlyphId-double-} +``` +public abstract void setGlyphWidth(GlyphId glyphId, double value) +``` + + +Specifies glyph width. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| glyphId | [GlyphId](../../com.aspose.font/glyphid) | Glyph identifier. | +| value | double | Glyph width value. | + +### setTypoAscender(double value) {#setTypoAscender-double-} +``` +public abstract void setTypoAscender(double value) +``` + + + + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| value | double | | + +### setTypoDescender(double value) {#setTypoDescender-double-} +``` +public abstract void setTypoDescender(double value) +``` + + + + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| value | double | | + +### setUnitsPerEM(long value) {#setUnitsPerEM-long-} +``` +public abstract void setUnitsPerEM(long value) +``` + + + + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| value | long | | + diff --git a/french/java/com.aspose.font/ifontsaver/_index.md b/french/java/com.aspose.font/ifontsaver/_index.md new file mode 100644 index 0000000000..71a36be159 --- /dev/null +++ b/french/java/com.aspose.font/ifontsaver/_index.md @@ -0,0 +1,59 @@ +--- +title: "IFontSaver" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Définit une interface pour la fonctionnalité d'enregistrement des polices." +type: docs +weight: 126 +url: /fr/java/com.aspose.font/ifontsaver/ +---``` +public interface IFontSaver +``` + +Defines an interface for Font save functionality. +## Methods + +| Method | Description | +| --- | --- | +| [save(OutputStream stream)](#save-java.io.OutputStream-) | Saves the Font into original format. | +| [save(String fileName)](#save-java.lang.String-) | Saves the Font into original format. | +| [saveToFormat(OutputStream stream, FontSavingFormats outFormat)](#saveToFormat-java.io.OutputStream-com.aspose.font.FontSavingFormats-) | Saves the Font into format specified. | +### save(OutputStream stream) {#save-java.io.OutputStream-} +``` +public abstract void save(OutputStream stream) +``` + + +Saves the Font into original format. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| stream | java.io.OutputStream | stream to save font | + +### save(String fileName) {#save-java.lang.String-} +``` +public abstract void save(String fileName) +``` + + +Saves the Font into original format. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| fileName | java.lang.String | file to save font | + +### saveToFormat(OutputStream stream, FontSavingFormats outFormat) {#saveToFormat-java.io.OutputStream-com.aspose.font.FontSavingFormats-} +``` +public abstract void saveToFormat(OutputStream stream, FontSavingFormats outFormat) +``` + + +Saves the Font into format specified. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| stream | java.io.OutputStream | stream to save font | +| outFormat | [FontSavingFormats](../../com.aspose.font/fontsavingformats) | desired format | + diff --git a/french/java/com.aspose.font/iglyphaccessor/_index.md b/french/java/com.aspose.font/iglyphaccessor/_index.md new file mode 100644 index 0000000000..c873699690 --- /dev/null +++ b/french/java/com.aspose.font/iglyphaccessor/_index.md @@ -0,0 +1,70 @@ +--- +title: "IGlyphAccessor" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Définit la fonctionnalité permettant de récupérer les identifiants de glyphes spécifiés et les glyphes." +type: docs +weight: 127 +url: /fr/java/com.aspose.font/iglyphaccessor/ +---``` +public interface IGlyphAccessor +``` + +Defines functionality to retrieve specified glyph identifiers and glyphs. +## Methods + +| Method | Description | +| --- | --- | +| [getAllGlyphIds()](#getAllGlyphIds--) | Returns all glyph ids, available in the Font. | +| [getGlyphById(GlyphId id)](#getGlyphById-com.aspose.font.GlyphId-) | Returns glyph by glyph id. | +| [getGlyphIdType()](#getGlyphIdType--) | Glyph id type specification. | +| [getGlyphsForText(String text)](#getGlyphsForText-java.lang.String-) | Get glyphs representation for text. | +### getAllGlyphIds() {#getAllGlyphIds--} +``` +public abstract GlyphId[] getAllGlyphIds() +``` + + +Returns all glyph ids, available in the Font. Glyph id is a unique number for a glyph, which is font type dependent. For example: Type1's id is a glyph name, instance of ( GlyphStringId ) class. TTF's id is an int index, instance of ( GlyphUInt32Id ) class. + +**Returns:** +com.aspose.font.GlyphId[] - Glyph identifiers. +### getGlyphById(GlyphId id) {#getGlyphById-com.aspose.font.GlyphId-} +``` +public abstract Glyph getGlyphById(GlyphId id) +``` + + +Returns glyph by glyph id. Glyph id is a unique number for a glyph, which is font type dependent. GlyphId - derived object. For example: Type1's id is a glyph name, instance of ( GlyphStringId ) class. TTF's id is an int index, instance of ( GlyphUInt32Id ) class. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| id | [GlyphId](../../com.aspose.font/glyphid) | glyph ID. | + +**Returns:** +[Glyph](../../com.aspose.font/glyph) - Glyph +### getGlyphIdType() {#getGlyphIdType--} +``` +public abstract GlyphIdType getGlyphIdType() +``` + + +Glyph id type specification. + +**Returns:** +[GlyphIdType](../../com.aspose.font/glyphidtype) - Id type specification. +### getGlyphsForText(String text) {#getGlyphsForText-java.lang.String-} +``` +public abstract GlyphId[] getGlyphsForText(String text) +``` + + +Get glyphs representation for text. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| text | java.lang.String | Input text. | + +**Returns:** +com.aspose.font.GlyphId[] - GlyphId array. diff --git a/french/java/com.aspose.font/iglyphoutlinepainter/_index.md b/french/java/com.aspose.font/iglyphoutlinepainter/_index.md new file mode 100644 index 0000000000..c6e7ec5589 --- /dev/null +++ b/french/java/com.aspose.font/iglyphoutlinepainter/_index.md @@ -0,0 +1,70 @@ +--- +title: "IGlyphOutlinePainter" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Définit une méthode de contour pour dessiner les glyphes." +type: docs +weight: 128 +url: /fr/java/com.aspose.font/iglyphoutlinepainter/ +--- +**All Implemented Interfaces:** +[com.aspose.font.IGlyphPainter](../../com.aspose.font/iglyphpainter) +``` +public interface IGlyphOutlinePainter extends IGlyphPainter +``` + +Définit une méthode de contour pour dessiner les glyphes. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [closePath()](#closePath--) | Traite l'opération ClosePath. | +| [curveTo(CurveTo curveTo)](#curveTo-com.aspose.font.CurveTo-) | Traite l'opération CurveTo. | +| [lineTo(LineTo lineTo)](#lineTo-com.aspose.font.LineTo-) | Traite l'opération LineTo. | +| [moveTo(MoveTo moveTo)](#moveTo-com.aspose.font.MoveTo-) | Traite l'opération MoveTo. | +### closePath() {#closePath--} +``` +public abstract void closePath() +``` + + +Traite l'opération ClosePath. + +### curveTo(CurveTo curveTo) {#curveTo-com.aspose.font.CurveTo-} +``` +public abstract void curveTo(CurveTo curveTo) +``` + + +Traite l'opération CurveTo. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| curveTo | [CurveTo](../../com.aspose.font/curveto) | Référence CurveTo | + +### lineTo(LineTo lineTo) {#lineTo-com.aspose.font.LineTo-} +``` +public abstract void lineTo(LineTo lineTo) +``` + + +Traite l'opération LineTo. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| lineTo | [LineTo](../../com.aspose.font/lineto) | Référence LineTo | + +### moveTo(MoveTo moveTo) {#moveTo-com.aspose.font.MoveTo-} +``` +public abstract void moveTo(MoveTo moveTo) +``` + + +Traite l'opération MoveTo. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| moveTo | [MoveTo](../../com.aspose.font/moveto) | Référence MoveTo | + diff --git a/french/java/com.aspose.font/iglyphpainter/_index.md b/french/java/com.aspose.font/iglyphpainter/_index.md new file mode 100644 index 0000000000..506a28c420 --- /dev/null +++ b/french/java/com.aspose.font/iglyphpainter/_index.md @@ -0,0 +1,12 @@ +--- +title: "IGlyphPainter" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Définit une façon de dessiner les glyphes." +type: docs +weight: 129 +url: /fr/java/com.aspose.font/iglyphpainter/ +---``` +public interface IGlyphPainter +``` + +Defines a way to draw glyphs. diff --git a/french/java/com.aspose.font/iglyphrenderer/_index.md b/french/java/com.aspose.font/iglyphrenderer/_index.md new file mode 100644 index 0000000000..47f6597ff0 --- /dev/null +++ b/french/java/com.aspose.font/iglyphrenderer/_index.md @@ -0,0 +1,112 @@ +--- +title: "IGlyphRenderer" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Interface utilisée pour rendre les glyphes." +type: docs +weight: 130 +url: /fr/java/com.aspose.font/iglyphrenderer/ +---``` +public interface IGlyphRenderer +``` + +Interface used to render glyphs. +## Methods + +| Method | Description | +| --- | --- | +| [renderGlyph(IFont font, GlyphId glyphId)](#renderGlyph-com.aspose.font.IFont-com.aspose.font.GlyphId-) | Renders glyph. | +| [renderGlyph(IFont font, GlyphId glyphId, Glyph glyph, TransformationMatrix glyphPlacementMatrix)](#renderGlyph-com.aspose.font.IFont-com.aspose.font.GlyphId-com.aspose.font.Glyph-com.aspose.font.TransformationMatrix-) | Renders glyph, an objective of this overloaded version - to be used with cache for glyphs. | +| [renderGlyph(IFont font, GlyphId glyphId, TransformationMatrix glyphPlacementMatrix)](#renderGlyph-com.aspose.font.IFont-com.aspose.font.GlyphId-com.aspose.font.TransformationMatrix-) | Renders glyph. | +| [renderGlyph(IFont font, long glyphIndex)](#renderGlyph-com.aspose.font.IFont-long-) | Renders glyph. | +| [renderGlyph(IFont font, long glyphIndex, TransformationMatrix glyphPlacementMatrix)](#renderGlyph-com.aspose.font.IFont-long-com.aspose.font.TransformationMatrix-) | Renders glyph. | +| [renderIndependentGlyphPath(IFont font, GlyphId glyphId, Glyph glyph, TransformationMatrix glyphPlacementMatrix)](#renderIndependentGlyphPath-com.aspose.font.IFont-com.aspose.font.GlyphId-com.aspose.font.Glyph-com.aspose.font.TransformationMatrix-) | Renders glyph using independent glyph path. | +### renderGlyph(IFont font, GlyphId glyphId) {#renderGlyph-com.aspose.font.IFont-com.aspose.font.GlyphId-} +``` +public abstract void renderGlyph(IFont font, GlyphId glyphId) +``` + + +Renders glyph. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| font | [IFont](../../com.aspose.font/ifont) | The font that contains the glyph. | +| glyphId | [GlyphId](../../com.aspose.font/glyphid) | Physical glyph index inside font. Note that this is not a unicode. | + +### renderGlyph(IFont font, GlyphId glyphId, Glyph glyph, TransformationMatrix glyphPlacementMatrix) {#renderGlyph-com.aspose.font.IFont-com.aspose.font.GlyphId-com.aspose.font.Glyph-com.aspose.font.TransformationMatrix-} +``` +public abstract void renderGlyph(IFont font, GlyphId glyphId, Glyph glyph, TransformationMatrix glyphPlacementMatrix) +``` + + +Renders glyph, an objective of this overloaded version - to be used with cache for glyphs. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| font | [IFont](../../com.aspose.font/ifont) | The font that contains the glyph. | +| glyphId | [GlyphId](../../com.aspose.font/glyphid) | Physical glyph index inside font. Note that this is not a unicode. | +| glyph | [Glyph](../../com.aspose.font/glyph) | Glyph to render. | +| glyphPlacementMatrix | [TransformationMatrix](../../com.aspose.font/transformationmatrix) | Matrix that is applied to glyph coordinates. | + +### renderGlyph(IFont font, GlyphId glyphId, TransformationMatrix glyphPlacementMatrix) {#renderGlyph-com.aspose.font.IFont-com.aspose.font.GlyphId-com.aspose.font.TransformationMatrix-} +``` +public abstract void renderGlyph(IFont font, GlyphId glyphId, TransformationMatrix glyphPlacementMatrix) +``` + + +Renders glyph. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| font | [IFont](../../com.aspose.font/ifont) | The font that contains the glyph. | +| glyphId | [GlyphId](../../com.aspose.font/glyphid) | Physical glyph index inside font. Note that this is not a unicode. | +| glyphPlacementMatrix | [TransformationMatrix](../../com.aspose.font/transformationmatrix) | Matrix that is applied to glyph coordinates. | + +### renderGlyph(IFont font, long glyphIndex) {#renderGlyph-com.aspose.font.IFont-long-} +``` +public abstract void renderGlyph(IFont font, long glyphIndex) +``` + + +Renders glyph. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| font | [IFont](../../com.aspose.font/ifont) | The font that contains the glyph. | +| glyphIndex | long | Physical glyph index inside font. Note that this is not a unicode. | + +### renderGlyph(IFont font, long glyphIndex, TransformationMatrix glyphPlacementMatrix) {#renderGlyph-com.aspose.font.IFont-long-com.aspose.font.TransformationMatrix-} +``` +public abstract void renderGlyph(IFont font, long glyphIndex, TransformationMatrix glyphPlacementMatrix) +``` + + +Renders glyph. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| font | [IFont](../../com.aspose.font/ifont) | The font that contains the glyph. | +| glyphIndex | long | Physical glyph index inside font. Note that this is not a unicode. | +| glyphPlacementMatrix | [TransformationMatrix](../../com.aspose.font/transformationmatrix) | Matrix that is applied to glyph coordinates. | + +### renderIndependentGlyphPath(IFont font, GlyphId glyphId, Glyph glyph, TransformationMatrix glyphPlacementMatrix) {#renderIndependentGlyphPath-com.aspose.font.IFont-com.aspose.font.GlyphId-com.aspose.font.Glyph-com.aspose.font.TransformationMatrix-} +``` +public abstract void renderIndependentGlyphPath(IFont font, GlyphId glyphId, Glyph glyph, TransformationMatrix glyphPlacementMatrix) +``` + + +Renders glyph using independent glyph path. RenderGlyph() function family changes glyph path on rendering. It then leads to necessity reload this glyph again. This function uses copy of glyph path and doesn't changes original glyph path, so the same glyph could be reused multiple times. This version of function is intended for use with cache of glyphs. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| font | [IFont](../../com.aspose.font/ifont) | The font that contains the glyph. | +| glyphId | [GlyphId](../../com.aspose.font/glyphid) | Physical glyph index inside font. Note that this is not a unicode. | +| glyph | [Glyph](../../com.aspose.font/glyph) | Glyph to render. | +| glyphPlacementMatrix | [TransformationMatrix](../../com.aspose.font/transformationmatrix) | Matrix that is applied to glyph coordinates. | + diff --git a/french/java/com.aspose.font/incorrectfontdataexception/_index.md b/french/java/com.aspose.font/incorrectfontdataexception/_index.md new file mode 100644 index 0000000000..f0041c0d7a --- /dev/null +++ b/french/java/com.aspose.font/incorrectfontdataexception/_index.md @@ -0,0 +1,313 @@ +--- +title: "IncorrectFontDataException" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente les exceptions pour les cas où certaines valeurs de l'objet Font sont invalides." +type: docs +weight: 57 +url: /fr/java/com.aspose.font/incorrectfontdataexception/ +--- +**Inheritance:** +java.lang.Object, java.lang.Throwable, java.lang.Exception, java.lang.RuntimeException, java.lang.IllegalStateException, [com.aspose.font.FontException](../../com.aspose.font/fontexception) +``` +public class IncorrectFontDataException extends FontException +``` + +Représente les exceptions pour les cas où certaines valeurs de l'objet Font sont invalides. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [IncorrectFontDataException()](#IncorrectFontDataException--) | Initialise un nouvel objet FontAgrumentException. | +| [IncorrectFontDataException(String message)](#IncorrectFontDataException-java.lang.String-) | Initialise un nouvel objet FontAgrumentException. | +| [IncorrectFontDataException(String message, RuntimeException innerException)](#IncorrectFontDataException-java.lang.String-java.lang.RuntimeException-) | Initialise un nouvel objet FontAgrumentException. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [addSuppressed(Throwable arg0)](#addSuppressed-java.lang.Throwable-) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [fillInStackTrace()](#fillInStackTrace--) | | +| [getCause()](#getCause--) | | +| [getClass()](#getClass--) | | +| [getLocalizedMessage()](#getLocalizedMessage--) | | +| [getMessage()](#getMessage--) | | +| [getStackTrace()](#getStackTrace--) | | +| [getSuppressed()](#getSuppressed--) | | +| [hashCode()](#hashCode--) | | +| [initCause(Throwable arg0)](#initCause-java.lang.Throwable-) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [printStackTrace()](#printStackTrace--) | | +| [printStackTrace(PrintStream arg0)](#printStackTrace-java.io.PrintStream-) | | +| [printStackTrace(PrintWriter arg0)](#printStackTrace-java.io.PrintWriter-) | | +| [setStackTrace(StackTraceElement[] arg0)](#setStackTrace-java.lang.StackTraceElement---) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### IncorrectFontDataException() {#IncorrectFontDataException--} +``` +public IncorrectFontDataException() +``` + + +Initialise un nouvel objet FontAgrumentException. + +### IncorrectFontDataException(String message) {#IncorrectFontDataException-java.lang.String-} +``` +public IncorrectFontDataException(String message) +``` + + +Initialise un nouvel objet FontAgrumentException. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| message | java.lang.String | Un message qui décrit l'erreur. | + +### IncorrectFontDataException(String message, RuntimeException innerException) {#IncorrectFontDataException-java.lang.String-java.lang.RuntimeException-} +``` +public IncorrectFontDataException(String message, RuntimeException innerException) +``` + + +Initialise un nouvel objet FontAgrumentException. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| message | java.lang.String | Un message qui décrit l'erreur. | +| innerException | java.lang.RuntimeException | L'exception qui est la cause de l'exception actuelle. | + +### addSuppressed(Throwable arg0) {#addSuppressed-java.lang.Throwable-} +``` +public final synchronized void addSuppressed(Throwable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Throwable | | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### fillInStackTrace() {#fillInStackTrace--} +``` +public synchronized Throwable fillInStackTrace() +``` + + + + +**Returns:** +java.lang.Throwable +### getCause() {#getCause--} +``` +public synchronized Throwable getCause() +``` + + + + +**Returns:** +java.lang.Throwable +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getLocalizedMessage() {#getLocalizedMessage--} +``` +public String getLocalizedMessage() +``` + + + + +**Returns:** +java.lang.String +### getMessage() {#getMessage--} +``` +public String getMessage() +``` + + + + +**Returns:** +java.lang.String +### getStackTrace() {#getStackTrace--} +``` +public StackTraceElement[] getStackTrace() +``` + + + + +**Returns:** +java.lang.StackTraceElement[] +### getSuppressed() {#getSuppressed--} +``` +public final synchronized Throwable[] getSuppressed() +``` + + + + +**Returns:** +java.lang.Throwable[] +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### initCause(Throwable arg0) {#initCause-java.lang.Throwable-} +``` +public synchronized Throwable initCause(Throwable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Throwable | | + +**Returns:** +java.lang.Throwable +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### printStackTrace() {#printStackTrace--} +``` +public void printStackTrace() +``` + + + + +### printStackTrace(PrintStream arg0) {#printStackTrace-java.io.PrintStream-} +``` +public void printStackTrace(PrintStream arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.io.PrintStream | | + +### printStackTrace(PrintWriter arg0) {#printStackTrace-java.io.PrintWriter-} +``` +public void printStackTrace(PrintWriter arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.io.PrintWriter | | + +### setStackTrace(StackTraceElement[] arg0) {#setStackTrace-java.lang.StackTraceElement---} +``` +public void setStackTrace(StackTraceElement[] arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.StackTraceElement[] | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/ipathsegment/_index.md b/french/java/com.aspose.font/ipathsegment/_index.md new file mode 100644 index 0000000000..8111923076 --- /dev/null +++ b/french/java/com.aspose.font/ipathsegment/_index.md @@ -0,0 +1,59 @@ +--- +title: "IPathSegment" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente l'interface de tout segment de chemin." +type: docs +weight: 131 +url: /fr/java/com.aspose.font/ipathsegment/ +--- +**All Implemented Interfaces:** +java.lang.Cloneable +``` +public interface IPathSegment extends Cloneable +``` + +Représente l'interface de tout segment de chemin. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [copy()](#copy--) | Crée une copie de l'objet segment. | +| [shift(double dx, double dy)](#shift-double-double-) | Effectue un décalage selon les coordonnées x et y. | +| [transform(TransformationMatrix matrix)](#transform-com.aspose.font.TransformationMatrix-) | Transforme les coordonnées avec la matrice de transformation. | +### copy() {#copy--} +``` +public abstract IPathSegment copy() +``` + + +Crée une copie de l'objet segment. + +**Returns:** +[IPathSegment](../../com.aspose.font/ipathsegment) - Copy of the segment object. +### shift(double dx, double dy) {#shift-double-double-} +``` +public abstract void shift(double dx, double dy) +``` + + +Effectue un décalage selon les coordonnées x et y. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| dx | double | Valeur dx. | +| dy | double | Valeur dy. | + +### transform(TransformationMatrix matrix) {#transform-com.aspose.font.TransformationMatrix-} +``` +public abstract void transform(TransformationMatrix matrix) +``` + + +Transforme les coordonnées avec la matrice de transformation. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| matrix | [TransformationMatrix](../../com.aspose.font/transformationmatrix) | Matrice de transformation. | + diff --git a/french/java/com.aspose.font/isupportsnameaddressing/_index.md b/french/java/com.aspose.font/isupportsnameaddressing/_index.md new file mode 100644 index 0000000000..c26349652e --- /dev/null +++ b/french/java/com.aspose.font/isupportsnameaddressing/_index.md @@ -0,0 +1,27 @@ +--- +title: "ISupportsNameAddressing" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Définit les membres spécifiques aux encodages qui prennent en charge l'adressage par nom de glyphe" +type: docs +weight: 132 +url: /fr/java/com.aspose.font/isupportsnameaddressing/ +---``` +public interface ISupportsNameAddressing +``` + +Defines members that are specific to encodings that support glyph name addressing +## Methods + +| Method | Description | +| --- | --- | +| [getNameToCharCodeIndex()](#getNameToCharCodeIndex--) | Returns name to code map object. | +### getNameToCharCodeIndex() {#getNameToCharCodeIndex--} +``` +public abstract NameToCodeMap getNameToCharCodeIndex() +``` + + +Returns name to code map object. + +**Returns:** +[NameToCodeMap](../../com.aspose.font/nametocodemap) - name to code map object. diff --git a/french/java/com.aspose.font/license/_index.md b/french/java/com.aspose.font/license/_index.md new file mode 100644 index 0000000000..2b101a14d7 --- /dev/null +++ b/french/java/com.aspose.font/license/_index.md @@ -0,0 +1,193 @@ +--- +title: "Licence" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Fournit des méthodes pour licencier le composant." +type: docs +weight: 58 +url: /fr/java/com.aspose.font/license/ +--- +**Inheritance:** +java.lang.Object +``` +public class License +``` + +Fournit des méthodes pour licencier le composant. + +Dans cet exemple, une tentative sera faite pour trouver un fichier de licence nommé MyLicense.lic dans le dossier contenant le composant, dans le dossier contenant l'assembly appelant, dans le dossier de l'assembly d'entrée, puis dans les ressources intégrées de l'assembly appelant. + +License license = new License(); +license.setLicense("MyLicense.lic"); +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [License()](#License--) | Initialise une nouvelle instance de cette classe. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setLicense(InputStream stream)](#setLicense-java.io.InputStream-) | Licence le composant. | +| [setLicense(String licenseName)](#setLicense-java.lang.String-) | Licence le composant. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### License() {#License--} +``` +public License() +``` + + +Initialise une nouvelle instance de cette classe. + +Dans cet exemple, une tentative sera faite pour trouver un fichier de licence nommé MyLicense.lic dans le dossier contenant le composant, dans le dossier contenant l'assembly appelant, dans le dossier de l'assembly d'entrée, puis dans les ressources intégrées de l'assembly appelant. + +License license = new License(); +license.setLicense("MyLicense.lic"); + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setLicense(InputStream stream) {#setLicense-java.io.InputStream-} +``` +public void setLicense(InputStream stream) +``` + + +Licence le composant. + +Un flux qui contient la licence. + +Utilisez cette méthode pour charger une licence à partir d'un flux. + +License license = new License(); +license.setLicense(myStream); + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| flux | java.io.InputStream | Flux de licence | + +### setLicense(String licenseName) {#setLicense-java.lang.String-} +``` +public void setLicense(String licenseName) +``` + + +Licence le composant. + +Essaye de trouver la licence aux emplacements suivants : + +1. Chemin explicite. + +2. Le dossier du fichier jar du composant. + +Dans cet exemple, une tentative sera faite pour trouver un fichier de licence nommé MyLicense.lic dans le dossier contenant le composant, dans le dossier contenant l'assembly appelant, dans le dossier de l'assembly d'entrée, puis dans les ressources intégrées de l'assembly appelant. + +License license = new License(); +license.setLicense("MyLicense.lic"); + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| licenseName | java.lang.String | Peut être un nom de fichier complet ou court ou le nom d'une ressource intégrée. Utilisez une chaîne vide pour passer en mode d'évaluation. | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/licenseflags/_index.md b/french/java/com.aspose.font/licenseflags/_index.md new file mode 100644 index 0000000000..bf1bc20cf5 --- /dev/null +++ b/french/java/com.aspose.font/licenseflags/_index.md @@ -0,0 +1,223 @@ +--- +title: "LicenseFlags" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente un wrapper d'aide pour les indicateurs d'intégration provenant du champ fsType de la table OS/2." +type: docs +weight: 59 +url: /fr/java/com.aspose.font/licenseflags/ +--- +**Inheritance:** +java.lang.Object +``` +public class LicenseFlags +``` + +Représente un wrapper d'aide pour les indicateurs d'incorporation de la table 'OS/2' (champ fsType). +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getFSType()](#getFSType--) | Obtient la valeur brute fsType de la table OS/2 ou 0 si ce champ n'existe pas dans la table. | +| [hashCode()](#hashCode--) | | +| [isBitmapOnlyEmbedding()](#isBitmapOnlyEmbedding--) | Détecte si fsType autorise l'intégration BitmapOnly. | +| [isEditableEmbedding()](#isEditableEmbedding--) | Détecte si fsType autorise l'intégration Editable. | +| [isFSTypeAbsent()](#isFSTypeAbsent--) | Renvoie true si le drapeau fsType est absent dans la table 'OS/2'. | +| [isInstallableEmbedding()](#isInstallableEmbedding--) | Détecte si fsType est une intégration Installable. | +| [isNoSubsettingEmbedding()](#isNoSubsettingEmbedding--) | Détecte si fsType autorise l'intégration NoSubsetting. | +| [isPreviewAndPrintEmbedding()](#isPreviewAndPrintEmbedding--) | Détecte si fsType autorise l'intégration Preview and Print. | +| [isReservedType()](#isReservedType--) | Détecte si le bit réservé (bit 0) est défini pour fsType. | +| [isRestrictedLicenseEmbedding()](#isRestrictedLicenseEmbedding--) | Détecte si fsType est une intégration Restricted License. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getFSType() {#getFSType--} +``` +public int getFSType() +``` + + +Obtient la valeur brute fsType de la table OS/2 ou 0 si ce champ n'existe pas dans la table. + +**Returns:** +int - Valeur brute fsType de la table OS/2 ou 0 si ce champ n'existe pas dans la table. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### isBitmapOnlyEmbedding() {#isBitmapOnlyEmbedding--} +``` +public boolean isBitmapOnlyEmbedding() +``` + + +Détecte si fsType autorise l'intégration BitmapOnly. + +**Returns:** +boolean - Détecte si fsType autorise l'intégration BitmapOnly. +### isEditableEmbedding() {#isEditableEmbedding--} +``` +public boolean isEditableEmbedding() +``` + + +Détecte si fsType autorise l'intégration Editable. + +**Returns:** +boolean - Détecte si fsType autorise l'intégration modifiable. +### isFSTypeAbsent() {#isFSTypeAbsent--} +``` +public boolean isFSTypeAbsent() +``` + + +Renvoie true si le drapeau fsType est absent dans la table 'OS/2'. + +**Returns:** +boolean - Vrai si le drapeau fsType est absent dans la table 'OS/2'. +### isInstallableEmbedding() {#isInstallableEmbedding--} +``` +public boolean isInstallableEmbedding() +``` + + +Détecte si fsType est une intégration Installable. + +**Returns:** +boolean - Détecte si fsType est une intégration installable. +### isNoSubsettingEmbedding() {#isNoSubsettingEmbedding--} +``` +public boolean isNoSubsettingEmbedding() +``` + + +Détecte si fsType autorise l'intégration NoSubsetting. + +**Returns:** +boolean - Détecte si fsType autorise l'intégration sans sous-ensemble. +### isPreviewAndPrintEmbedding() {#isPreviewAndPrintEmbedding--} +``` +public boolean isPreviewAndPrintEmbedding() +``` + + +Détecte si fsType autorise l'intégration Preview and Print. + +**Returns:** +boolean - Détecte si fsType autorise l'intégration en aperçu et impression. +### isReservedType() {#isReservedType--} +``` +public boolean isReservedType() +``` + + +Détecte si le bit réservé (bit 0) est défini pour fsType. + +**Returns:** +boolean - Détecte si le bit réservé (bit 0) est activé pour fsType. +### isRestrictedLicenseEmbedding() {#isRestrictedLicenseEmbedding--} +``` +public boolean isRestrictedLicenseEmbedding() +``` + + +Détecte si fsType est une intégration Restricted License. + +**Returns:** +boolean - Détecte si fsType est une intégration sous licence restreinte. +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/licenserestrictionexception/_index.md b/french/java/com.aspose.font/licenserestrictionexception/_index.md new file mode 100644 index 0000000000..1f6d0f2264 --- /dev/null +++ b/french/java/com.aspose.font/licenserestrictionexception/_index.md @@ -0,0 +1,313 @@ +--- +title: "LicenseRestrictionException" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente l'exception qui peut être levée lors d'une tentative d'exécution d'une fonctionnalité restreinte en mode d'évaluation." +type: docs +weight: 60 +url: /fr/java/com.aspose.font/licenserestrictionexception/ +--- +**Inheritance:** +java.lang.Object, java.lang.Throwable, java.lang.Exception, java.lang.RuntimeException, java.lang.IllegalStateException, [com.aspose.font.FontException](../../com.aspose.font/fontexception) +``` +public class LicenseRestrictionException extends FontException +``` + +Représente l'exception qui peut être levée lors d'une tentative d'exécution d'une fonctionnalité restreinte en mode d'évaluation. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [LicenseRestrictionException()](#LicenseRestrictionException--) | Initialise un nouvel objet FontCreationException. | +| [LicenseRestrictionException(String message)](#LicenseRestrictionException-java.lang.String-) | Initialise un nouvel objet FontCreationException. | +| [LicenseRestrictionException(String message, RuntimeException innerException)](#LicenseRestrictionException-java.lang.String-java.lang.RuntimeException-) | Initialise un nouvel objet FontCreationException. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [addSuppressed(Throwable arg0)](#addSuppressed-java.lang.Throwable-) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [fillInStackTrace()](#fillInStackTrace--) | | +| [getCause()](#getCause--) | | +| [getClass()](#getClass--) | | +| [getLocalizedMessage()](#getLocalizedMessage--) | | +| [getMessage()](#getMessage--) | | +| [getStackTrace()](#getStackTrace--) | | +| [getSuppressed()](#getSuppressed--) | | +| [hashCode()](#hashCode--) | | +| [initCause(Throwable arg0)](#initCause-java.lang.Throwable-) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [printStackTrace()](#printStackTrace--) | | +| [printStackTrace(PrintStream arg0)](#printStackTrace-java.io.PrintStream-) | | +| [printStackTrace(PrintWriter arg0)](#printStackTrace-java.io.PrintWriter-) | | +| [setStackTrace(StackTraceElement[] arg0)](#setStackTrace-java.lang.StackTraceElement---) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### LicenseRestrictionException() {#LicenseRestrictionException--} +``` +public LicenseRestrictionException() +``` + + +Initialise un nouvel objet FontCreationException. + +### LicenseRestrictionException(String message) {#LicenseRestrictionException-java.lang.String-} +``` +public LicenseRestrictionException(String message) +``` + + +Initialise un nouvel objet FontCreationException. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| message | java.lang.String | Un message qui décrit l'erreur. | + +### LicenseRestrictionException(String message, RuntimeException innerException) {#LicenseRestrictionException-java.lang.String-java.lang.RuntimeException-} +``` +public LicenseRestrictionException(String message, RuntimeException innerException) +``` + + +Initialise un nouvel objet FontCreationException. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| message | java.lang.String | Un message qui décrit l'erreur. | +| innerException | java.lang.RuntimeException | L'exception qui est la cause de l'exception actuelle. | + +### addSuppressed(Throwable arg0) {#addSuppressed-java.lang.Throwable-} +``` +public final synchronized void addSuppressed(Throwable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Throwable | | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### fillInStackTrace() {#fillInStackTrace--} +``` +public synchronized Throwable fillInStackTrace() +``` + + + + +**Returns:** +java.lang.Throwable +### getCause() {#getCause--} +``` +public synchronized Throwable getCause() +``` + + + + +**Returns:** +java.lang.Throwable +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getLocalizedMessage() {#getLocalizedMessage--} +``` +public String getLocalizedMessage() +``` + + + + +**Returns:** +java.lang.String +### getMessage() {#getMessage--} +``` +public String getMessage() +``` + + + + +**Returns:** +java.lang.String +### getStackTrace() {#getStackTrace--} +``` +public StackTraceElement[] getStackTrace() +``` + + + + +**Returns:** +java.lang.StackTraceElement[] +### getSuppressed() {#getSuppressed--} +``` +public final synchronized Throwable[] getSuppressed() +``` + + + + +**Returns:** +java.lang.Throwable[] +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### initCause(Throwable arg0) {#initCause-java.lang.Throwable-} +``` +public synchronized Throwable initCause(Throwable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Throwable | | + +**Returns:** +java.lang.Throwable +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### printStackTrace() {#printStackTrace--} +``` +public void printStackTrace() +``` + + + + +### printStackTrace(PrintStream arg0) {#printStackTrace-java.io.PrintStream-} +``` +public void printStackTrace(PrintStream arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.io.PrintStream | | + +### printStackTrace(PrintWriter arg0) {#printStackTrace-java.io.PrintWriter-} +``` +public void printStackTrace(PrintWriter arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.io.PrintWriter | | + +### setStackTrace(StackTraceElement[] arg0) {#setStackTrace-java.lang.StackTraceElement---} +``` +public void setStackTrace(StackTraceElement[] arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.StackTraceElement[] | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/linespacingtype/_index.md b/french/java/com.aspose.font/linespacingtype/_index.md new file mode 100644 index 0000000000..95de450584 --- /dev/null +++ b/french/java/com.aspose.font/linespacingtype/_index.md @@ -0,0 +1,250 @@ +--- +title: "RenderingUtils.LineSpacingType" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Type d'espacement des lignes." +type: docs +weight: 10 +url: /fr/java/com.aspose.font/renderingutils.linespacingtype/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum RenderingUtils.LineSpacingType extends Enum +``` + +Type d'espacement des lignes. Nombre de pixels ou pourcentage de la hauteur de la police. +## Champs + +| Champ | Description | +| --- | --- | +| [PercentOfFontHeight](#PercentOfFontHeight) | La valeur de l'espacement des lignes est définie en pourcentage de la hauteur de la police. | +| [Pixels](#Pixels) | La valeur de l'espacement des lignes est définie en pixels. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### PercentOfFontHeight {#PercentOfFontHeight} +``` +public static final RenderingUtils.LineSpacingType PercentOfFontHeight +``` + + +La valeur de l'espacement des lignes est définie en pourcentage de la hauteur de la police. + +### Pixels {#Pixels} +``` +public static final RenderingUtils.LineSpacingType Pixels +``` + + +La valeur de l'espacement des lignes est définie en pixels. + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static RenderingUtils.LineSpacingType valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[LineSpacingType](../../com.aspose.font/linespacingtype) +### values() {#values--} +``` +public static RenderingUtils.LineSpacingType[] values() +``` + + + + +**Returns:** +com.aspose.font.RenderingUtils.LineSpacingType[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/lineto/_index.md b/french/java/com.aspose.font/lineto/_index.md new file mode 100644 index 0000000000..71987d33f7 --- /dev/null +++ b/french/java/com.aspose.font/lineto/_index.md @@ -0,0 +1,200 @@ +--- +title: "LineTo" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente l'opération LineTo." +type: docs +weight: 61 +url: /fr/java/com.aspose.font/lineto/ +--- +**Inheritance:** +java.lang.Object + +**All Implemented Interfaces:** +[com.aspose.font.IPathSegment](../../com.aspose.font/ipathsegment) +``` +public class LineTo implements IPathSegment +``` + +Représente l'opération LineTo. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [clone()](#clone--) | Crée un nouvel objet qui est une copie de l'instance actuelle. | +| [copy()](#copy--) | Crée une copie de l'objet segment. | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getX()](#getX--) | Obtient la coordonnée x. | +| [getY()](#getY--) | Obtient la coordonnée y. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [shift(double dx, double dy)](#shift-double-double-) | Effectue un décalage selon les coordonnées x et y. | +| [toString()](#toString--) | | +| [transform(TransformationMatrix matrix)](#transform-com.aspose.font.TransformationMatrix-) | Transforme les coordonnées avec la matrice de transformation. | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### clone() {#clone--} +``` +public Object clone() +``` + + +Crée un nouvel objet qui est une copie de l'instance actuelle. + +**Returns:** +java.lang.Object - Un nouvel objet qui est une copie de cette instance. +### copy() {#copy--} +``` +public IPathSegment copy() +``` + + +Crée une copie de l'objet segment. + +**Returns:** +[IPathSegment](../../com.aspose.font/ipathsegment) - Copy of the segment object. +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getX() {#getX--} +``` +public double getX() +``` + + +Obtient la coordonnée x. + +**Returns:** +double - Coordonnée x. +### getY() {#getY--} +``` +public double getY() +``` + + +Obtient la coordonnée y. + +**Returns:** +double - Coordonnée y. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### shift(double dx, double dy) {#shift-double-double-} +``` +public void shift(double dx, double dy) +``` + + +Effectue un décalage selon les coordonnées x et y. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| dx | double | Valeur dx. | +| dy | double | Valeur dy. | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### transform(TransformationMatrix matrix) {#transform-com.aspose.font.TransformationMatrix-} +``` +public void transform(TransformationMatrix matrix) +``` + + +Transforme les coordonnées avec la matrice de transformation. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| matrix | [TransformationMatrix](../../com.aspose.font/transformationmatrix) | Matrice de transformation. | + +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/longhormetric/_index.md b/french/java/com.aspose.font/longhormetric/_index.md new file mode 100644 index 0000000000..a298a22ddc --- /dev/null +++ b/french/java/com.aspose.font/longhormetric/_index.md @@ -0,0 +1,185 @@ +--- +title: "TtfHmtxTable.LongHorMetric" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente l'enregistrement des métriques." +type: docs +weight: 10 +url: /fr/java/com.aspose.font/ttfhmtxtable.longhormetric/ +--- +**Inheritance:** +java.lang.Object +``` +public static class TtfHmtxTable.LongHorMetric +``` + +Représente l'enregistrement des métriques. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [LongHorMetric()](#LongHorMetric--) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [clone()](#clone--) | | +| [equals(TtfHmtxTable.LongHorMetric obj1, TtfHmtxTable.LongHorMetric obj2)](#equals-com.aspose.font.TtfHmtxTable.LongHorMetric-com.aspose.font.TtfHmtxTable.LongHorMetric-) | | +| [equals(Object obj)](#equals-java.lang.Object-) | | +| [getAdvanceWidth()](#getAdvanceWidth--) | Obtient la valeur de la largeur d'avance. | +| [getClass()](#getClass--) | | +| [getLeftSideBearing()](#getLeftSideBearing--) | Obtient la valeur du débordement à gauche. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### LongHorMetric() {#LongHorMetric--} +``` +public LongHorMetric() +``` + + +### clone() {#clone--} +``` +public TtfHmtxTable.LongHorMetric clone() +``` + + + + +**Returns:** +[LongHorMetric](../../com.aspose.font/longhormetric) +### equals(TtfHmtxTable.LongHorMetric obj1, TtfHmtxTable.LongHorMetric obj2) {#equals-com.aspose.font.TtfHmtxTable.LongHorMetric-com.aspose.font.TtfHmtxTable.LongHorMetric-} +``` +public static boolean equals(TtfHmtxTable.LongHorMetric obj1, TtfHmtxTable.LongHorMetric obj2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| obj1 | [LongHorMetric](../../com.aspose.font/longhormetric) | | +| obj2 | [LongHorMetric](../../com.aspose.font/longhormetric) | | + +**Returns:** +boolean +### equals(Object obj) {#equals-java.lang.Object-} +``` +public boolean equals(Object obj) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| obj | java.lang.Object | | + +**Returns:** +boolean +### getAdvanceWidth() {#getAdvanceWidth--} +``` +public int getAdvanceWidth() +``` + + +Obtient la valeur de la largeur d'avance. + +**Returns:** +int - Valeur de la largeur d'avance. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getLeftSideBearing() {#getLeftSideBearing--} +``` +public short getLeftSideBearing() +``` + + +Obtient la valeur du débordement à gauche. + +**Returns:** +short - Valeur du débordement gauche. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/longvermetric/_index.md b/french/java/com.aspose.font/longvermetric/_index.md new file mode 100644 index 0000000000..3b1af510c7 --- /dev/null +++ b/french/java/com.aspose.font/longvermetric/_index.md @@ -0,0 +1,185 @@ +--- +title: "TtfVmtxTable.LongVerMetric" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente l'enregistrement des métriques verticales." +type: docs +weight: 10 +url: /fr/java/com.aspose.font/ttfvmtxtable.longvermetric/ +--- +**Inheritance:** +java.lang.Object +``` +public static class TtfVmtxTable.LongVerMetric +``` + +Représente l'enregistrement des métriques verticales. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [LongVerMetric()](#LongVerMetric--) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [clone()](#clone--) | | +| [equals(TtfVmtxTable.LongVerMetric obj1, TtfVmtxTable.LongVerMetric obj2)](#equals-com.aspose.font.TtfVmtxTable.LongVerMetric-com.aspose.font.TtfVmtxTable.LongVerMetric-) | | +| [equals(Object obj)](#equals-java.lang.Object-) | | +| [getAdvanceHeight()](#getAdvanceHeight--) | Obtient la valeur de hauteur d'avance. | +| [getClass()](#getClass--) | | +| [getTopSideBearing()](#getTopSideBearing--) | Obtient la valeur du débordement supérieur. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### LongVerMetric() {#LongVerMetric--} +``` +public LongVerMetric() +``` + + +### clone() {#clone--} +``` +public TtfVmtxTable.LongVerMetric clone() +``` + + + + +**Returns:** +[LongVerMetric](../../com.aspose.font/longvermetric) +### equals(TtfVmtxTable.LongVerMetric obj1, TtfVmtxTable.LongVerMetric obj2) {#equals-com.aspose.font.TtfVmtxTable.LongVerMetric-com.aspose.font.TtfVmtxTable.LongVerMetric-} +``` +public static boolean equals(TtfVmtxTable.LongVerMetric obj1, TtfVmtxTable.LongVerMetric obj2) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| obj1 | [LongVerMetric](../../com.aspose.font/longvermetric) | | +| obj2 | [LongVerMetric](../../com.aspose.font/longvermetric) | | + +**Returns:** +boolean +### equals(Object obj) {#equals-java.lang.Object-} +``` +public boolean equals(Object obj) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| obj | java.lang.Object | | + +**Returns:** +boolean +### getAdvanceHeight() {#getAdvanceHeight--} +``` +public int getAdvanceHeight() +``` + + +Obtient la valeur de hauteur d'avance. + +**Returns:** +int - La valeur de hauteur d'avance. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getTopSideBearing() {#getTopSideBearing--} +``` +public short getTopSideBearing() +``` + + +Obtient la valeur du débordement supérieur. + +**Returns:** +short - La valeur du débordement supérieur. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/maclanguageid/_index.md b/french/java/com.aspose.font/maclanguageid/_index.md new file mode 100644 index 0000000000..261b32eedc --- /dev/null +++ b/french/java/com.aspose.font/maclanguageid/_index.md @@ -0,0 +1,1201 @@ +--- +title: "MacLanguageId" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Énumération des identifiants de langue de la plateforme Macintosh." +type: docs +weight: 63 +url: /fr/java/com.aspose.font/maclanguageid/ +--- +**Inheritance:** +java.lang.Object +``` +public final class MacLanguageId +``` + +Énumération des identifiants de langue de la plateforme Macintosh. +## Champs + +| Champ | Description | +| --- | --- | +| [Afrikaans](#Afrikaans) | Valeur LanguageId Afrikaans | +| [Albanian](#Albanian) | Valeur LanguageId Albanais | +| [Amharic](#Amharic) | Valeur LanguageId Amharique | +| [Arabic](#Arabic) | Valeur LanguageId Arabe | +| [Armenian](#Armenian) | Valeur LanguageId Arménien | +| [Assamese](#Assamese) | Valeur LanguageId Assamais | +| [Aymara](#Aymara) | Aymara LanguageId valeur | +| [Azerbaijani_Arabic](#Azerbaijani-Arabic) | Azéri (script arabe) LanguageId valeur | +| [Azerbaijani_Cyrillic](#Azerbaijani-Cyrillic) | Azéri (script cyrillique) LanguageId valeur | +| [Azerbaijani_Roman](#Azerbaijani-Roman) | Azéri (script latin) LanguageId valeur | +| [Basque](#Basque) | Basque LanguageId valeur | +| [Bengali](#Bengali) | Bengali LanguageId valeur | +| [Breton](#Breton) | Breton LanguageId valeur | +| [Bulgarian](#Bulgarian) | Bulgare LanguageId valeur | +| [Burmese](#Burmese) | Birman LanguageId valeur | +| [Byelorussian](#Byelorussian) | Biélorusse LanguageId valeur | +| [Catalan](#Catalan) | Catalan LanguageId valeur | +| [Chinese_Simplified](#Chinese-Simplified) | Chinois (simplifié) LanguageId valeur | +| [Chinese_Traditional](#Chinese-Traditional) | Chinois (traditionnel) LanguageId valeur | +| [Croatian](#Croatian) | Croate LanguageId valeur | +| [Czech](#Czech) | Tchèque LanguageId valeur | +| [Danish](#Danish) | Danois LanguageId valeur | +| [Dutch](#Dutch) | Néerlandais LanguageId valeur | +| [Dzongkha](#Dzongkha) | Dzongkha LanguageId valeur | +| [English](#English) | Anglais LanguageId valeur | +| [Esperanto](#Esperanto) | Espéranto LanguageId valeur | +| [Estonian](#Estonian) | Estonien LanguageId valeur | +| [Faroese](#Faroese) | Féroïen LanguageId valeur | +| [Farsi_Persian](#Farsi-Persian) | Farsi/persan LanguageId valeur | +| [Finnish](#Finnish) | Finnois LanguageId valeur | +| [Flemish](#Flemish) | Flamand LanguageId valeur | +| [French](#French) | Français LanguageId valeur | +| [Galician](#Galician) | Galicien LanguageId valeur | +| [Galla](#Galla) | Galla LanguageId valeur | +| [Georgian](#Georgian) | Géorgien LanguageId valeur | +| [German](#German) | Allemand LanguageId valeur | +| [Greek](#Greek) | Grec LanguageId valeur | +| [Greek_Polytonic](#Greek-Polytonic) | Grec (polytonique) LanguageId valeur | +| [Greenlandic](#Greenlandic) | Groenlandais LanguageId valeur | +| [Guarani](#Guarani) | Guarani LanguageId valeur | +| [Gujarati](#Gujarati) | Gujarati LanguageId valeur | +| [Hebrew](#Hebrew) | Hébreu LanguageId valeur | +| [Hindi](#Hindi) | Hindi LanguageId valeur | +| [Hungarian](#Hungarian) | Hongrois LanguageId valeur | +| [Icelandic](#Icelandic) | Islandais LanguageId valeur | +| [Indonesian](#Indonesian) | Indonésien LanguageId valeur | +| [Inuktitut](#Inuktitut) | Inuktitut LanguageId valeur | +| [Irish_Gaelic](#Irish-Gaelic) | Gaélique irlandais LanguageId valeur | +| [Irish_Gaelic_WDA](#Irish-Gaelic-WDA) | Gaélique irlandais (avec point au-dessus) LanguageId valeur | +| [Italian](#Italian) | Italien LanguageId valeur | +| [Japanese](#Japanese) | Japonais LanguageId valeur | +| [Javanese](#Javanese) | Javanais (script romain) LanguageId valeur | +| [Kannada](#Kannada) | Kannada LanguageId valeur | +| [Kashmiri](#Kashmiri) | Cachemiri LanguageId valeur | +| [Kazakh](#Kazakh) | Kazakh LanguageId valeur | +| [Khmer](#Khmer) | Khmer LanguageId valeur | +| [Kinyarwanda_Ruanda](#Kinyarwanda-Ruanda) | Kinyarwanda/Ruanda LanguageId valeur | +| [Kirghiz](#Kirghiz) | Kirghiz LanguageId valeur | +| [Korean](#Korean) | Korean LanguageId valeur | +| [Kurdish](#Kurdish) | Kurdish LanguageId valeur | +| [Lao](#Lao) | Lao LanguageId valeur | +| [Latin](#Latin) | Latin LanguageId valeur | +| [Latvian](#Latvian) | Latvian LanguageId valeur | +| [Lithuanian](#Lithuanian) | Lithuanian LanguageId valeur | +| [Macedonian](#Macedonian) | Macedonian LanguageId valeur | +| [Malagasy](#Malagasy) | Malagasy LanguageId valeur | +| [Malay_Arabic](#Malay-Arabic) | Malay (script arabe) LanguageId valeur | +| [Malay_Roman](#Malay-Roman) | Malay (script romain) LanguageId valeur | +| [Malayalam](#Malayalam) | Malayalam LanguageId valeur | +| [Maltese](#Maltese) | Maltese LanguageId valeur | +| [Manx_Gaelic](#Manx-Gaelic) | Manx Gaelic LanguageId valeur | +| [Marathi](#Marathi) | Marathi LanguageId valeur | +| [Moldavian](#Moldavian) | Moldavian LanguageId valeur | +| [Mongolian_Cyrillic](#Mongolian-Cyrillic) | Mongolian (script cyrillique) LanguageId valeur | +| [Mongolian_Mongolian](#Mongolian-Mongolian) | Mongolian (script mongol) LanguageId valeur | +| [Nepali](#Nepali) | Népalais LanguageId valeur | +| [Norwegian](#Norwegian) | Norvégien LanguageId valeur | +| [Nyanja_Chewa](#Nyanja-Chewa) | Nyanja/Chewa LanguageId valeur | +| [Oriya](#Oriya) | Oriya LanguageId valeur | +| [Pashto](#Pashto) | Pashto LanguageId valeur | +| [Polish](#Polish) | Polonais LanguageId valeur | +| [Portuguese](#Portuguese) | Portugais LanguageId valeur | +| [Punjabi](#Punjabi) | Pendjabi LanguageId valeur | +| [Quechua](#Quechua) | Quechua LanguageId valeur | +| [Romanian](#Romanian) | Roumain LanguageId valeur | +| [Rundi](#Rundi) | Rundi LanguageId valeur | +| [Russian](#Russian) | Russe LanguageId valeur | +| [Sami](#Sami) | Sami LanguageId valeur | +| [Sanskrit](#Sanskrit) | Sanskrit LanguageId valeur | +| [Scottish_Gaelic](#Scottish-Gaelic) | Gaélique écossais LanguageId valeur | +| [Serbian](#Serbian) | Serbe LanguLanguageIdageID valeur | +| [Sindhi](#Sindhi) | Sindhi LanguageId valeur | +| [Sinhalese](#Sinhalese) | Cingalais LanguageId valeur | +| [Slovak](#Slovak) | Slovaque LanguageId valeur | +| [Slovenian](#Slovenian) | Slovène LanguageId valeur | +| [Somali](#Somali) | Somali LanguageId valeur | +| [Spanish](#Spanish) | Espagnol LanguageId valeur | +| [Sundanese](#Sundanese) | Sundanais (script romain) LanguageId valeur | +| [Swahili](#Swahili) | Swahili LanguageId valeur | +| [Swedish](#Swedish) | Suédois LanguageId valeur | +| [Tagalog](#Tagalog) | Tagalog LanguageId valeur | +| [Tajiki](#Tajiki) | Tadjik LanguageId valeur | +| [Tamil](#Tamil) | Tamoul LanguagLanguageIdeID valeur | +| [Tatar](#Tatar) | Tatar LanguageId valeur | +| [Telugu](#Telugu) | Télougou LanguageId valeur | +| [Thai](#Thai) | Thaï LanguageId valeur | +| [Tibetan](#Tibetan) | Valeur LanguageId tibétaine | +| [Tigrinya](#Tigrinya) | Valeur LanguageId Tigrinya | +| [Tongan](#Tongan) | Valeur LanguageId Tongan | +| [Turkish](#Turkish) | Valeur LanguageId turc | +| [Turkmen](#Turkmen) | Valeur LanguageId turkmène | +| [Uighur](#Uighur) | Valeur LanguageId ouïghour | +| [Ukrainian](#Ukrainian) | Valeur LanguageId ukrainien | +| [Urdu](#Urdu) | Valeur LanguageId ourdou | +| [Uzbek](#Uzbek) | Valeur LanguageId ouzbek | +| [Vietnamese](#Vietnamese) | Valeur LanguageId vietnamien | +| [Welsh](#Welsh) | Valeur LanguageId gallois | +| [Yiddish](#Yiddish) | Valeur LanguageId yiddish | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getId()](#getId--) | Obtenez la valeur entière. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### Afrikaans {#Afrikaans} +``` +public static final MacLanguageId Afrikaans +``` + + +Valeur LanguageId Afrikaans + +### Albanian {#Albanian} +``` +public static final MacLanguageId Albanian +``` + + +Valeur LanguageId Albanais + +### Amharic {#Amharic} +``` +public static final MacLanguageId Amharic +``` + + +Valeur LanguageId Amharique + +### Arabic {#Arabic} +``` +public static final MacLanguageId Arabic +``` + + +Valeur LanguageId Arabe + +### Armenian {#Armenian} +``` +public static final MacLanguageId Armenian +``` + + +Valeur LanguageId Arménien + +### Assamese {#Assamese} +``` +public static final MacLanguageId Assamese +``` + + +Valeur LanguageId Assamais + +### Aymara {#Aymara} +``` +public static final MacLanguageId Aymara +``` + + +Aymara LanguageId valeur + +### Azerbaijani_Arabic {#Azerbaijani-Arabic} +``` +public static final MacLanguageId Azerbaijani_Arabic +``` + + +Azéri (script arabe) LanguageId valeur + +### Azerbaijani_Cyrillic {#Azerbaijani-Cyrillic} +``` +public static final MacLanguageId Azerbaijani_Cyrillic +``` + + +Azéri (script cyrillique) LanguageId valeur + +### Azerbaijani_Roman {#Azerbaijani-Roman} +``` +public static final MacLanguageId Azerbaijani_Roman +``` + + +Azéri (script latin) LanguageId valeur + +### Basque {#Basque} +``` +public static final MacLanguageId Basque +``` + + +Basque LanguageId valeur + +### Bengali {#Bengali} +``` +public static final MacLanguageId Bengali +``` + + +Bengali LanguageId valeur + +### Breton {#Breton} +``` +public static final MacLanguageId Breton +``` + + +Breton LanguageId valeur + +### Bulgarian {#Bulgarian} +``` +public static final MacLanguageId Bulgarian +``` + + +Bulgare LanguageId valeur + +### Burmese {#Burmese} +``` +public static final MacLanguageId Burmese +``` + + +Birman LanguageId valeur + +### Byelorussian {#Byelorussian} +``` +public static final MacLanguageId Byelorussian +``` + + +Biélorusse LanguageId valeur + +### Catalan {#Catalan} +``` +public static final MacLanguageId Catalan +``` + + +Catalan LanguageId valeur + +### Chinese_Simplified {#Chinese-Simplified} +``` +public static final MacLanguageId Chinese_Simplified +``` + + +Chinois (simplifié) LanguageId valeur + +### Chinese_Traditional {#Chinese-Traditional} +``` +public static final MacLanguageId Chinese_Traditional +``` + + +Chinois (traditionnel) LanguageId valeur + +### Croatian {#Croatian} +``` +public static final MacLanguageId Croatian +``` + + +Croate LanguageId valeur + +### Czech {#Czech} +``` +public static final MacLanguageId Czech +``` + + +Tchèque LanguageId valeur + +### Danish {#Danish} +``` +public static final MacLanguageId Danish +``` + + +Danois LanguageId valeur + +### Dutch {#Dutch} +``` +public static final MacLanguageId Dutch +``` + + +Néerlandais LanguageId valeur + +### Dzongkha {#Dzongkha} +``` +public static final MacLanguageId Dzongkha +``` + + +Dzongkha LanguageId valeur + +### English {#English} +``` +public static final MacLanguageId English +``` + + +Anglais LanguageId valeur + +### Esperanto {#Esperanto} +``` +public static final MacLanguageId Esperanto +``` + + +Espéranto LanguageId valeur + +### Estonian {#Estonian} +``` +public static final MacLanguageId Estonian +``` + + +Estonien LanguageId valeur + +### Faroese {#Faroese} +``` +public static final MacLanguageId Faroese +``` + + +Féroïen LanguageId valeur + +### Farsi_Persian {#Farsi-Persian} +``` +public static final MacLanguageId Farsi_Persian +``` + + +Farsi/persan LanguageId valeur + +### Finnish {#Finnish} +``` +public static final MacLanguageId Finnish +``` + + +Finnois LanguageId valeur + +### Flemish {#Flemish} +``` +public static final MacLanguageId Flemish +``` + + +Flamand LanguageId valeur + +### French {#French} +``` +public static final MacLanguageId French +``` + + +Français LanguageId valeur + +### Galician {#Galician} +``` +public static final MacLanguageId Galician +``` + + +Galicien LanguageId valeur + +### Galla {#Galla} +``` +public static final MacLanguageId Galla +``` + + +Galla LanguageId valeur + +### Georgian {#Georgian} +``` +public static final MacLanguageId Georgian +``` + + +Géorgien LanguageId valeur + +### German {#German} +``` +public static final MacLanguageId German +``` + + +Allemand LanguageId valeur + +### Greek {#Greek} +``` +public static final MacLanguageId Greek +``` + + +Grec LanguageId valeur + +### Greek_Polytonic {#Greek-Polytonic} +``` +public static final MacLanguageId Greek_Polytonic +``` + + +Grec (polytonique) LanguageId valeur + +### Greenlandic {#Greenlandic} +``` +public static final MacLanguageId Greenlandic +``` + + +Groenlandais LanguageId valeur + +### Guarani {#Guarani} +``` +public static final MacLanguageId Guarani +``` + + +Guarani LanguageId valeur + +### Gujarati {#Gujarati} +``` +public static final MacLanguageId Gujarati +``` + + +Gujarati LanguageId valeur + +### Hebrew {#Hebrew} +``` +public static final MacLanguageId Hebrew +``` + + +Hébreu LanguageId valeur + +### Hindi {#Hindi} +``` +public static final MacLanguageId Hindi +``` + + +Hindi LanguageId valeur + +### Hungarian {#Hungarian} +``` +public static final MacLanguageId Hungarian +``` + + +Hongrois LanguageId valeur + +### Icelandic {#Icelandic} +``` +public static final MacLanguageId Icelandic +``` + + +Islandais LanguageId valeur + +### Indonesian {#Indonesian} +``` +public static final MacLanguageId Indonesian +``` + + +Indonésien LanguageId valeur + +### Inuktitut {#Inuktitut} +``` +public static final MacLanguageId Inuktitut +``` + + +Inuktitut LanguageId valeur + +### Irish_Gaelic {#Irish-Gaelic} +``` +public static final MacLanguageId Irish_Gaelic +``` + + +Gaélique irlandais LanguageId valeur + +### Irish_Gaelic_WDA {#Irish-Gaelic-WDA} +``` +public static final MacLanguageId Irish_Gaelic_WDA +``` + + +Gaélique irlandais (avec point au-dessus) LanguageId valeur + +### Italian {#Italian} +``` +public static final MacLanguageId Italian +``` + + +Italien LanguageId valeur + +### Japanese {#Japanese} +``` +public static final MacLanguageId Japanese +``` + + +Japonais LanguageId valeur + +### Javanese {#Javanese} +``` +public static final MacLanguageId Javanese +``` + + +Javanais (script romain) LanguageId valeur + +### Kannada {#Kannada} +``` +public static final MacLanguageId Kannada +``` + + +Kannada LanguageId valeur + +### Kashmiri {#Kashmiri} +``` +public static final MacLanguageId Kashmiri +``` + + +Cachemiri LanguageId valeur + +### Kazakh {#Kazakh} +``` +public static final MacLanguageId Kazakh +``` + + +Kazakh LanguageId valeur + +### Khmer {#Khmer} +``` +public static final MacLanguageId Khmer +``` + + +Khmer LanguageId valeur + +### Kinyarwanda_Ruanda {#Kinyarwanda-Ruanda} +``` +public static final MacLanguageId Kinyarwanda_Ruanda +``` + + +Kinyarwanda/Ruanda LanguageId valeur + +### Kirghiz {#Kirghiz} +``` +public static final MacLanguageId Kirghiz +``` + + +Kirghiz LanguageId valeur + +### Korean {#Korean} +``` +public static final MacLanguageId Korean +``` + + +Korean LanguageId valeur + +### Kurdish {#Kurdish} +``` +public static final MacLanguageId Kurdish +``` + + +Kurdish LanguageId valeur + +### Lao {#Lao} +``` +public static final MacLanguageId Lao +``` + + +Lao LanguageId valeur + +### Latin {#Latin} +``` +public static final MacLanguageId Latin +``` + + +Latin LanguageId valeur + +### Latvian {#Latvian} +``` +public static final MacLanguageId Latvian +``` + + +Latvian LanguageId valeur + +### Lithuanian {#Lithuanian} +``` +public static final MacLanguageId Lithuanian +``` + + +Lithuanian LanguageId valeur + +### Macedonian {#Macedonian} +``` +public static final MacLanguageId Macedonian +``` + + +Macedonian LanguageId valeur + +### Malagasy {#Malagasy} +``` +public static final MacLanguageId Malagasy +``` + + +Malagasy LanguageId valeur + +### Malay_Arabic {#Malay-Arabic} +``` +public static final MacLanguageId Malay_Arabic +``` + + +Malay (script arabe) LanguageId valeur + +### Malay_Roman {#Malay-Roman} +``` +public static final MacLanguageId Malay_Roman +``` + + +Malay (script romain) LanguageId valeur + +### Malayalam {#Malayalam} +``` +public static final MacLanguageId Malayalam +``` + + +Malayalam LanguageId valeur + +### Maltese {#Maltese} +``` +public static final MacLanguageId Maltese +``` + + +Maltese LanguageId valeur + +### Manx_Gaelic {#Manx-Gaelic} +``` +public static final MacLanguageId Manx_Gaelic +``` + + +Manx Gaelic LanguageId valeur + +### Marathi {#Marathi} +``` +public static final MacLanguageId Marathi +``` + + +Marathi LanguageId valeur + +### Moldavian {#Moldavian} +``` +public static final MacLanguageId Moldavian +``` + + +Moldavian LanguageId valeur + +### Mongolian_Cyrillic {#Mongolian-Cyrillic} +``` +public static final MacLanguageId Mongolian_Cyrillic +``` + + +Mongolian (script cyrillique) LanguageId valeur + +### Mongolian_Mongolian {#Mongolian-Mongolian} +``` +public static final MacLanguageId Mongolian_Mongolian +``` + + +Mongolian (script mongol) LanguageId valeur + +### Nepali {#Nepali} +``` +public static final MacLanguageId Nepali +``` + + +Népalais LanguageId valeur + +### Norwegian {#Norwegian} +``` +public static final MacLanguageId Norwegian +``` + + +Norvégien LanguageId valeur + +### Nyanja_Chewa {#Nyanja-Chewa} +``` +public static final MacLanguageId Nyanja_Chewa +``` + + +Nyanja/Chewa LanguageId valeur + +### Oriya {#Oriya} +``` +public static final MacLanguageId Oriya +``` + + +Oriya LanguageId valeur + +### Pashto {#Pashto} +``` +public static final MacLanguageId Pashto +``` + + +Pashto LanguageId valeur + +### Polish {#Polish} +``` +public static final MacLanguageId Polish +``` + + +Polonais LanguageId valeur + +### Portuguese {#Portuguese} +``` +public static final MacLanguageId Portuguese +``` + + +Portugais LanguageId valeur + +### Punjabi {#Punjabi} +``` +public static final MacLanguageId Punjabi +``` + + +Pendjabi LanguageId valeur + +### Quechua {#Quechua} +``` +public static final MacLanguageId Quechua +``` + + +Quechua LanguageId valeur + +### Romanian {#Romanian} +``` +public static final MacLanguageId Romanian +``` + + +Roumain LanguageId valeur + +### Rundi {#Rundi} +``` +public static final MacLanguageId Rundi +``` + + +Rundi LanguageId valeur + +### Russian {#Russian} +``` +public static final MacLanguageId Russian +``` + + +Russe LanguageId valeur + +### Sami {#Sami} +``` +public static final MacLanguageId Sami +``` + + +Sami LanguageId valeur + +### Sanskrit {#Sanskrit} +``` +public static final MacLanguageId Sanskrit +``` + + +Sanskrit LanguageId valeur + +### Scottish_Gaelic {#Scottish-Gaelic} +``` +public static final MacLanguageId Scottish_Gaelic +``` + + +Gaélique écossais LanguageId valeur + +### Serbian {#Serbian} +``` +public static final MacLanguageId Serbian +``` + + +Serbe LanguLanguageIdageID valeur + +### Sindhi {#Sindhi} +``` +public static final MacLanguageId Sindhi +``` + + +Sindhi LanguageId valeur + +### Sinhalese {#Sinhalese} +``` +public static final MacLanguageId Sinhalese +``` + + +Cingalais LanguageId valeur + +### Slovak {#Slovak} +``` +public static final MacLanguageId Slovak +``` + + +Slovaque LanguageId valeur + +### Slovenian {#Slovenian} +``` +public static final MacLanguageId Slovenian +``` + + +Slovène LanguageId valeur + +### Somali {#Somali} +``` +public static final MacLanguageId Somali +``` + + +Somali LanguageId valeur + +### Spanish {#Spanish} +``` +public static final MacLanguageId Spanish +``` + + +Espagnol LanguageId valeur + +### Sundanese {#Sundanese} +``` +public static final MacLanguageId Sundanese +``` + + +Sundanais (script romain) LanguageId valeur + +### Swahili {#Swahili} +``` +public static final MacLanguageId Swahili +``` + + +Swahili LanguageId valeur + +### Swedish {#Swedish} +``` +public static final MacLanguageId Swedish +``` + + +Suédois LanguageId valeur + +### Tagalog {#Tagalog} +``` +public static final MacLanguageId Tagalog +``` + + +Tagalog LanguageId valeur + +### Tajiki {#Tajiki} +``` +public static final MacLanguageId Tajiki +``` + + +Tadjik LanguageId valeur + +### Tamil {#Tamil} +``` +public static final MacLanguageId Tamil +``` + + +Tamoul LanguagLanguageIdeID valeur + +### Tatar {#Tatar} +``` +public static final MacLanguageId Tatar +``` + + +Tatar LanguageId valeur + +### Telugu {#Telugu} +``` +public static final MacLanguageId Telugu +``` + + +Télougou LanguageId valeur + +### Thai {#Thai} +``` +public static final MacLanguageId Thai +``` + + +Thaï LanguageId valeur + +### Tibetan {#Tibetan} +``` +public static final MacLanguageId Tibetan +``` + + +Valeur LanguageId tibétaine + +### Tigrinya {#Tigrinya} +``` +public static final MacLanguageId Tigrinya +``` + + +Valeur LanguageId Tigrinya + +### Tongan {#Tongan} +``` +public static final MacLanguageId Tongan +``` + + +Valeur LanguageId Tongan + +### Turkish {#Turkish} +``` +public static final MacLanguageId Turkish +``` + + +Valeur LanguageId turc + +### Turkmen {#Turkmen} +``` +public static final MacLanguageId Turkmen +``` + + +Valeur LanguageId turkmène + +### Uighur {#Uighur} +``` +public static final MacLanguageId Uighur +``` + + +Valeur LanguageId ouïghour + +### Ukrainian {#Ukrainian} +``` +public static final MacLanguageId Ukrainian +``` + + +Valeur LanguageId ukrainien + +### Urdu {#Urdu} +``` +public static final MacLanguageId Urdu +``` + + +Valeur LanguageId ourdou + +### Uzbek {#Uzbek} +``` +public static final MacLanguageId Uzbek +``` + + +Valeur LanguageId ouzbek + +### Vietnamese {#Vietnamese} +``` +public static final MacLanguageId Vietnamese +``` + + +Valeur LanguageId vietnamien + +### Welsh {#Welsh} +``` +public static final MacLanguageId Welsh +``` + + +Valeur LanguageId gallois + +### Yiddish {#Yiddish} +``` +public static final MacLanguageId Yiddish +``` + + +Valeur LanguageId yiddish + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getId() {#getId--} +``` +public int getId() +``` + + +Obtenez la valeur entière. + +**Returns:** +int - La valeur entière. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/macplatformspecificid/_index.md b/french/java/com.aspose.font/macplatformspecificid/_index.md new file mode 100644 index 0000000000..4faa057992 --- /dev/null +++ b/french/java/com.aspose.font/macplatformspecificid/_index.md @@ -0,0 +1,529 @@ +--- +title: "MacPlatformSpecificId" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente l'énumération PlatformSpecificId de la plateforme Macintosh." +type: docs +weight: 140 +url: /fr/java/com.aspose.font/macplatformspecificid/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum MacPlatformSpecificId extends Enum +``` + +Représente l'énumération PlatformSpecificId de la plateforme Macintosh. +## Champs + +| Champ | Description | +| --- | --- | +| [Arabic](#Arabic) | Valeur spécifique à la plateforme Arabe. | +| [Armenian](#Armenian) | Valeur spécifique à la plateforme Arménienne. | +| [Bengali](#Bengali) | Valeur spécifique à la plateforme Bengali. | +| [Burmese](#Burmese) | Valeur spécifique à la plateforme Birmane. | +| [Devanagari](#Devanagari) | Valeur spécifique à la plateforme Devanagari. | +| [Geez](#Geez) | Valeur spécifique à la plateforme Geez. | +| [Georgian](#Georgian) | Valeur spécifique à la plateforme Géorgienne. | +| [Greek](#Greek) | Valeur spécifique à la plateforme Grecque. | +| [Gujarati](#Gujarati) | Valeur spécifique à la plateforme Gujarati. | +| [Gurmukhi](#Gurmukhi) | Valeur spécifique à la plateforme Gurmukhi. | +| [Hebrew](#Hebrew) | Valeur spécifique à la plateforme Hébraïque. | +| [Japanese](#Japanese) | Valeur spécifique à la plateforme Japonaise. | +| [Kannada](#Kannada) | Valeur spécifique à la plateforme Kannada. | +| [Khmer](#Khmer) | Valeur spécifique à la plateforme Khmer. | +| [Korean](#Korean) | Valeur spécifique à la plateforme Coréenne. | +| [Laotian](#Laotian) | Valeur spécifique à la plateforme Laotienne. | +| [Malayalam](#Malayalam) | Valeur spécifique à la plateforme Malayalam. | +| [Mongolian](#Mongolian) | Valeur spécifique à la plateforme Mongole. | +| [Oriya](#Oriya) | Valeur spécifique à la plateforme Oriya. | +| [RSymbol](#RSymbol) | Valeur spécifique à la plateforme RSymbol. | +| [Roman](#Roman) | Valeur spécifique à la plateforme Romaine. | +| [Russian](#Russian) | Valeur spécifique à la plateforme Russe. | +| [Simplified_Chinese](#Simplified-Chinese) | Valeur spécifique à la plateforme Chinois simplifié. | +| [Sindhi](#Sindhi) | Valeur spécifique à la plateforme Sindhi. | +| [Sinhalese](#Sinhalese) | Valeur spécifique à la plateforme cinghalaise. | +| [Slavic](#Slavic) | Valeur spécifique à la plateforme slave. | +| [Tamil](#Tamil) | Valeur spécifique à la plateforme tamoule. | +| [Telugu](#Telugu) | Valeur spécifique à la plateforme télougou. | +| [Thai](#Thai) | Valeur spécifique à la plateforme thaï. | +| [Tibetan](#Tibetan) | Valeur spécifique à la plateforme tibétaine. | +| [Traditional_Chinese](#Traditional-Chinese) | Valeur spécifique à la plateforme chinois traditionnel. | +| [Uninterpreted](#Uninterpreted) | Valeur spécifique à la plateforme non interprétée. | +| [Vietnamese](#Vietnamese) | Valeur spécifique à la plateforme vietnamienne. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### Arabic {#Arabic} +``` +public static final MacPlatformSpecificId Arabic +``` + + +Valeur spécifique à la plateforme Arabe. + +### Armenian {#Armenian} +``` +public static final MacPlatformSpecificId Armenian +``` + + +Valeur spécifique à la plateforme Arménienne. + +### Bengali {#Bengali} +``` +public static final MacPlatformSpecificId Bengali +``` + + +Valeur spécifique à la plateforme Bengali. + +### Burmese {#Burmese} +``` +public static final MacPlatformSpecificId Burmese +``` + + +Valeur spécifique à la plateforme Birmane. + +### Devanagari {#Devanagari} +``` +public static final MacPlatformSpecificId Devanagari +``` + + +Valeur spécifique à la plateforme Devanagari. + +### Geez {#Geez} +``` +public static final MacPlatformSpecificId Geez +``` + + +Valeur spécifique à la plateforme Geez. + +### Georgian {#Georgian} +``` +public static final MacPlatformSpecificId Georgian +``` + + +Valeur spécifique à la plateforme Géorgienne. + +### Greek {#Greek} +``` +public static final MacPlatformSpecificId Greek +``` + + +Valeur spécifique à la plateforme Grecque. + +### Gujarati {#Gujarati} +``` +public static final MacPlatformSpecificId Gujarati +``` + + +Valeur spécifique à la plateforme Gujarati. + +### Gurmukhi {#Gurmukhi} +``` +public static final MacPlatformSpecificId Gurmukhi +``` + + +Valeur spécifique à la plateforme Gurmukhi. + +### Hebrew {#Hebrew} +``` +public static final MacPlatformSpecificId Hebrew +``` + + +Valeur spécifique à la plateforme Hébraïque. + +### Japanese {#Japanese} +``` +public static final MacPlatformSpecificId Japanese +``` + + +Valeur spécifique à la plateforme Japonaise. + +### Kannada {#Kannada} +``` +public static final MacPlatformSpecificId Kannada +``` + + +Valeur spécifique à la plateforme Kannada. + +### Khmer {#Khmer} +``` +public static final MacPlatformSpecificId Khmer +``` + + +Valeur spécifique à la plateforme Khmer. + +### Korean {#Korean} +``` +public static final MacPlatformSpecificId Korean +``` + + +Valeur spécifique à la plateforme Coréenne. + +### Laotian {#Laotian} +``` +public static final MacPlatformSpecificId Laotian +``` + + +Valeur spécifique à la plateforme Laotienne. + +### Malayalam {#Malayalam} +``` +public static final MacPlatformSpecificId Malayalam +``` + + +Valeur spécifique à la plateforme Malayalam. + +### Mongolian {#Mongolian} +``` +public static final MacPlatformSpecificId Mongolian +``` + + +Valeur spécifique à la plateforme Mongole. + +### Oriya {#Oriya} +``` +public static final MacPlatformSpecificId Oriya +``` + + +Valeur spécifique à la plateforme Oriya. + +### RSymbol {#RSymbol} +``` +public static final MacPlatformSpecificId RSymbol +``` + + +Valeur spécifique à la plateforme RSymbol. + +### Roman {#Roman} +``` +public static final MacPlatformSpecificId Roman +``` + + +Valeur spécifique à la plateforme Romaine. + +### Russian {#Russian} +``` +public static final MacPlatformSpecificId Russian +``` + + +Valeur spécifique à la plateforme Russe. + +### Simplified_Chinese {#Simplified-Chinese} +``` +public static final MacPlatformSpecificId Simplified_Chinese +``` + + +Valeur spécifique à la plateforme Chinois simplifié. + +### Sindhi {#Sindhi} +``` +public static final MacPlatformSpecificId Sindhi +``` + + +Valeur spécifique à la plateforme Sindhi. + +### Sinhalese {#Sinhalese} +``` +public static final MacPlatformSpecificId Sinhalese +``` + + +Valeur spécifique à la plateforme cinghalaise. + +### Slavic {#Slavic} +``` +public static final MacPlatformSpecificId Slavic +``` + + +Valeur spécifique à la plateforme slave. + +### Tamil {#Tamil} +``` +public static final MacPlatformSpecificId Tamil +``` + + +Valeur spécifique à la plateforme tamoule. + +### Telugu {#Telugu} +``` +public static final MacPlatformSpecificId Telugu +``` + + +Valeur spécifique à la plateforme télougou. + +### Thai {#Thai} +``` +public static final MacPlatformSpecificId Thai +``` + + +Valeur spécifique à la plateforme thaï. + +### Tibetan {#Tibetan} +``` +public static final MacPlatformSpecificId Tibetan +``` + + +Valeur spécifique à la plateforme tibétaine. + +### Traditional_Chinese {#Traditional-Chinese} +``` +public static final MacPlatformSpecificId Traditional_Chinese +``` + + +Valeur spécifique à la plateforme chinois traditionnel. + +### Uninterpreted {#Uninterpreted} +``` +public static final MacPlatformSpecificId Uninterpreted +``` + + +Valeur spécifique à la plateforme non interprétée. + +### Vietnamese {#Vietnamese} +``` +public static final MacPlatformSpecificId Vietnamese +``` + + +Valeur spécifique à la plateforme vietnamienne. + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static MacPlatformSpecificId valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[MacPlatformSpecificId](../../com.aspose.font/macplatformspecificid) +### values() {#values--} +``` +public static MacPlatformSpecificId[] values() +``` + + + + +**Returns:** +com.aspose.font.MacPlatformSpecificId[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/metered/_index.md b/french/java/com.aspose.font/metered/_index.md new file mode 100644 index 0000000000..287ca1c1ad --- /dev/null +++ b/french/java/com.aspose.font/metered/_index.md @@ -0,0 +1,185 @@ +--- +title: "Mesuré" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Fournit des méthodes pour définir la clé mesurée." +type: docs +weight: 64 +url: /fr/java/com.aspose.font/metered/ +--- +**Inheritance:** +java.lang.Object +``` +public final class Metered +``` + +Fournit des méthodes pour définir la clé mesurée. + +-------------------- + +Dans cet exemple, une tentative sera faite pour définir la clé publique et privée mesurée + +``` +The component jar file: + + Metered metered = new Metered(); + matered.setMeteredKey("PublicKey", "PrivateKey"); +``` +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [Metered()](#Metered--) | Initialise une nouvelle instance de cette classe. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getConsumptionCredit()](#getConsumptionCredit--) | Obtient le crédit de consommation | +| [getConsumptionQuantity()](#getConsumptionQuantity--) | Obtient la taille du fichier de consommation | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setMeteredKey(String publicKey, String privateKey)](#setMeteredKey-java.lang.String-java.lang.String-) | Définit la clé publique et privée mesurée | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### Metered() {#Metered--} +``` +public Metered() +``` + + +Initialise une nouvelle instance de cette classe. + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getConsumptionCredit() {#getConsumptionCredit--} +``` +public static double getConsumptionCredit() +``` + + +Obtient le crédit de consommation + +**Returns:** +double - quantité de consommation +### getConsumptionQuantity() {#getConsumptionQuantity--} +``` +public static double getConsumptionQuantity() +``` + + +Obtient la taille du fichier de consommation + +**Returns:** +double - quantité de consommation +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setMeteredKey(String publicKey, String privateKey) {#setMeteredKey-java.lang.String-java.lang.String-} +``` +public void setMeteredKey(String publicKey, String privateKey) +``` + + +Définit la clé publique et privée mesurée + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| publicKey | java.lang.String | clé publique | +| privateKey | java.lang.String | clé privée | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/metriclist/_index.md b/french/java/com.aspose.font/metriclist/_index.md new file mode 100644 index 0000000000..71d5282778 --- /dev/null +++ b/french/java/com.aspose.font/metriclist/_index.md @@ -0,0 +1,162 @@ +--- +title: "TtfHmtxTable.MetricList" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente la liste des métriques" +type: docs +weight: 11 +url: /fr/java/com.aspose.font/ttfhmtxtable.metriclist/ +--- +**Inheritance:** +java.lang.Object +``` +public static class TtfHmtxTable.MetricList +``` + +Représente la liste des métriques +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [get(int glyphIndex)](#get-int-) | Obtient les métriques par indice de glyphe. | +| [getClass()](#getClass--) | | +| [getRawList()](#getRawList--) | | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [size()](#size--) | Obtient le nombre de métriques. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### get(int glyphIndex) {#get-int-} +``` +public TtfHmtxTable.LongHorMetric get(int glyphIndex) +``` + + +Obtient les métriques par indice de glyphe. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| glyphIndex | int | Indice de glyphe pour lequel obtenir les métriques. | + +**Returns:** +[LongHorMetric](../../com.aspose.font/longhormetric) - Metrics record. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getRawList() {#getRawList--} +``` +public System.Collections.Generic.List getRawList() +``` + + + + +**Returns:** +com.aspose.ms.System.Collections.Generic.List +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### size() {#size--} +``` +public int size() +``` + + +Obtient le nombre de métriques. + +**Returns:** +int - Nombre de métriques. +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/moveto/_index.md b/french/java/com.aspose.font/moveto/_index.md new file mode 100644 index 0000000000..054a3eb2d0 --- /dev/null +++ b/french/java/com.aspose.font/moveto/_index.md @@ -0,0 +1,200 @@ +--- +title: "MoveTo" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente l'opération MoveTo." +type: docs +weight: 65 +url: /fr/java/com.aspose.font/moveto/ +--- +**Inheritance:** +java.lang.Object + +**All Implemented Interfaces:** +[com.aspose.font.IPathSegment](../../com.aspose.font/ipathsegment) +``` +public class MoveTo implements IPathSegment +``` + +Représente l'opération MoveTo. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [clone()](#clone--) | Crée un nouvel objet qui est une copie de l'instance actuelle. | +| [copy()](#copy--) | Crée une copie de l'objet segment. | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getX()](#getX--) | Obtient la coordonnée x. | +| [getY()](#getY--) | Obtient la coordonnée y. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [shift(double dx, double dy)](#shift-double-double-) | Effectue un décalage selon les coordonnées x et y. | +| [toString()](#toString--) | | +| [transform(TransformationMatrix matrix)](#transform-com.aspose.font.TransformationMatrix-) | Transforme les coordonnées avec la matrice de transformation. | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### clone() {#clone--} +``` +public Object clone() +``` + + +Crée un nouvel objet qui est une copie de l'instance actuelle. + +**Returns:** +java.lang.Object - Un nouvel objet qui est une copie de cette instance. +### copy() {#copy--} +``` +public IPathSegment copy() +``` + + +Crée une copie de l'objet segment. + +**Returns:** +[IPathSegment](../../com.aspose.font/ipathsegment) - Copy of the segment object. +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getX() {#getX--} +``` +public double getX() +``` + + +Obtient la coordonnée x. + +**Returns:** +double - Coordonnée x. +### getY() {#getY--} +``` +public double getY() +``` + + +Obtient la coordonnée y. + +**Returns:** +double - Coordonnée y. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### shift(double dx, double dy) {#shift-double-double-} +``` +public void shift(double dx, double dy) +``` + + +Effectue un décalage selon les coordonnées x et y. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| dx | double | Valeur dx. | +| dy | double | Valeur dy. | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### transform(TransformationMatrix matrix) {#transform-com.aspose.font.TransformationMatrix-} +``` +public void transform(TransformationMatrix matrix) +``` + + +Transforme les coordonnées avec la matrice de transformation. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| matrix | [TransformationMatrix](../../com.aspose.font/transformationmatrix) | Matrice de transformation. | + +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/mslanguageid/_index.md b/french/java/com.aspose.font/mslanguageid/_index.md new file mode 100644 index 0000000000..6064eaab9a --- /dev/null +++ b/french/java/com.aspose.font/mslanguageid/_index.md @@ -0,0 +1,1984 @@ +--- +title: "MSLanguageId" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Énumération des identifiants de langue de la plateforme Microsoft." +type: docs +weight: 62 +url: /fr/java/com.aspose.font/mslanguageid/ +--- +**Inheritance:** +java.lang.Object +``` +public final class MSLanguageId +``` + +Énumération des identifiants de langue de la plateforme Microsoft. +## Champs + +| Champ | Description | +| --- | --- | +| [Afrikaans](#Afrikaans) | Valeur LanguageId de l'Afrikaans (Région: Afrique du Sud, SA) | +| [Albanian](#Albanian) | Albanais (Région : Albanie, SQI) valeur LanguageId | +| [Alsatian](#Alsatian) | Alsacien (Région : France) valeur LanguageId | +| [Amharic](#Amharic) | Amharique (Région : Éthiopie) valeur LanguageId | +| [Arabic_Algeria](#Arabic-Algeria) | Arabe (Région : Algérie) valeur LanguageId | +| [Arabic_Bahrain](#Arabic-Bahrain) | Arabe (Région : Bahreïn) valeur LanguageId | +| [Arabic_Egypt](#Arabic-Egypt) | Arabe (Région : Égypte) valeur LanguageId | +| [Arabic_Iraq](#Arabic-Iraq) | Arabe (Région : Irak) valeur LanguageId | +| [Arabic_Jordan](#Arabic-Jordan) | Arabe (Région : Jordanie) valeur LanguageId | +| [Arabic_Kuwait](#Arabic-Kuwait) | Arabe (Région : Koweït) valeur LanguageId | +| [Arabic_Lebanon](#Arabic-Lebanon) | Arabe (Région : Liban) valeur LanguageId | +| [Arabic_Libya](#Arabic-Libya) | Arabe (Région : Libye) valeur LanguageId | +| [Arabic_Morocco](#Arabic-Morocco) | Arabe (Région : Maroc) valeur LanguageId | +| [Arabic_Oman](#Arabic-Oman) | Arabe (Région : Oman) valeur LanguageId | +| [Arabic_Qatar](#Arabic-Qatar) | Arabe (Région : Qatar) valeur LanguageId | +| [Arabic_Saudi_Arabia](#Arabic-Saudi-Arabia) | Arabe (Région : Arabie Saoudite) valeur LanguageId | +| [Arabic_Syria](#Arabic-Syria) | Arabe (Région : Syrie) valeur LanguageId | +| [Arabic_Tunisia](#Arabic-Tunisia) | Arabe (Région : Tunisie) valeur LanguageId | +| [Arabic_U_A_E](#Arabic-U-A-E) | Arabe (Région : Émirats arabes unis) | +| [Arabic_Yemen](#Arabic-Yemen) | Arabe (Région : Yémen) valeur LanguageId | +| [Armenian](#Armenian) | Arménien (Région : Arménie) valeur LanguageId | +| [Assamese](#Assamese) | Assamais (Région : Inde) valeur LanguageId | +| [Azeri_Cyrillic](#Azeri-Cyrillic) | Azéri (Cyrillique, Région : Azerbaïdjan) valeur LanguageId | +| [Azeri_Latin](#Azeri-Latin) | Azéri (Latin, Région : Azerbaïdjan) valeur LanguageId | +| [Bashkir](#Bashkir) | Bachkir (Région : Russie) valeur LanguageId | +| [Basque](#Basque) | Basque (Région : Basque, EUQ) valeur LanguageId | +| [Belarusian](#Belarusian) | Biélorusse (Région : Biélorussie, BEL) valeur LanguageId | +| [Bengali_Bangladesh](#Bengali-Bangladesh) | Bengali (Région : Bangladesh) valeur LanguageId | +| [Bengali_India](#Bengali-India) | Bengali (Région : Inde) valeur LanguageId | +| [Bosnian_Cyrillic](#Bosnian-Cyrillic) | Bosniaque (Cyrillique, Région : Bosnie-Herzégovine) valeur LanguageId | +| [Bosnian_Latin](#Bosnian-Latin) | Bosniaque (Latin, Région : Bosnie-Herzégovine) valeur LanguageId | +| [Breton](#Breton) | Breton (Région : France) valeur LanguageId | +| [Bulgarian](#Bulgarian) | Bulgare (Région : Bulgarie, BGR) valeur LanguageId | +| [Catalan](#Catalan) | Catalan (Région : Catalogne, CAT) valeur LanguageId | +| [Chinese_Hong_Kong](#Chinese-Hong-Kong) | Chinois (Région : Hong Kong S.A.R.) | +| [Chinese_Macao](#Chinese-Macao) | Chinois (Région : Macao S.A.R.) | +| [Chinese_PRC](#Chinese-PRC) | Chinois (Région : République populaire de Chine) valeur LanguageId | +| [Chinese_Singapore](#Chinese-Singapore) | Chinois (Région : Singapour) valeur LanguageId | +| [Chinese_Taiwan](#Chinese-Taiwan) | Chinois (Région : Taïwan) valeur LanguageId | +| [Corsican](#Corsican) | Corse (Région : France) valeur LanguageId | +| [Croatian](#Croatian) | Croate (Région : Croatie, SHL) valeur LanguageId | +| [Croatian_Latin](#Croatian-Latin) | Croate (Latin, Région : Bosnie-Herzégovine) valeur LanguageId | +| [Czech](#Czech) | Tchèque (Région : République tchèque, CSY) valeur LanguageId | +| [Danish](#Danish) | Danois (Région : Danemark, DAN) valeur LanguageId | +| [Dari](#Dari) | Dari (Région : Afghanistan) valeur LanguageId | +| [Divehi](#Divehi) | Divehi (Région : Maldives) valeur LanguageId | +| [Dutch_Belgium](#Dutch-Belgium) | Néerlandais (Flamand, Région : Belgique, NLB) valeur LanguageId | +| [Dutch_Netherlands](#Dutch-Netherlands) | Néerlandais (Standard, Région : Pays-Bas, NLD) valeur LanguageId | +| [English_Australia](#English-Australia) | Anglais (Australien, Région : Australie, ENA) valeur LanguageId | +| [English_Belize](#English-Belize) | Anglais (Région : Belize) valeur LanguageId | +| [English_Canada](#English-Canada) | Anglais (Canadien, Région : Canada, ENC) valeur LanguageId | +| [English_Caribbean](#English-Caribbean) | Anglais (Région: Caraïbes) valeur LanguageId | +| [English_India](#English-India) | Anglais (Région: Inde) valeur LanguageId | +| [English_Ireland](#English-Ireland) | Anglais (Région: Irlande, ENI) valeur LanguageId | +| [English_Jamaica](#English-Jamaica) | Anglais (Région: Jamaïque) valeur LanguageId | +| [English_Malaysia](#English-Malaysia) | Anglais (Région: Malaisie) valeur LanguageId | +| [English_New_Zealand](#English-New-Zealand) | Anglais (Région: Nouvelle-Zélande, ENZ) valeur LanguageId | +| [English_ROP](#English-ROP) | Anglais (Région: République des Philippines, ROP) valeur LanguageId | +| [English_Singapore](#English-Singapore) | Anglais (Région: Singapour) valeur LanguageId | +| [English_South_Africa](#English-South-Africa) | Anglais (Région: Afrique du Sud, SA) valeur LanguageId | +| [English_TT](#English-TT) | Anglais (Région: Trinité-et-Tobago, TT) valeur LanguageId | +| [English_United_Kingdom](#English-United-Kingdom) | Anglais (Britannique, Région: Royaume-Uni, ENG) valeur LanguageId | +| [English_United_States](#English-United-States) | Anglais (Américain, Région: États-Unis, ENU) valeur LanguageId | +| [English_Zimbabwe](#English-Zimbabwe) | Anglais (Région: Zimbabwe) valeur LanguageId | +| [Estonian](#Estonian) | Estonien (Région: Estonie, ETI) valeur LanguageId | +| [Faroese](#Faroese) | Féroïen (Région: Îles Féroé) valeur LanguageId | +| [Filipino](#Filipino) | Filipino (Région: Philippines) valeur LanguageId | +| [Finnish](#Finnish) | Finnois (Région: Finlande, FIN) valeur LanguageId | +| [French_Belgium](#French-Belgium) | Français (Belge, Région: Belgique, FRB) valeur LanguageId | +| [French_Canada](#French-Canada) | Français (Canadien, Région: Canada, FRC) valeur LanguageId | +| [French_France](#French-France) | Français (Standard, Région: France, FRA) valeur LanguageId | +| [French_Luxembourg](#French-Luxembourg) | Français (Région: Luxembourg, FRL) valeur LanguageId | +| [French_MC](#French-MC) | Français (Région: Principauté de Monaco, MC) valeur LanguageId | +| [French_Switzerland](#French-Switzerland) | Français (Suisse, Région: Suisse, FRS) valeur LanguageId | +| [Frisian](#Frisian) | Frison (Région: Pays-Bas, NLD) valeur LanguageId | +| [Galician](#Galician) | Galicien (Région: Galice) valeur LanguageId | +| [Georgian](#Georgian) | Géorgien (Région : Géorgie) valeur LanguageId | +| [German_Austria](#German-Austria) | Allemand (autrichien, Région : Autriche, DEA) valeur LanguageId | +| [German_Germany](#German-Germany) | Allemand (standard, Région : Allemagne, DEU) valeur LanguageId | +| [German_Liechtenstein](#German-Liechtenstein) | Allemand (Région : Liechtenstein, DEC) valeur LanguageId | +| [German_Luxembourg](#German-Luxembourg) | Allemand (Région : Luxembourg, DEL) valeur LanguageId | +| [German_Switzerland](#German-Switzerland) | Allemand (suisse, Région : Suisse, DES) valeur LanguageId | +| [Greek](#Greek) | Grec (Région : Grèce, ELL) valeur LanguageId | +| [Greenlandic](#Greenlandic) | Groenlandais (Région : Groenland) valeur LanguageId | +| [Gujarati](#Gujarati) | Gujarati (Région : Inde) valeur LanguageId | +| [Hausa](#Hausa) | Haoussa (latin, Région : Nigeria) valeur LanguageId | +| [Hebrew](#Hebrew) | Hébreu (Région : Israël) valeur LanguageId | +| [Hindi](#Hindi) | Hindi (Région : Inde) valeur LanguageId | +| [Hungarian](#Hungarian) | Hongrois (Région : Hongrie, HUN) valeur LanguageId | +| [Icelandic](#Icelandic) | Islandais (Région : Islande, ISL) valeur LanguageId | +| [Igbo](#Igbo) | Igbo (Région : Nigeria) valeur LanguageId | +| [Indonesian](#Indonesian) | Indonésien (Région : Indonésie) valeur LanguageId | +| [Inuktitut](#Inuktitut) | Inuktitut (Région : Canada) valeur LanguageId | +| [Inuktitut_Latin](#Inuktitut-Latin) | Inuktitut (latin, Région : Canada) valeur LanguageId | +| [Irish](#Irish) | Irlandais (Région : Irlande) valeur LanguageId | +| [Italian_Italy](#Italian-Italy) | Italien (standard, Région : Italie, ITA) valeur LanguageId | +| [Italian_Switzerland](#Italian-Switzerland) | Italien (suisse, Région : Suisse, ITS) valeur LanguageId | +| [Japanese](#Japanese) | Japonais (Région : Japon) valeur LanguageId | +| [Kannada](#Kannada) | Kannada (Région : Inde) valeur LanguageId | +| [Kazakh](#Kazakh) | Kazakh (Région : Kazakhstan) valeur LanguageId | +| [Khmer](#Khmer) | Khmer (Région : Cambodge) valeur LanguageId | +| [Kiche](#Kiche) | K\u2019iche (Région : Guatemala) valeur LanguageId | +| [Kinyarwanda](#Kinyarwanda) | Kinyarwanda (Région : Rwanda) valeur LanguageId | +| [Kiswahili](#Kiswahili) | Kiswahili (Région : Kenya) valeur LanguageId | +| [Konkani](#Konkani) | Konkani (Région : Inde) valeur LanguageId | +| [Korean](#Korean) | Coréen (Région : Corée) valeur LanguageId | +| [Kyrgyz](#Kyrgyz) | Kirghize (Région : Kirghizistan) valeur LanguageId | +| [Lao](#Lao) | Lao (Région : Lao P.D.R.) | +| [Latvian](#Latvian) | Letton (Région : Lettonie, LVI) valeur LanguageId | +| [Lithuanian](#Lithuanian) | Lituanien (Région : Lituanie, LTH) valeur LanguageId | +| [Lower_Sorbian](#Lower-Sorbian) | Bas-sorabe (Région : Allemagne) valeur LanguageId | +| [Luxembourgish](#Luxembourgish) | Luxembourgeois (Région : Luxembourg) valeur LanguageId | +| [Macedonian](#Macedonian) | Macédonien (Région : Macédoine du Nord) valeur LanguageId | +| [Malay_Brunei_Darussalam](#Malay-Brunei-Darussalam) | Malais (Région : Brunei Darussalam) valeur LanguageId | +| [Malay_Malaysia](#Malay-Malaysia) | Malais (Région : Malaisie) valeur LanguageId | +| [Malayalam](#Malayalam) | Malayalam (Région : Inde) valeur LanguageId | +| [Maltese](#Maltese) | Maltais (Région : Malte) valeur LanguageId | +| [Maori](#Maori) | Maori (Région : Nouvelle-Zélande) valeur LanguageId | +| [Mapudungun](#Mapudungun) | Mapudungun (Région : Chili) valeur LanguageId | +| [Marathi](#Marathi) | Marathi (Région : Inde) valeur LanguageId | +| [Mohawk](#Mohawk) | Mohawk (Région : Mohawk) valeur LanguageId | +| [Mongolian_Cyrillic](#Mongolian-Cyrillic) | Mongol (cyrillique, Région : Mongolie) valeur LanguageId | +| [Mongolian_Traditional](#Mongolian-Traditional) | Mongol (traditionnel, Région : République populaire de Chine) valeur LanguageId | +| [Nepali](#Nepali) | Népalais (Région : Népal) valeur LanguageId | +| [Norwegian_Bokmal](#Norwegian-Bokmal) | Norvégien (Bokmål, Région : Norvège, NOR) valeur LanguageId | +| [Norwegian_Nynorsk](#Norwegian-Nynorsk) | Norvégien (Nynorsk, Région : Norvège, NON) valeur LanguageId | +| [Occitan](#Occitan) | Occitan (Région : France) valeur LanguageId | +| [Odia](#Odia) | Odia (anciennement Oriya, Région : Inde) valeur LanguageId | +| [Pashto](#Pashto) | Pashto (Région : Afghanistan) valeur LanguageId | +| [Polish](#Polish) | Polonais (Région : Pologne, PLK) valeur LanguageId | +| [Portuguese_Brazil](#Portuguese-Brazil) | Portugais (brésilien, Région : Brésil, PTB) valeur LanguageId | +| [Portuguese_Portugal](#Portuguese-Portugal) | Portugais (standard, Région : Portugal, PTG) valeur LanguageId | +| [Punjabi](#Punjabi) | Pendjabi (Région : Inde) valeur LanguageId | +| [Quechua_Bolivia](#Quechua-Bolivia) | Quechua (Région : Bolivie) valeur LanguageId | +| [Quechua_Ecuador](#Quechua-Ecuador) | Quechua (Région : Équateur) valeur LanguageId | +| [Quechua_Peru](#Quechua-Peru) | Quechua (Région : Pérou) valeur LanguageId | +| [Romanian](#Romanian) | Roumain (Région : Roumanie, ROM) valeur LanguageId | +| [Romansh](#Romansh) | Romanche (Région : Suisse) valeur LanguageId | +| [Russian](#Russian) | Russe (Région : Russie, RUS) valeur LanguageId | +| [Sami_Inari](#Sami-Inari) | Sami (Inari, Région : Finlande) valeur LanguageId | +| [Sami_Lule_Norway](#Sami-Lule-Norway) | Sami (Lule, Région : Norvège) valeur LanguageId | +| [Sami_Lule_Sweden](#Sami-Lule-Sweden) | Sami (Lule, Région : Suède) valeur LanguageId | +| [Sami_Northern_Finland](#Sami-Northern-Finland) | Sami (nordique, Région : Finlande) valeur LanguageId | +| [Sami_Northern_Norway](#Sami-Northern-Norway) | Sami (nordique, Région : Norvège) valeur LanguageId | +| [Sami_Northern_Sweden](#Sami-Northern-Sweden) | Sami (nordique, Région : Suède) valeur LanguageId | +| [Sami_Skolt](#Sami-Skolt) | Sami (Skolt, Région : Finlande) valeur LanguageId | +| [Sami_Southern_Norway](#Sami-Southern-Norway) | Sami (sud, Région : Norvège) valeur LanguageId | +| [Sami_Southern_Sweden](#Sami-Southern-Sweden) | Sami (sud, Région : Suède) valeur LanguageId | +| [Sanskrit](#Sanskrit) | Sanskrit (Région : Inde) valeur LanguageId | +| [Serbian_Cyrillic_BIH](#Serbian-Cyrillic-BIH) | Serbe (cyrillique, Région : Bosnie-Herzégovine) valeur LanguageId | +| [Serbian_Cyrillic_Serbia](#Serbian-Cyrillic-Serbia) | Serbe (cyrillique, Région : Serbie) valeur LanguageId | +| [Serbian_Latin_BIH](#Serbian-Latin-BIH) | Serbe (Latin, Région : Bosnie-Herzégovine) valeur LanguageId | +| [Serbian_Latin_Serbia](#Serbian-Latin-Serbia) | Serbe (Latin, Région : Serbie) valeur LanguageId | +| [Sesotho_Sa_Leboa](#Sesotho-Sa-Leboa) | Sesotho sa Leboa (Northern Sotho, Région : Afrique du Sud, SA) valeur LanguageId | +| [Setswana](#Setswana) | Setswana (Région : Afrique du Sud, SA) valeur LanguageId | +| [Sinhala](#Sinhala) | Cingalais (Région : Sri Lanka) valeur LanguageId | +| [Slovak](#Slovak) | Slovaque (Région : Slovaquie, SKY) valeur LanguageId | +| [Slovenian](#Slovenian) | Slovène (Région : Slovénie, SLV) valeur LanguageId | +| [Spanish_Argentina](#Spanish-Argentina) | Espagnol (Région : Argentine) valeur LanguageId | +| [Spanish_Bolivia](#Spanish-Bolivia) | Espagnol (Région : Bolivie) valeur LanguageId | +| [Spanish_Chile](#Spanish-Chile) | Espagnol (Région : Chili) valeur LanguageId | +| [Spanish_Colombia](#Spanish-Colombia) | Espagnol (Région : Colombie) valeur LanguageId | +| [Spanish_Costa_Rica](#Spanish-Costa-Rica) | Espagnol (Région : Costa Rica) valeur LanguageId | +| [Spanish_Dominican_Republic](#Spanish-Dominican-Republic) | Espagnol (Région : République dominicaine) valeur LanguageId | +| [Spanish_Ecuador](#Spanish-Ecuador) | Espagnol (Région : Équateur) valeur LanguageId | +| [Spanish_El_Salvador](#Spanish-El-Salvador) | Espagnol (Région : Salvador) valeur LanguageId | +| [Spanish_Guatemala](#Spanish-Guatemala) | Espagnol (Région : Guatemala) valeur LanguageId | +| [Spanish_Honduras](#Spanish-Honduras) | Espagnol (Région : Honduras) valeur LanguageId | +| [Spanish_Mexico](#Spanish-Mexico) | Espagnol (Mexicain, Région : Mexique, ESM) valeur LanguageId | +| [Spanish_Modern_Sort](#Spanish-Modern-Sort) | Espagnol (Tri moderne, Région : Espagne, ESN) valeur LanguageId | +| [Spanish_Nicaragua](#Spanish-Nicaragua) | Espagnol (Région : Nicaragua) valeur LanguageId | +| [Spanish_Panama](#Spanish-Panama) | Espagnol (Région : Panama) valeur LanguageId | +| [Spanish_Paraguay](#Spanish-Paraguay) | Espagnol (Région : Paraguay) valeur LanguageId | +| [Spanish_Peru](#Spanish-Peru) | Espagnol (Région : Pérou) valeur LanguageId | +| [Spanish_Puerto_Rico](#Spanish-Puerto-Rico) | Espagnol (Région : Porto Rico) valeur LanguageId | +| [Spanish_Traditional_Sort](#Spanish-Traditional-Sort) | Espagnol (Tri traditionnel, Région : Espagne, ESP) valeur LanguageId | +| [Spanish_United_States](#Spanish-United-States) | Espagnol (Région : États-Unis) LanguageId valeur | +| [Spanish_Uruguay](#Spanish-Uruguay) | Espagnol (Région : Uruguay) LanguageId valeur | +| [Spanish_Venezuela](#Spanish-Venezuela) | Espagnol (Région : Venezuela) LanguageId valeur | +| [Swedish_Finland](#Swedish-Finland) | Suédois (Région : Finlande) LanguageId valeur | +| [Swedish_Sweden](#Swedish-Sweden) | Suédois (Région : Suède, SVE) LanguageId valeur | +| [Syriac](#Syriac) | Syriaque (Région : Syrie) LanguageId valeur | +| [Tajik](#Tajik) | Tadjik (Cyrillique, Région : Tadjikistan) LanguageId valeur | +| [Tamazight](#Tamazight) | Tamazight (Latin, Région : Algérie) LanguageId valeur | +| [Tamil](#Tamil) | Tamoul (Région : Inde) LanguageId valeur | +| [Tatar](#Tatar) | Tatar (Région : Russie) LanguageId valeur | +| [Telugu](#Telugu) | Télougou (Région : Inde) LanguageId valeur | +| [Thai](#Thai) | Thaï (Région : Thaïlande) LanguageId valeur | +| [Tibetan](#Tibetan) | Tibétain (Région : RPC) LanguageId valeur | +| [Turkish](#Turkish) | Turc (Région : Turquie, TRK) LanguageId valeur | +| [Turkmen](#Turkmen) | Turkmène (Région : Turkménistan) LanguageId valeur | +| [Uighur](#Uighur) | Ouïghour (Région : RPC) LanguageId valeur | +| [Ukrainian](#Ukrainian) | Ukrainien (Région : Ukraine, UKR) LanguageId valeur | +| [Upper_Sorbian](#Upper-Sorbian) | Sorabe supérieur (Région : Allemagne) LanguageId valeur | +| [Urdu](#Urdu) | Urdu (Région : République islamique du Pakistan) LanguageId valeur | +| [Uzbek_Cyrillic](#Uzbek-Cyrillic) | Ouzbek (Cyrillique, Région : Ouzbékistan) LanguageId valeur | +| [Uzbek_Latin](#Uzbek-Latin) | Ouzbek (Latin, Région : Ouzbékistan) LanguageId valeur | +| [Vietnamese](#Vietnamese) | Vietnamien (Région : Vietnam) LanguageId valeur | +| [Welsh](#Welsh) | Gallois (Région : Royaume-Uni) LanguageId valeur | +| [Wolof](#Wolof) | Wolof (Région : Sénégal) LanguageId valeur | +| [Yakut](#Yakut) | Yakoute (Région : Russie) LanguageId valeur | +| [Yi](#Yi) | Yi (Région : RPC) valeur LanguageId | +| [Yoruba](#Yoruba) | Yoruba (Région : Nigeria) valeur LanguageId | +| [isiXhosa](#isiXhosa) | isiXhosa (Région : Afrique du Sud, SA) valeur LanguageId | +| [isiZulu](#isiZulu) | isiZulu (Région : Afrique du Sud, SA) valeur LanguageId | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getId()](#getId--) | Obtenez la valeur entière. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### Afrikaans {#Afrikaans} +``` +public static final MSLanguageId Afrikaans +``` + + +Valeur LanguageId de l'Afrikaans (Région: Afrique du Sud, SA) + +### Albanian {#Albanian} +``` +public static final MSLanguageId Albanian +``` + + +Albanais (Région : Albanie, SQI) valeur LanguageId + +### Alsatian {#Alsatian} +``` +public static final MSLanguageId Alsatian +``` + + +Alsacien (Région : France) valeur LanguageId + +### Amharic {#Amharic} +``` +public static final MSLanguageId Amharic +``` + + +Amharique (Région : Éthiopie) valeur LanguageId + +### Arabic_Algeria {#Arabic-Algeria} +``` +public static final MSLanguageId Arabic_Algeria +``` + + +Arabe (Région : Algérie) valeur LanguageId + +### Arabic_Bahrain {#Arabic-Bahrain} +``` +public static final MSLanguageId Arabic_Bahrain +``` + + +Arabe (Région : Bahreïn) valeur LanguageId + +### Arabic_Egypt {#Arabic-Egypt} +``` +public static final MSLanguageId Arabic_Egypt +``` + + +Arabe (Région : Égypte) valeur LanguageId + +### Arabic_Iraq {#Arabic-Iraq} +``` +public static final MSLanguageId Arabic_Iraq +``` + + +Arabe (Région : Irak) valeur LanguageId + +### Arabic_Jordan {#Arabic-Jordan} +``` +public static final MSLanguageId Arabic_Jordan +``` + + +Arabe (Région : Jordanie) valeur LanguageId + +### Arabic_Kuwait {#Arabic-Kuwait} +``` +public static final MSLanguageId Arabic_Kuwait +``` + + +Arabe (Région : Koweït) valeur LanguageId + +### Arabic_Lebanon {#Arabic-Lebanon} +``` +public static final MSLanguageId Arabic_Lebanon +``` + + +Arabe (Région : Liban) valeur LanguageId + +### Arabic_Libya {#Arabic-Libya} +``` +public static final MSLanguageId Arabic_Libya +``` + + +Arabe (Région : Libye) valeur LanguageId + +### Arabic_Morocco {#Arabic-Morocco} +``` +public static final MSLanguageId Arabic_Morocco +``` + + +Arabe (Région : Maroc) valeur LanguageId + +### Arabic_Oman {#Arabic-Oman} +``` +public static final MSLanguageId Arabic_Oman +``` + + +Arabe (Région : Oman) valeur LanguageId + +### Arabic_Qatar {#Arabic-Qatar} +``` +public static final MSLanguageId Arabic_Qatar +``` + + +Arabe (Région : Qatar) valeur LanguageId + +### Arabic_Saudi_Arabia {#Arabic-Saudi-Arabia} +``` +public static final MSLanguageId Arabic_Saudi_Arabia +``` + + +Arabe (Région : Arabie Saoudite) valeur LanguageId + +### Arabic_Syria {#Arabic-Syria} +``` +public static final MSLanguageId Arabic_Syria +``` + + +Arabe (Région : Syrie) valeur LanguageId + +### Arabic_Tunisia {#Arabic-Tunisia} +``` +public static final MSLanguageId Arabic_Tunisia +``` + + +Arabe (Région : Tunisie) valeur LanguageId + +### Arabic_U_A_E {#Arabic-U-A-E} +``` +public static final MSLanguageId Arabic_U_A_E +``` + + +Arabe (Région : ÉAU) valeur LanguageId + +### Arabic_Yemen {#Arabic-Yemen} +``` +public static final MSLanguageId Arabic_Yemen +``` + + +Arabe (Région : Yémen) valeur LanguageId + +### Armenian {#Armenian} +``` +public static final MSLanguageId Armenian +``` + + +Arménien (Région : Arménie) valeur LanguageId + +### Assamese {#Assamese} +``` +public static final MSLanguageId Assamese +``` + + +Assamais (Région : Inde) valeur LanguageId + +### Azeri_Cyrillic {#Azeri-Cyrillic} +``` +public static final MSLanguageId Azeri_Cyrillic +``` + + +Azéri (Cyrillique, Région : Azerbaïdjan) valeur LanguageId + +### Azeri_Latin {#Azeri-Latin} +``` +public static final MSLanguageId Azeri_Latin +``` + + +Azéri (Latin, Région : Azerbaïdjan) valeur LanguageId + +### Bashkir {#Bashkir} +``` +public static final MSLanguageId Bashkir +``` + + +Bachkir (Région : Russie) valeur LanguageId + +### Basque {#Basque} +``` +public static final MSLanguageId Basque +``` + + +Basque (Région : Basque, EUQ) valeur LanguageId + +### Belarusian {#Belarusian} +``` +public static final MSLanguageId Belarusian +``` + + +Biélorusse (Région : Biélorussie, BEL) valeur LanguageId + +### Bengali_Bangladesh {#Bengali-Bangladesh} +``` +public static final MSLanguageId Bengali_Bangladesh +``` + + +Bengali (Région : Bangladesh) valeur LanguageId + +### Bengali_India {#Bengali-India} +``` +public static final MSLanguageId Bengali_India +``` + + +Bengali (Région : Inde) valeur LanguageId + +### Bosnian_Cyrillic {#Bosnian-Cyrillic} +``` +public static final MSLanguageId Bosnian_Cyrillic +``` + + +Bosniaque (Cyrillique, Région : Bosnie-Herzégovine) valeur LanguageId + +### Bosnian_Latin {#Bosnian-Latin} +``` +public static final MSLanguageId Bosnian_Latin +``` + + +Bosniaque (Latin, Région : Bosnie-Herzégovine) valeur LanguageId + +### Breton {#Breton} +``` +public static final MSLanguageId Breton +``` + + +Breton (Région : France) valeur LanguageId + +### Bulgarian {#Bulgarian} +``` +public static final MSLanguageId Bulgarian +``` + + +Bulgare (Région : Bulgarie, BGR) valeur LanguageId + +### Catalan {#Catalan} +``` +public static final MSLanguageId Catalan +``` + + +Catalan (Région : Catalogne, CAT) valeur LanguageId + +### Chinese_Hong_Kong {#Chinese-Hong-Kong} +``` +public static final MSLanguageId Chinese_Hong_Kong +``` + + +Chinois (Région : RAS de Hong Kong) valeur LanguageId + +### Chinese_Macao {#Chinese-Macao} +``` +public static final MSLanguageId Chinese_Macao +``` + + +Chinois (Région : RAS de Macao) valeur LanguageId + +### Chinese_PRC {#Chinese-PRC} +``` +public static final MSLanguageId Chinese_PRC +``` + + +Chinois (Région : République populaire de Chine) valeur LanguageId + +### Chinese_Singapore {#Chinese-Singapore} +``` +public static final MSLanguageId Chinese_Singapore +``` + + +Chinois (Région : Singapour) valeur LanguageId + +### Chinese_Taiwan {#Chinese-Taiwan} +``` +public static final MSLanguageId Chinese_Taiwan +``` + + +Chinois (Région : Taïwan) valeur LanguageId + +### Corsican {#Corsican} +``` +public static final MSLanguageId Corsican +``` + + +Corse (Région : France) valeur LanguageId + +### Croatian {#Croatian} +``` +public static final MSLanguageId Croatian +``` + + +Croate (Région : Croatie, SHL) valeur LanguageId + +### Croatian_Latin {#Croatian-Latin} +``` +public static final MSLanguageId Croatian_Latin +``` + + +Croate (Latin, Région : Bosnie-Herzégovine) valeur LanguageId + +### Czech {#Czech} +``` +public static final MSLanguageId Czech +``` + + +Tchèque (Région : République tchèque, CSY) valeur LanguageId + +### Danish {#Danish} +``` +public static final MSLanguageId Danish +``` + + +Danois (Région : Danemark, DAN) valeur LanguageId + +### Dari {#Dari} +``` +public static final MSLanguageId Dari +``` + + +Dari (Région : Afghanistan) valeur LanguageId + +### Divehi {#Divehi} +``` +public static final MSLanguageId Divehi +``` + + +Divehi (Région : Maldives) valeur LanguageId + +### Dutch_Belgium {#Dutch-Belgium} +``` +public static final MSLanguageId Dutch_Belgium +``` + + +Néerlandais (Flamand, Région : Belgique, NLB) valeur LanguageId + +### Dutch_Netherlands {#Dutch-Netherlands} +``` +public static final MSLanguageId Dutch_Netherlands +``` + + +Néerlandais (Standard, Région : Pays-Bas, NLD) valeur LanguageId + +### English_Australia {#English-Australia} +``` +public static final MSLanguageId English_Australia +``` + + +Anglais (Australien, Région : Australie, ENA) valeur LanguageId + +### English_Belize {#English-Belize} +``` +public static final MSLanguageId English_Belize +``` + + +Anglais (Région : Belize) valeur LanguageId + +### English_Canada {#English-Canada} +``` +public static final MSLanguageId English_Canada +``` + + +Anglais (Canadien, Région : Canada, ENC) valeur LanguageId + +### English_Caribbean {#English-Caribbean} +``` +public static final MSLanguageId English_Caribbean +``` + + +Anglais (Région: Caraïbes) valeur LanguageId + +### English_India {#English-India} +``` +public static final MSLanguageId English_India +``` + + +Anglais (Région: Inde) valeur LanguageId + +### English_Ireland {#English-Ireland} +``` +public static final MSLanguageId English_Ireland +``` + + +Anglais (Région: Irlande, ENI) valeur LanguageId + +### English_Jamaica {#English-Jamaica} +``` +public static final MSLanguageId English_Jamaica +``` + + +Anglais (Région: Jamaïque) valeur LanguageId + +### English_Malaysia {#English-Malaysia} +``` +public static final MSLanguageId English_Malaysia +``` + + +Anglais (Région: Malaisie) valeur LanguageId + +### English_New_Zealand {#English-New-Zealand} +``` +public static final MSLanguageId English_New_Zealand +``` + + +Anglais (Région: Nouvelle-Zélande, ENZ) valeur LanguageId + +### English_ROP {#English-ROP} +``` +public static final MSLanguageId English_ROP +``` + + +Anglais (Région: République des Philippines, ROP) valeur LanguageId + +### English_Singapore {#English-Singapore} +``` +public static final MSLanguageId English_Singapore +``` + + +Anglais (Région: Singapour) valeur LanguageId + +### English_South_Africa {#English-South-Africa} +``` +public static final MSLanguageId English_South_Africa +``` + + +Anglais (Région: Afrique du Sud, SA) valeur LanguageId + +### English_TT {#English-TT} +``` +public static final MSLanguageId English_TT +``` + + +Anglais (Région: Trinité-et-Tobago, TT) valeur LanguageId + +### English_United_Kingdom {#English-United-Kingdom} +``` +public static final MSLanguageId English_United_Kingdom +``` + + +Anglais (Britannique, Région: Royaume-Uni, ENG) valeur LanguageId + +### English_United_States {#English-United-States} +``` +public static final MSLanguageId English_United_States +``` + + +Anglais (Américain, Région: États-Unis, ENU) valeur LanguageId + +### English_Zimbabwe {#English-Zimbabwe} +``` +public static final MSLanguageId English_Zimbabwe +``` + + +Anglais (Région: Zimbabwe) valeur LanguageId + +### Estonian {#Estonian} +``` +public static final MSLanguageId Estonian +``` + + +Estonien (Région: Estonie, ETI) valeur LanguageId + +### Faroese {#Faroese} +``` +public static final MSLanguageId Faroese +``` + + +Féroïen (Région: Îles Féroé) valeur LanguageId + +### Filipino {#Filipino} +``` +public static final MSLanguageId Filipino +``` + + +Filipino (Région: Philippines) valeur LanguageId + +### Finnish {#Finnish} +``` +public static final MSLanguageId Finnish +``` + + +Finnois (Région: Finlande, FIN) valeur LanguageId + +### French_Belgium {#French-Belgium} +``` +public static final MSLanguageId French_Belgium +``` + + +Français (Belge, Région: Belgique, FRB) valeur LanguageId + +### French_Canada {#French-Canada} +``` +public static final MSLanguageId French_Canada +``` + + +Français (Canadien, Région: Canada, FRC) valeur LanguageId + +### French_France {#French-France} +``` +public static final MSLanguageId French_France +``` + + +Français (Standard, Région: France, FRA) valeur LanguageId + +### French_Luxembourg {#French-Luxembourg} +``` +public static final MSLanguageId French_Luxembourg +``` + + +Français (Région: Luxembourg, FRL) valeur LanguageId + +### French_MC {#French-MC} +``` +public static final MSLanguageId French_MC +``` + + +Français (Région: Principauté de Monaco, MC) valeur LanguageId + +### French_Switzerland {#French-Switzerland} +``` +public static final MSLanguageId French_Switzerland +``` + + +Français (Suisse, Région: Suisse, FRS) valeur LanguageId + +### Frisian {#Frisian} +``` +public static final MSLanguageId Frisian +``` + + +Frison (Région: Pays-Bas, NLD) valeur LanguageId + +### Galician {#Galician} +``` +public static final MSLanguageId Galician +``` + + +Galicien (Région: Galice) valeur LanguageId + +### Georgian {#Georgian} +``` +public static final MSLanguageId Georgian +``` + + +Géorgien (Région : Géorgie) valeur LanguageId + +### German_Austria {#German-Austria} +``` +public static final MSLanguageId German_Austria +``` + + +Allemand (autrichien, Région : Autriche, DEA) valeur LanguageId + +### German_Germany {#German-Germany} +``` +public static final MSLanguageId German_Germany +``` + + +Allemand (standard, Région : Allemagne, DEU) valeur LanguageId + +### German_Liechtenstein {#German-Liechtenstein} +``` +public static final MSLanguageId German_Liechtenstein +``` + + +Allemand (Région : Liechtenstein, DEC) valeur LanguageId + +### German_Luxembourg {#German-Luxembourg} +``` +public static final MSLanguageId German_Luxembourg +``` + + +Allemand (Région : Luxembourg, DEL) valeur LanguageId + +### German_Switzerland {#German-Switzerland} +``` +public static final MSLanguageId German_Switzerland +``` + + +Allemand (suisse, Région : Suisse, DES) valeur LanguageId + +### Greek {#Greek} +``` +public static final MSLanguageId Greek +``` + + +Grec (Région : Grèce, ELL) valeur LanguageId + +### Greenlandic {#Greenlandic} +``` +public static final MSLanguageId Greenlandic +``` + + +Groenlandais (Région : Groenland) valeur LanguageId + +### Gujarati {#Gujarati} +``` +public static final MSLanguageId Gujarati +``` + + +Gujarati (Région : Inde) valeur LanguageId + +### Hausa {#Hausa} +``` +public static final MSLanguageId Hausa +``` + + +Haoussa (latin, Région : Nigeria) valeur LanguageId + +### Hebrew {#Hebrew} +``` +public static final MSLanguageId Hebrew +``` + + +Hébreu (Région : Israël) valeur LanguageId + +### Hindi {#Hindi} +``` +public static final MSLanguageId Hindi +``` + + +Hindi (Région : Inde) valeur LanguageId + +### Hungarian {#Hungarian} +``` +public static final MSLanguageId Hungarian +``` + + +Hongrois (Région : Hongrie, HUN) valeur LanguageId + +### Icelandic {#Icelandic} +``` +public static final MSLanguageId Icelandic +``` + + +Islandais (Région : Islande, ISL) valeur LanguageId + +### Igbo {#Igbo} +``` +public static final MSLanguageId Igbo +``` + + +Igbo (Région : Nigeria) valeur LanguageId + +### Indonesian {#Indonesian} +``` +public static final MSLanguageId Indonesian +``` + + +Indonésien (Région : Indonésie) valeur LanguageId + +### Inuktitut {#Inuktitut} +``` +public static final MSLanguageId Inuktitut +``` + + +Inuktitut (Région : Canada) valeur LanguageId + +### Inuktitut_Latin {#Inuktitut-Latin} +``` +public static final MSLanguageId Inuktitut_Latin +``` + + +Inuktitut (latin, Région : Canada) valeur LanguageId + +### Irish {#Irish} +``` +public static final MSLanguageId Irish +``` + + +Irlandais (Région : Irlande) valeur LanguageId + +### Italian_Italy {#Italian-Italy} +``` +public static final MSLanguageId Italian_Italy +``` + + +Italien (standard, Région : Italie, ITA) valeur LanguageId + +### Italian_Switzerland {#Italian-Switzerland} +``` +public static final MSLanguageId Italian_Switzerland +``` + + +Italien (suisse, Région : Suisse, ITS) valeur LanguageId + +### Japanese {#Japanese} +``` +public static final MSLanguageId Japanese +``` + + +Japonais (Région : Japon) valeur LanguageId + +### Kannada {#Kannada} +``` +public static final MSLanguageId Kannada +``` + + +Kannada (Région : Inde) valeur LanguageId + +### Kazakh {#Kazakh} +``` +public static final MSLanguageId Kazakh +``` + + +Kazakh (Région : Kazakhstan) valeur LanguageId + +### Khmer {#Khmer} +``` +public static final MSLanguageId Khmer +``` + + +Khmer (Région : Cambodge) valeur LanguageId + +### Kiche {#Kiche} +``` +public static final MSLanguageId Kiche +``` + + +K\u2019iche (Région : Guatemala) valeur LanguageId + +### Kinyarwanda {#Kinyarwanda} +``` +public static final MSLanguageId Kinyarwanda +``` + + +Kinyarwanda (Région : Rwanda) valeur LanguageId + +### Kiswahili {#Kiswahili} +``` +public static final MSLanguageId Kiswahili +``` + + +Kiswahili (Région : Kenya) valeur LanguageId + +### Konkani {#Konkani} +``` +public static final MSLanguageId Konkani +``` + + +Konkani (Région : Inde) valeur LanguageId + +### Korean {#Korean} +``` +public static final MSLanguageId Korean +``` + + +Coréen (Région : Corée) valeur LanguageId + +### Kyrgyz {#Kyrgyz} +``` +public static final MSLanguageId Kyrgyz +``` + + +Kirghize (Région : Kirghizistan) valeur LanguageId + +### Lao {#Lao} +``` +public static final MSLanguageId Lao +``` + + +Lao (Région : RPDR) valeur LanguageId + +### Latvian {#Latvian} +``` +public static final MSLanguageId Latvian +``` + + +Letton (Région : Lettonie, LVI) valeur LanguageId + +### Lithuanian {#Lithuanian} +``` +public static final MSLanguageId Lithuanian +``` + + +Lituanien (Région : Lituanie, LTH) valeur LanguageId + +### Lower_Sorbian {#Lower-Sorbian} +``` +public static final MSLanguageId Lower_Sorbian +``` + + +Bas-sorabe (Région : Allemagne) valeur LanguageId + +### Luxembourgish {#Luxembourgish} +``` +public static final MSLanguageId Luxembourgish +``` + + +Luxembourgeois (Région : Luxembourg) valeur LanguageId + +### Macedonian {#Macedonian} +``` +public static final MSLanguageId Macedonian +``` + + +Macédonien (Région : Macédoine du Nord) valeur LanguageId + +### Malay_Brunei_Darussalam {#Malay-Brunei-Darussalam} +``` +public static final MSLanguageId Malay_Brunei_Darussalam +``` + + +Malais (Région : Brunei Darussalam) valeur LanguageId + +### Malay_Malaysia {#Malay-Malaysia} +``` +public static final MSLanguageId Malay_Malaysia +``` + + +Malais (Région : Malaisie) valeur LanguageId + +### Malayalam {#Malayalam} +``` +public static final MSLanguageId Malayalam +``` + + +Malayalam (Région : Inde) valeur LanguageId + +### Maltese {#Maltese} +``` +public static final MSLanguageId Maltese +``` + + +Maltais (Région : Malte) valeur LanguageId + +### Maori {#Maori} +``` +public static final MSLanguageId Maori +``` + + +Maori (Région : Nouvelle-Zélande) valeur LanguageId + +### Mapudungun {#Mapudungun} +``` +public static final MSLanguageId Mapudungun +``` + + +Mapudungun (Région : Chili) valeur LanguageId + +### Marathi {#Marathi} +``` +public static final MSLanguageId Marathi +``` + + +Marathi (Région : Inde) valeur LanguageId + +### Mohawk {#Mohawk} +``` +public static final MSLanguageId Mohawk +``` + + +Mohawk (Région : Mohawk) valeur LanguageId + +### Mongolian_Cyrillic {#Mongolian-Cyrillic} +``` +public static final MSLanguageId Mongolian_Cyrillic +``` + + +Mongol (cyrillique, Région : Mongolie) valeur LanguageId + +### Mongolian_Traditional {#Mongolian-Traditional} +``` +public static final MSLanguageId Mongolian_Traditional +``` + + +Mongol (traditionnel, Région : République populaire de Chine) valeur LanguageId + +### Nepali {#Nepali} +``` +public static final MSLanguageId Nepali +``` + + +Népalais (Région : Népal) valeur LanguageId + +### Norwegian_Bokmal {#Norwegian-Bokmal} +``` +public static final MSLanguageId Norwegian_Bokmal +``` + + +Norvégien (Bokmål, Région : Norvège, NOR) valeur LanguageId + +### Norwegian_Nynorsk {#Norwegian-Nynorsk} +``` +public static final MSLanguageId Norwegian_Nynorsk +``` + + +Norvégien (Nynorsk, Région : Norvège, NON) valeur LanguageId + +### Occitan {#Occitan} +``` +public static final MSLanguageId Occitan +``` + + +Occitan (Région : France) valeur LanguageId + +### Odia {#Odia} +``` +public static final MSLanguageId Odia +``` + + +Odia (anciennement Oriya, Région : Inde) valeur LanguageId + +### Pashto {#Pashto} +``` +public static final MSLanguageId Pashto +``` + + +Pashto (Région : Afghanistan) valeur LanguageId + +### Polish {#Polish} +``` +public static final MSLanguageId Polish +``` + + +Polonais (Région : Pologne, PLK) valeur LanguageId + +### Portuguese_Brazil {#Portuguese-Brazil} +``` +public static final MSLanguageId Portuguese_Brazil +``` + + +Portugais (brésilien, Région : Brésil, PTB) valeur LanguageId + +### Portuguese_Portugal {#Portuguese-Portugal} +``` +public static final MSLanguageId Portuguese_Portugal +``` + + +Portugais (standard, Région : Portugal, PTG) valeur LanguageId + +### Punjabi {#Punjabi} +``` +public static final MSLanguageId Punjabi +``` + + +Pendjabi (Région : Inde) valeur LanguageId + +### Quechua_Bolivia {#Quechua-Bolivia} +``` +public static final MSLanguageId Quechua_Bolivia +``` + + +Quechua (Région : Bolivie) valeur LanguageId + +### Quechua_Ecuador {#Quechua-Ecuador} +``` +public static final MSLanguageId Quechua_Ecuador +``` + + +Quechua (Région : Équateur) valeur LanguageId + +### Quechua_Peru {#Quechua-Peru} +``` +public static final MSLanguageId Quechua_Peru +``` + + +Quechua (Région : Pérou) valeur LanguageId + +### Romanian {#Romanian} +``` +public static final MSLanguageId Romanian +``` + + +Roumain (Région : Roumanie, ROM) valeur LanguageId + +### Romansh {#Romansh} +``` +public static final MSLanguageId Romansh +``` + + +Romanche (Région : Suisse) valeur LanguageId + +### Russian {#Russian} +``` +public static final MSLanguageId Russian +``` + + +Russe (Région : Russie, RUS) valeur LanguageId + +### Sami_Inari {#Sami-Inari} +``` +public static final MSLanguageId Sami_Inari +``` + + +Sami (Inari, Région : Finlande) valeur LanguageId + +### Sami_Lule_Norway {#Sami-Lule-Norway} +``` +public static final MSLanguageId Sami_Lule_Norway +``` + + +Sami (Lule, Région : Norvège) valeur LanguageId + +### Sami_Lule_Sweden {#Sami-Lule-Sweden} +``` +public static final MSLanguageId Sami_Lule_Sweden +``` + + +Sami (Lule, Région : Suède) valeur LanguageId + +### Sami_Northern_Finland {#Sami-Northern-Finland} +``` +public static final MSLanguageId Sami_Northern_Finland +``` + + +Sami (nordique, Région : Finlande) valeur LanguageId + +### Sami_Northern_Norway {#Sami-Northern-Norway} +``` +public static final MSLanguageId Sami_Northern_Norway +``` + + +Sami (nordique, Région : Norvège) valeur LanguageId + +### Sami_Northern_Sweden {#Sami-Northern-Sweden} +``` +public static final MSLanguageId Sami_Northern_Sweden +``` + + +Sami (nordique, Région : Suède) valeur LanguageId + +### Sami_Skolt {#Sami-Skolt} +``` +public static final MSLanguageId Sami_Skolt +``` + + +Sami (Skolt, Région : Finlande) valeur LanguageId + +### Sami_Southern_Norway {#Sami-Southern-Norway} +``` +public static final MSLanguageId Sami_Southern_Norway +``` + + +Sami (sud, Région : Norvège) valeur LanguageId + +### Sami_Southern_Sweden {#Sami-Southern-Sweden} +``` +public static final MSLanguageId Sami_Southern_Sweden +``` + + +Sami (sud, Région : Suède) valeur LanguageId + +### Sanskrit {#Sanskrit} +``` +public static final MSLanguageId Sanskrit +``` + + +Sanskrit (Région : Inde) valeur LanguageId + +### Serbian_Cyrillic_BIH {#Serbian-Cyrillic-BIH} +``` +public static final MSLanguageId Serbian_Cyrillic_BIH +``` + + +Serbe (cyrillique, Région : Bosnie-Herzégovine) valeur LanguageId + +### Serbian_Cyrillic_Serbia {#Serbian-Cyrillic-Serbia} +``` +public static final MSLanguageId Serbian_Cyrillic_Serbia +``` + + +Serbe (cyrillique, Région : Serbie) valeur LanguageId + +### Serbian_Latin_BIH {#Serbian-Latin-BIH} +``` +public static final MSLanguageId Serbian_Latin_BIH +``` + + +Serbe (Latin, Région : Bosnie-Herzégovine) valeur LanguageId + +### Serbian_Latin_Serbia {#Serbian-Latin-Serbia} +``` +public static final MSLanguageId Serbian_Latin_Serbia +``` + + +Serbe (Latin, Région : Serbie) valeur LanguageId + +### Sesotho_Sa_Leboa {#Sesotho-Sa-Leboa} +``` +public static final MSLanguageId Sesotho_Sa_Leboa +``` + + +Sesotho sa Leboa (Northern Sotho, Région : Afrique du Sud, SA) valeur LanguageId + +### Setswana {#Setswana} +``` +public static final MSLanguageId Setswana +``` + + +Setswana (Région : Afrique du Sud, SA) valeur LanguageId + +### Sinhala {#Sinhala} +``` +public static final MSLanguageId Sinhala +``` + + +Cingalais (Région : Sri Lanka) valeur LanguageId + +### Slovak {#Slovak} +``` +public static final MSLanguageId Slovak +``` + + +Slovaque (Région : Slovaquie, SKY) valeur LanguageId + +### Slovenian {#Slovenian} +``` +public static final MSLanguageId Slovenian +``` + + +Slovène (Région : Slovénie, SLV) valeur LanguageId + +### Spanish_Argentina {#Spanish-Argentina} +``` +public static final MSLanguageId Spanish_Argentina +``` + + +Espagnol (Région : Argentine) valeur LanguageId + +### Spanish_Bolivia {#Spanish-Bolivia} +``` +public static final MSLanguageId Spanish_Bolivia +``` + + +Espagnol (Région : Bolivie) valeur LanguageId + +### Spanish_Chile {#Spanish-Chile} +``` +public static final MSLanguageId Spanish_Chile +``` + + +Espagnol (Région : Chili) valeur LanguageId + +### Spanish_Colombia {#Spanish-Colombia} +``` +public static final MSLanguageId Spanish_Colombia +``` + + +Espagnol (Région : Colombie) valeur LanguageId + +### Spanish_Costa_Rica {#Spanish-Costa-Rica} +``` +public static final MSLanguageId Spanish_Costa_Rica +``` + + +Espagnol (Région : Costa Rica) valeur LanguageId + +### Spanish_Dominican_Republic {#Spanish-Dominican-Republic} +``` +public static final MSLanguageId Spanish_Dominican_Republic +``` + + +Espagnol (Région : République dominicaine) valeur LanguageId + +### Spanish_Ecuador {#Spanish-Ecuador} +``` +public static final MSLanguageId Spanish_Ecuador +``` + + +Espagnol (Région : Équateur) valeur LanguageId + +### Spanish_El_Salvador {#Spanish-El-Salvador} +``` +public static final MSLanguageId Spanish_El_Salvador +``` + + +Espagnol (Région : Salvador) valeur LanguageId + +### Spanish_Guatemala {#Spanish-Guatemala} +``` +public static final MSLanguageId Spanish_Guatemala +``` + + +Espagnol (Région : Guatemala) valeur LanguageId + +### Spanish_Honduras {#Spanish-Honduras} +``` +public static final MSLanguageId Spanish_Honduras +``` + + +Espagnol (Région : Honduras) valeur LanguageId + +### Spanish_Mexico {#Spanish-Mexico} +``` +public static final MSLanguageId Spanish_Mexico +``` + + +Espagnol (Mexicain, Région : Mexique, ESM) valeur LanguageId + +### Spanish_Modern_Sort {#Spanish-Modern-Sort} +``` +public static final MSLanguageId Spanish_Modern_Sort +``` + + +Espagnol (Tri moderne, Région : Espagne, ESN) valeur LanguageId + +### Spanish_Nicaragua {#Spanish-Nicaragua} +``` +public static final MSLanguageId Spanish_Nicaragua +``` + + +Espagnol (Région : Nicaragua) valeur LanguageId + +### Spanish_Panama {#Spanish-Panama} +``` +public static final MSLanguageId Spanish_Panama +``` + + +Espagnol (Région : Panama) valeur LanguageId + +### Spanish_Paraguay {#Spanish-Paraguay} +``` +public static final MSLanguageId Spanish_Paraguay +``` + + +Espagnol (Région : Paraguay) valeur LanguageId + +### Spanish_Peru {#Spanish-Peru} +``` +public static final MSLanguageId Spanish_Peru +``` + + +Espagnol (Région : Pérou) valeur LanguageId + +### Spanish_Puerto_Rico {#Spanish-Puerto-Rico} +``` +public static final MSLanguageId Spanish_Puerto_Rico +``` + + +Espagnol (Région : Porto Rico) valeur LanguageId + +### Spanish_Traditional_Sort {#Spanish-Traditional-Sort} +``` +public static final MSLanguageId Spanish_Traditional_Sort +``` + + +Espagnol (Tri traditionnel, Région : Espagne, ESP) valeur LanguageId + +### Spanish_United_States {#Spanish-United-States} +``` +public static final MSLanguageId Spanish_United_States +``` + + +Espagnol (Région : États-Unis) LanguageId valeur + +### Spanish_Uruguay {#Spanish-Uruguay} +``` +public static final MSLanguageId Spanish_Uruguay +``` + + +Espagnol (Région : Uruguay) LanguageId valeur + +### Spanish_Venezuela {#Spanish-Venezuela} +``` +public static final MSLanguageId Spanish_Venezuela +``` + + +Espagnol (Région : Venezuela) LanguageId valeur + +### Swedish_Finland {#Swedish-Finland} +``` +public static final MSLanguageId Swedish_Finland +``` + + +Suédois (Région : Finlande) LanguageId valeur + +### Swedish_Sweden {#Swedish-Sweden} +``` +public static final MSLanguageId Swedish_Sweden +``` + + +Suédois (Région : Suède, SVE) LanguageId valeur + +### Syriac {#Syriac} +``` +public static final MSLanguageId Syriac +``` + + +Syriaque (Région : Syrie) LanguageId valeur + +### Tajik {#Tajik} +``` +public static final MSLanguageId Tajik +``` + + +Tadjik (Cyrillique, Région : Tadjikistan) LanguageId valeur + +### Tamazight {#Tamazight} +``` +public static final MSLanguageId Tamazight +``` + + +Tamazight (Latin, Région : Algérie) LanguageId valeur + +### Tamil {#Tamil} +``` +public static final MSLanguageId Tamil +``` + + +Tamoul (Région : Inde) LanguageId valeur + +### Tatar {#Tatar} +``` +public static final MSLanguageId Tatar +``` + + +Tatar (Région : Russie) LanguageId valeur + +### Telugu {#Telugu} +``` +public static final MSLanguageId Telugu +``` + + +Télougou (Région : Inde) LanguageId valeur + +### Thai {#Thai} +``` +public static final MSLanguageId Thai +``` + + +Thaï (Région : Thaïlande) LanguageId valeur + +### Tibetan {#Tibetan} +``` +public static final MSLanguageId Tibetan +``` + + +Tibétain (Région : RPC) LanguageId valeur + +### Turkish {#Turkish} +``` +public static final MSLanguageId Turkish +``` + + +Turc (Région : Turquie, TRK) LanguageId valeur + +### Turkmen {#Turkmen} +``` +public static final MSLanguageId Turkmen +``` + + +Turkmène (Région : Turkménistan) LanguageId valeur + +### Uighur {#Uighur} +``` +public static final MSLanguageId Uighur +``` + + +Ouïghour (Région : RPC) LanguageId valeur + +### Ukrainian {#Ukrainian} +``` +public static final MSLanguageId Ukrainian +``` + + +Ukrainien (Région : Ukraine, UKR) LanguageId valeur + +### Upper_Sorbian {#Upper-Sorbian} +``` +public static final MSLanguageId Upper_Sorbian +``` + + +Sorabe supérieur (Région : Allemagne) LanguageId valeur + +### Urdu {#Urdu} +``` +public static final MSLanguageId Urdu +``` + + +Urdu (Région : République islamique du Pakistan) LanguageId valeur + +### Uzbek_Cyrillic {#Uzbek-Cyrillic} +``` +public static final MSLanguageId Uzbek_Cyrillic +``` + + +Ouzbek (Cyrillique, Région : Ouzbékistan) LanguageId valeur + +### Uzbek_Latin {#Uzbek-Latin} +``` +public static final MSLanguageId Uzbek_Latin +``` + + +Ouzbek (Latin, Région : Ouzbékistan) LanguageId valeur + +### Vietnamese {#Vietnamese} +``` +public static final MSLanguageId Vietnamese +``` + + +Vietnamien (Région : Vietnam) LanguageId valeur + +### Welsh {#Welsh} +``` +public static final MSLanguageId Welsh +``` + + +Gallois (Région : Royaume-Uni) LanguageId valeur + +### Wolof {#Wolof} +``` +public static final MSLanguageId Wolof +``` + + +Wolof (Région : Sénégal) LanguageId valeur + +### Yakut {#Yakut} +``` +public static final MSLanguageId Yakut +``` + + +Yakoute (Région : Russie) LanguageId valeur + +### Yi {#Yi} +``` +public static final MSLanguageId Yi +``` + + +Yi (Région : RPC) valeur LanguageId + +### Yoruba {#Yoruba} +``` +public static final MSLanguageId Yoruba +``` + + +Yoruba (Région : Nigeria) valeur LanguageId + +### isiXhosa {#isiXhosa} +``` +public static final MSLanguageId isiXhosa +``` + + +isiXhosa (Région : Afrique du Sud, SA) valeur LanguageId + +### isiZulu {#isiZulu} +``` +public static final MSLanguageId isiZulu +``` + + +isiZulu (Région : Afrique du Sud, SA) valeur LanguageId + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getId() {#getId--} +``` +public int getId() +``` + + +Obtenez la valeur entière. + +**Returns:** +int - La valeur entière. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/msplatformspecificid/_index.md b/french/java/com.aspose.font/msplatformspecificid/_index.md new file mode 100644 index 0000000000..20dfcb4271 --- /dev/null +++ b/french/java/com.aspose.font/msplatformspecificid/_index.md @@ -0,0 +1,331 @@ +--- +title: "MSPlatformSpecificId" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente l'énumération PlatformSpecificId de la plateforme Microsoft." +type: docs +weight: 139 +url: /fr/java/com.aspose.font/msplatformspecificid/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum MSPlatformSpecificId extends Enum +``` + +Représente l'énumération PlatformSpecificId de la plateforme Microsoft. +## Champs + +| Champ | Description | +| --- | --- | +| [Big5](#Big5) | Big5 MS MSPlatformSpecificId. | +| [Johab](#Johab) | Johab MS MSPlatformSpecificId. | +| [PRC](#PRC) | PRC MS MSPlatformSpecificId. | +| [Reserved1](#Reserved1) | Reserved1 MS MSPlatformSpecificId. | +| [Reserved2](#Reserved2) | Reserved2 MS MSPlatformSpecificId. | +| [Reserved3](#Reserved3) | Reserved3 MS MSPlatformSpecificId. | +| [ShiftJIS](#ShiftJIS) | ShiftJIS MS MSPlatformSpecificId. | +| [Symbol](#Symbol) | Symbol MS MSPlatformSpecificId. | +| [Unicode_BMP_UCS2](#Unicode-BMP-UCS2) | Unicode BMP (UCS2) MS PlatformSpecificId. | +| [Unicode_UCS4](#Unicode-UCS4) | Unicode\_UCS4 MS MSPlatformSpecificId. | +| [Wansung](#Wansung) | Wansung MS MSPlatformSpecificId. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### Big5 {#Big5} +``` +public static final MSPlatformSpecificId Big5 +``` + + +Big5 MS MSPlatformSpecificId. + +### Johab {#Johab} +``` +public static final MSPlatformSpecificId Johab +``` + + +Johab MS MSPlatformSpecificId. + +### PRC {#PRC} +``` +public static final MSPlatformSpecificId PRC +``` + + +PRC MS MSPlatformSpecificId. + +### Reserved1 {#Reserved1} +``` +public static final MSPlatformSpecificId Reserved1 +``` + + +Reserved1 MS MSPlatformSpecificId. + +### Reserved2 {#Reserved2} +``` +public static final MSPlatformSpecificId Reserved2 +``` + + +Reserved2 MS MSPlatformSpecificId. + +### Reserved3 {#Reserved3} +``` +public static final MSPlatformSpecificId Reserved3 +``` + + +Reserved3 MS MSPlatformSpecificId. + +### ShiftJIS {#ShiftJIS} +``` +public static final MSPlatformSpecificId ShiftJIS +``` + + +ShiftJIS MS MSPlatformSpecificId. + +### Symbol {#Symbol} +``` +public static final MSPlatformSpecificId Symbol +``` + + +Symbol MS MSPlatformSpecificId. + +### Unicode_BMP_UCS2 {#Unicode-BMP-UCS2} +``` +public static final MSPlatformSpecificId Unicode_BMP_UCS2 +``` + + +Unicode BMP (UCS2) MS PlatformSpecificId. + +### Unicode_UCS4 {#Unicode-UCS4} +``` +public static final MSPlatformSpecificId Unicode_UCS4 +``` + + +Unicode\_UCS4 MS MSPlatformSpecificId. + +### Wansung {#Wansung} +``` +public static final MSPlatformSpecificId Wansung +``` + + +Wansung MS MSPlatformSpecificId. + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static MSPlatformSpecificId valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[MSPlatformSpecificId](../../com.aspose.font/msplatformspecificid) +### values() {#values--} +``` +public static MSPlatformSpecificId[] values() +``` + + + + +**Returns:** +com.aspose.font.MSPlatformSpecificId[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/multilanguagestring/_index.md b/french/java/com.aspose.font/multilanguagestring/_index.md new file mode 100644 index 0000000000..01bffec4f9 --- /dev/null +++ b/french/java/com.aspose.font/multilanguagestring/_index.md @@ -0,0 +1,296 @@ +--- +title: "MultiLanguageString" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente une chaîne multilingue." +type: docs +weight: 66 +url: /fr/java/com.aspose.font/multilanguagestring/ +--- +**Inheritance:** +java.lang.Object +``` +public class MultiLanguageString +``` + +Représente une chaîne multilingue. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [MultiLanguageString()](#MultiLanguageString--) | Crée une chaîne multilingue vide. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [addLanguageString(String str, int languageId)](#addLanguageString-java.lang.String-int-) | Ajoute une chaîne d'une langue spécifique | +| [containsString(String str)](#containsString-java.lang.String-) | Renvoie vrai si la chaîne est présente dans toutes les chaînes de langues. | +| [equals(Object objToCompare)](#equals-java.lang.Object-) | Renvoie vrai si les objets sont considérés égaux. | +| [getAllLanguageIds()](#getAllLanguageIds--) | Obtient les identifiants de langue pour toutes les chaînes ou un tableau vide si aucune chaîne n'est présente. | +| [getAllStrings()](#getAllStrings--) | Renvoie toutes les chaînes de toutes les langues. | +| [getClass()](#getClass--) | | +| [getEnglishString()](#getEnglishString--) | Renvoie la chaîne anglaise si trouvée. | +| [getStringForLanguageId(int languageId)](#getStringForLanguageId-int-) | Renvoie la chaîne liée à l'identifiant de langue fourni, si trouvée. | +| [hashCode()](#hashCode--) | Implémentation de GetHashCode. | +| [isEmpty()](#isEmpty--) | Vrai, si MultiLanguageString n'a pas de chaînes de langues. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [op_Equality(MultiLanguageString obj1, String obj2)](#op-Equality-com.aspose.font.MultiLanguageString-java.lang.String-) | Implémentation de l'opérateur d'égalité. | +| [op_Equality(String obj1, MultiLanguageString obj2)](#op-Equality-java.lang.String-com.aspose.font.MultiLanguageString-) | Implémentation de l'opérateur d'égalité. | +| [op_Inequality(MultiLanguageString obj1, String obj2)](#op-Inequality-com.aspose.font.MultiLanguageString-java.lang.String-) | Implémentation de l'opérateur d'inégalité. | +| [op_Inequality(String obj1, MultiLanguageString obj2)](#op-Inequality-java.lang.String-com.aspose.font.MultiLanguageString-) | Implémentation de l'opérateur d'inégalité. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### MultiLanguageString() {#MultiLanguageString--} +``` +public MultiLanguageString() +``` + + +Crée une chaîne multilingue vide. + +### addLanguageString(String str, int languageId) {#addLanguageString-java.lang.String-int-} +``` +public void addLanguageString(String str, int languageId) +``` + + +Ajoute une chaîne d'une langue spécifique + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| str | java.lang.String | Chaîne à ajouter | +| languageId | int | Identifiant de langue | + +### containsString(String str) {#containsString-java.lang.String-} +``` +public boolean containsString(String str) +``` + + +Renvoie vrai si la chaîne est présente dans toutes les chaînes de langues. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| str | java.lang.String | Chaîne à vérifier. | + +**Returns:** +booléen - Vrai si la chaîne est présente dans toutes les chaînes de langues. +### equals(Object objToCompare) {#equals-java.lang.Object-} +``` +public boolean equals(Object objToCompare) +``` + + +Renvoie vrai si les objets sont considérés égaux. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| objToCompare | java.lang.Object | objet à comparer avec | + +**Returns:** +boolean - résultat de comparaison +### getAllLanguageIds() {#getAllLanguageIds--} +``` +public int[] getAllLanguageIds() +``` + + +Obtient les identifiants de langue pour toutes les chaînes ou un tableau vide si aucune chaîne n'est présente. + +**Returns:** +int[] - Tableau avec les identifiants de langue ou tableau vide si aucune chaîne n'est présente. +### getAllStrings() {#getAllStrings--} +``` +public String[] getAllStrings() +``` + + +Renvoie toutes les chaînes de toutes les langues. + +**Returns:** +java.lang.String[] - Tableau de toutes les chaînes de toutes les langues. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getEnglishString() {#getEnglishString--} +``` +public String getEnglishString() +``` + + +Renvoie la chaîne anglaise si trouvée. Sinon renvoie la première chaîne non-anglaise. + +**Returns:** +java.lang.String - Chaîne anglaise si trouvée, sinon première chaîne non-anglaise. +### getStringForLanguageId(int languageId) {#getStringForLanguageId-int-} +``` +public String getStringForLanguageId(int languageId) +``` + + +Renvoie la chaîne liée à l'identifiant de langue fourni, si trouvée. Chaîne vide sinon. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| languageId | int | Identifiant de langue. | + +**Returns:** +java.lang.String - Chaîne liée à l'identifiant de langue fourni, si trouvée. Chaîne vide sinon. +### hashCode() {#hashCode--} +``` +public int hashCode() +``` + + +Implémentation de GetHashCode. + +**Returns:** +int - code de hachage de l'objet +### isEmpty() {#isEmpty--} +``` +public boolean isEmpty() +``` + + +Vrai, si MultiLanguageString n'a pas de chaînes de langues. + +**Returns:** +boolean - Vrai, si MultiLanguageString ne possède pas de chaînes de langues. +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### op_Equality(MultiLanguageString obj1, String obj2) {#op-Equality-com.aspose.font.MultiLanguageString-java.lang.String-} +``` +public static boolean op_Equality(MultiLanguageString obj1, String obj2) +``` + + +Implémentation de l'opérateur d'égalité. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| obj1 | [MultiLanguageString](../../com.aspose.font/multilanguagestring) | premier objet à comparer | +| obj2 | java.lang.String | deuxième objet à comparer | + +**Returns:** +boolean - résultat de comparaison +### op_Equality(String obj1, MultiLanguageString obj2) {#op-Equality-java.lang.String-com.aspose.font.MultiLanguageString-} +``` +public static boolean op_Equality(String obj1, MultiLanguageString obj2) +``` + + +Implémentation de l'opérateur d'égalité. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| obj1 | java.lang.String | chaîne à comparer | +| obj2 | [MultiLanguageString](../../com.aspose.font/multilanguagestring) | chaîne multilingue à comparer | + +**Returns:** +boolean - résultat de comparaison +### op_Inequality(MultiLanguageString obj1, String obj2) {#op-Inequality-com.aspose.font.MultiLanguageString-java.lang.String-} +``` +public static boolean op_Inequality(MultiLanguageString obj1, String obj2) +``` + + +Implémentation de l'opérateur d'inégalité. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| obj1 | [MultiLanguageString](../../com.aspose.font/multilanguagestring) | chaîne à comparer | +| obj2 | java.lang.String | chaîne multilingue à comparer | + +**Returns:** +boolean - résultat de comparaison +### op_Inequality(String obj1, MultiLanguageString obj2) {#op-Inequality-java.lang.String-com.aspose.font.MultiLanguageString-} +``` +public static boolean op_Inequality(String obj1, MultiLanguageString obj2) +``` + + +Implémentation de l'opérateur d'inégalité. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| obj1 | java.lang.String | chaîne à comparer | +| obj2 | [MultiLanguageString](../../com.aspose.font/multilanguagestring) | chaîne multilingue à comparer | + +**Returns:** +boolean - résultat de comparaison +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/nameid/_index.md b/french/java/com.aspose.font/nameid/_index.md new file mode 100644 index 0000000000..33c6ca3406 --- /dev/null +++ b/french/java/com.aspose.font/nameid/_index.md @@ -0,0 +1,380 @@ +--- +title: "NameId" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente l'énumération NameId." +type: docs +weight: 67 +url: /fr/java/com.aspose.font/nameid/ +--- +**Inheritance:** +java.lang.Object +``` +public final class NameId +``` + +Représente l'énumération NameId. +## Champs + +| Champ | Description | +| --- | --- | +| [CompatibleFull](#CompatibleFull) | 18 Compatible Full (Macintosh uniquement) ; sur le Macintosh, le nom du menu est construit à l'aide de la ressource de Police. | +| [CopyrightNotice](#CopyrightNotice) | 0 Avis de droit d'auteur. | +| [DarkBackground](#DarkBackground) | Cet ID, s'il est utilisé dans le tableau Palette Labels du tableau CPAL\\u2019s, indique que la palette de couleurs correspondante dans le tableau CPAL est appropriée pour être utilisée avec la police lors de son affichage sur un fond sombre tel que le noir. | +| [Description](#Description) | 10 Description ; description de la police. | +| [DesignerName](#DesignerName) | 9 Designer ; nom du créateur de la police. | +| [FontFamily](#FontFamily) | 1 Famille de police. | +| [FontSubfamily](#FontSubfamily) | 2 Sous-famille de police. | +| [FullName](#FullName) | 4 Nom complet de la police. | +| [LicenseDescription](#LicenseDescription) | 13 Description de la licence ; description de la manière dont la police peut être utilisée légalement, ou différents scénarios d’utilisation sous licence. | +| [LicenseInfoUrl](#LicenseInfoUrl) | 14 URL des informations de licence, où des informations supplémentaires sur la licence peuvent être trouvées. | +| [LightBackground](#LightBackground) | Cet ID, s'il est utilisé dans le tableau des libellés de palette du tableau CPAL, indique que la palette de couleurs correspondante dans le tableau CPAL est appropriée pour être utilisée avec la police lors de son affichage sur un fond clair comme le blanc. | +| [ManufacturerName](#ManufacturerName) | 8 Nom du fabricant. | +| [PostScriptCID](#PostScriptCID) | Sa présence dans une police signifie que le nameID 6 contient un nom de police PostScript destiné à être utilisé avec l’invocation « composefont » afin d’appeler la police dans un interpréteur PostScript. | +| [PostScriptName](#PostScriptName) | 6 Nom PostScript de la police. | +| [PreferredFamily](#PreferredFamily) | 15 Réservé 16 Famille préférée (Windows uniquement) ; sous Windows, le nom de la Famille est affiché dans le menu Police ; le nom de la Sous-famille est présenté comme le nom du Style. | +| [PreferredSubfamily](#PreferredSubfamily) | 17 Sous-famille préférée (Windows uniquement) ; sous Windows, le nom de la Famille est affiché dans le menu Police ; le nom de la Sous-famille est présenté comme le nom du Style. | +| [SampleText](#SampleText) | 19 Texte d’exemple. | +| [TrademarkNotice](#TrademarkNotice) | 7 Avis de marque déposée. | +| [UniqueFontId](#UniqueFontId) | 3 Spécification Apple : identification unique de la sous-famille. 3 Spécification MS : identifiant unique de la police. | +| [UrlDesigner](#UrlDesigner) | 12 URL du créateur de la police (avec protocole, par ex., http://, ftp://) | +| [UrlVendor](#UrlVendor) | 11 URL du fournisseur de la police (avec protocole, par ex., http://, ftp://). | +| [VariationsPostScriptNamePrefix](#VariationsPostScriptNamePrefix) | S’il est présent dans une police variable, il peut être utilisé comme préfixe de famille dans l’algorithme de génération de nom PostScript pour les polices à variations. | +| [Version](#Version) | 5 Version de la table des noms. | +| [WwsFamilyName](#WwsFamilyName) | Utilisé pour fournir un nom de famille conforme au modèle WWS au cas où les entrées des ID 16 et 17 ne respecteraient pas le modèle WWS. | +| [WwsSubfamilyName](#WwsSubfamilyName) | Utilisé conjointement avec l’ID 21, cet ID fournit un nom de sous-famille conforme au modèle WWS (reflétant uniquement les attributs de poids, de largeur et d’inclinaison) au cas où les entrées des ID 16 et 17 ne respecteraient pas le modèle WWS. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [fromId(int id)](#fromId-int-) | Crée un ID de nom à partir d’une valeur entière. | +| [getClass()](#getClass--) | | +| [getId()](#getId--) | Obtenez la valeur entière. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### CompatibleFull {#CompatibleFull} +``` +public static final NameId CompatibleFull +``` + + +18 Nom complet compatible (Macintosh uniquement) ; sur Macintosh, le nom du menu est construit à l’aide de la ressource de police. Cela correspond généralement au Nom complet. Si vous souhaitez que le nom de la police apparaisse différemment du Nom complet, vous pouvez insérer le Nom complet compatible dans l’ID 18. Ce nom n’est pas utilisé par le système Mac OS lui‑même, mais peut être utilisé par les développeurs d’applications (par ex., Adobe). + +### CopyrightNotice {#CopyrightNotice} +``` +public static final NameId CopyrightNotice +``` + + +0 Avis de droit d'auteur. + +### DarkBackground {#DarkBackground} +``` +public static final NameId DarkBackground +``` + + +Cet ID, s'il est utilisé dans le tableau Palette Labels du tableau CPAL\\u2019s, indique que la palette de couleurs correspondante dans le tableau CPAL est appropriée pour être utilisée avec la police lors de son affichage sur un fond sombre tel que le noir. + +### Description {#Description} +``` +public static final NameId Description +``` + + +10 Description ; description de la police. Peut contenir des informations de révision, des recommandations d’utilisation, l’historique, les caractéristiques, etc. + +### DesignerName {#DesignerName} +``` +public static final NameId DesignerName +``` + + +9 Designer ; nom du créateur de la police. + +### FontFamily {#FontFamily} +``` +public static final NameId FontFamily +``` + + +1 Famille de police. Cette chaîne est le nom de la famille de police que l’utilisateur voit sur les plateformes Macintosh. + +### FontSubfamily {#FontSubfamily} +``` +public static final NameId FontSubfamily +``` + + +2 Sous-famille de police. Cette chaîne est la famille de police que l'utilisateur voit sur les plateformes Macintosh. + +### FullName {#FullName} +``` +public static final NameId FullName +``` + + +4 Nom complet de la police. + +### LicenseDescription {#LicenseDescription} +``` +public static final NameId LicenseDescription +``` + + +13 Description de la licence ; description de la façon dont la police peut être utilisée légalement, ou différents scénarios d'exemple d'utilisation sous licence. Ce champ doit être rédigé en langage clair, pas en jargon juridique. + +### LicenseInfoUrl {#LicenseInfoUrl} +``` +public static final NameId LicenseInfoUrl +``` + + +14 URL des informations de licence, où des informations supplémentaires sur la licence peuvent être trouvées. + +### LightBackground {#LightBackground} +``` +public static final NameId LightBackground +``` + + +Cet ID, s'il est utilisé dans le tableau des libellés de palette du tableau CPAL, indique que la palette de couleurs correspondante dans le tableau CPAL est appropriée pour être utilisée avec la police lors de son affichage sur un fond clair comme le blanc. + +### ManufacturerName {#ManufacturerName} +``` +public static final NameId ManufacturerName +``` + + +8 Nom du fabricant. + +### PostScriptCID {#PostScriptCID} +``` +public static final NameId PostScriptCID +``` + + +Sa présence dans une police signifie que le nameID 6 contient un nom de police PostScript destiné à être utilisé avec l’invocation « composefont » afin d’appeler la police dans un interpréteur PostScript. + +### PostScriptName {#PostScriptName} +``` +public static final NameId PostScriptName +``` + + +6 Nom PostScript de la police. Remarque : une police ne peut avoir qu'un seul nom PostScript et ce nom doit être en ASCII. + +### PreferredFamily {#PreferredFamily} +``` +public static final NameId PreferredFamily +``` + + +15 Reserved 16 Preferred Family (Windows uniquement) ; sous Windows, le nom de la Family est affiché dans le menu des polices ; le nom de la Subfamily est présenté comme le nom du Style. Pour des raisons historiques, les familles de polices contenaient au maximum quatre styles, mais les concepteurs de polices peuvent regrouper plus de quatre polices dans une même famille. Les identifiants Preferred Family et Preferred Subfamily permettent aux concepteurs de polices d’inclure les groupements de famille/sous‑famille préférés. Ces identifiants ne sont présents que s’ils diffèrent des identifiants 1 et 2. + +### PreferredSubfamily {#PreferredSubfamily} +``` +public static final NameId PreferredSubfamily +``` + + +17 Preferred Subfamily (Windows uniquement) ; sous Windows, le nom de la Family est affiché dans le menu des polices ; le nom de la Subfamily est présenté comme le nom du Style. Pour des raisons historiques, les familles de polices contenaient au maximum quatre styles, mais les concepteurs de polices peuvent regrouper plus de quatre polices dans une même famille. Les identifiants Preferred Family et Preferred Subfamily permettent aux concepteurs de polices d’inclure les groupements de famille/sous‑famille préférés. Ces identifiants ne sont présents que s’ils diffèrent des identifiants 1 et 2. + +### SampleText {#SampleText} +``` +public static final NameId SampleText +``` + + +19 Texte d'exemple. Cela peut être le nom de la police, ou tout autre texte que le concepteur estime être le meilleur exemple pour montrer à quoi ressemble la police. + +### TrademarkNotice {#TrademarkNotice} +``` +public static final NameId TrademarkNotice +``` + + +7 Avis de marque déposée. + +### UniqueFontId {#UniqueFontId} +``` +public static final NameId UniqueFontId +``` + + +3 Spécification Apple : identification unique de la sous-famille. 3 Spécification MS : identifiant unique de la police. + +### UrlDesigner {#UrlDesigner} +``` +public static final NameId UrlDesigner +``` + + +12 URL du créateur de la police (avec protocole, par ex., http://, ftp://) + +### UrlVendor {#UrlVendor} +``` +public static final NameId UrlVendor +``` + + +11 URL du fournisseur de la police (avec protocole, par ex., http://, ftp://). Si un numéro de série unique est intégré dans l'URL, il peut être utilisé pour enregistrer la police. + +### VariationsPostScriptNamePrefix {#VariationsPostScriptNamePrefix} +``` +public static final NameId VariationsPostScriptNamePrefix +``` + + +S’il est présent dans une police variable, il peut être utilisé comme préfixe de famille dans l’algorithme de génération de nom PostScript pour les polices à variations. + +### Version {#Version} +``` +public static final NameId Version +``` + + +5 Version de la table des noms. + +### WwsFamilyName {#WwsFamilyName} +``` +public static final NameId WwsFamilyName +``` + + +Utilisé pour fournir un nom de famille conforme au modèle WWS au cas où les entrées des ID 16 et 17 ne respecteraient pas le modèle WWS. + +### WwsSubfamilyName {#WwsSubfamilyName} +``` +public static final NameId WwsSubfamilyName +``` + + +Utilisé conjointement avec l’ID 21, cet ID fournit un nom de sous-famille conforme au modèle WWS (reflétant uniquement les attributs de poids, de largeur et d’inclinaison) au cas où les entrées des ID 16 et 17 ne respecteraient pas le modèle WWS. + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### fromId(int id) {#fromId-int-} +``` +public static NameId fromId(int id) +``` + + +Crée un ID de nom à partir d’une valeur entière. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| id | int | Une valeur entière. | + +**Returns:** +[NameId](../../com.aspose.font/nameid) - The name id. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getId() {#getId--} +``` +public int getId() +``` + + +Obtenez la valeur entière. + +**Returns:** +int - La valeur entière. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/nameindexdataprovider/_index.md b/french/java/com.aspose.font/nameindexdataprovider/_index.md new file mode 100644 index 0000000000..57bfe7619f --- /dev/null +++ b/french/java/com.aspose.font/nameindexdataprovider/_index.md @@ -0,0 +1,250 @@ +--- +title: "NameIndexDataProvider" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Fournit des paramètres communs aux polices CFF." +type: docs +weight: 68 +url: /fr/java/com.aspose.font/nameindexdataprovider/ +--- +**Inheritance:** +java.lang.Object + +**All Implemented Interfaces:** +[com.aspose.font.ICffIndexDataProvider](../../com.aspose.font/icffindexdataprovider) +``` +public abstract class NameIndexDataProvider implements ICffIndexDataProvider +``` + +Fournit des paramètres communs aux polices CFF. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [NameIndexDataProvider()](#NameIndexDataProvider--) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [addName(String name)](#addName-java.lang.String-) | Ajoute un nom de police à la structure Name INDEX. | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [get(int index)](#get-int-) | Obtient le nom de la police à l'index spécifié. | +| [getClass()](#getClass--) | | +| [getCount()](#getCount--) | Obtient le nombre d'objets dans la structure CFF INDEX. | +| [getName(int index)](#getName-int-) | Obtient le nom de la police à l'index spécifié. | +| [getRawBytes()](#getRawBytes--) | Obtient tous les octets de la structure CFF INDEX. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [removeName(int index)](#removeName-int-) | Supprime le nom à l'index spécifié. | +| [set(int index, String name)](#set-int-java.lang.String-) | Spécifie le nom de police à l'index spécifié. | +| [setName(String name, int index)](#setName-java.lang.String-int-) | Définit le nom de police à l'index spécifié. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### NameIndexDataProvider() {#NameIndexDataProvider--} +``` +public NameIndexDataProvider() +``` + + +### addName(String name) {#addName-java.lang.String-} +``` +public abstract void addName(String name) +``` + + +Ajoute un nom de police à la structure Name INDEX. Utilisez cette méthode avec prudence car chaque nom de police dans la structure CFF Name INDEX doit avoir une structure DICT correspondante dans l'index Top DICT selon la spécification CFF. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### get(int index) {#get-int-} +``` +public abstract String get(int index) +``` + + +Obtient le nom de la police à l'index spécifié. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| index | int | Index de police. | + +**Returns:** +java.lang.String - Nom de police. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getCount() {#getCount--} +``` +public abstract int getCount() +``` + + +Obtient le nombre d'objets dans la structure CFF INDEX. + +**Returns:** +int +### getName(int index) {#getName-int-} +``` +public abstract String getName(int index) +``` + + +Obtient le nom de la police à l'index spécifié. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| index | int | Index de police. | + +**Returns:** +java.lang.String - Le nom de police. +### getRawBytes() {#getRawBytes--} +``` +public abstract byte[] getRawBytes() +``` + + +Obtient tous les octets de la structure CFF INDEX. + +**Returns:** +byte[] - Octets de la structure CFF INDEX +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### removeName(int index) {#removeName-int-} +``` +public abstract void removeName(int index) +``` + + +Supprime le nom à l'index spécifié. Utilisez cette méthode avec prudence car chaque nom de police dans la structure CFF Name INDEX doit avoir une structure DICT correspondante dans l'index Top DICT selon la spécification CFF. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| index | int | Index de police. | + +### set(int index, String name) {#set-int-java.lang.String-} +``` +public abstract void set(int index, String name) +``` + + +Spécifie le nom de police à l'index spécifié. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| index | int | Index de police. | +| nom | java.lang.String | Nom de police. | + +### setName(String name, int index) {#setName-java.lang.String-int-} +``` +public abstract void setName(String name, int index) +``` + + +Définit le nom de police à l'index spécifié. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | Nom de police. | +| index | int | Index de police. | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/namerecord/_index.md b/french/java/com.aspose.font/namerecord/_index.md new file mode 100644 index 0000000000..80c06b3b22 --- /dev/null +++ b/french/java/com.aspose.font/namerecord/_index.md @@ -0,0 +1,190 @@ +--- +title: "NameRecord" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente la structure NameRecord de la table de noms." +type: docs +weight: 69 +url: /fr/java/com.aspose.font/namerecord/ +--- +**Inheritance:** +java.lang.Object +``` +public class NameRecord +``` + +Représente la structure NameRecord de la table 'name' +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [NameRecord()](#NameRecord--) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getLanguageId()](#getLanguageId--) | Obtient l'identifiant de langue. | +| [getNameId()](#getNameId--) | Obtient l'identifiant de nom. | +| [getPlatformId()](#getPlatformId--) | Obtient le code d'identifiant de plateforme. | +| [getPlatformSpecificId()](#getPlatformSpecificId--) | Obtient l'identifiant d'encodage spécifique à la plateforme. | +| [getString()](#getString--) | Obtient la chaîne dans le stockage de chaînes liée à cet enregistrement de nom. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### NameRecord() {#NameRecord--} +``` +public NameRecord() +``` + + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getLanguageId() {#getLanguageId--} +``` +public int getLanguageId() +``` + + +Obtient l'identifiant de langue. + +**Returns:** +int - Identifiant de langue. +### getNameId() {#getNameId--} +``` +public int getNameId() +``` + + +Obtient l'identifiant de nom. + +**Returns:** +int - Identifiant de nom. +### getPlatformId() {#getPlatformId--} +``` +public int getPlatformId() +``` + + +Obtient le code d'identifiant de plateforme. + +**Returns:** +int - Code d'identifiant de plateforme. +### getPlatformSpecificId() {#getPlatformSpecificId--} +``` +public int getPlatformSpecificId() +``` + + +Obtient l'identifiant d'encodage spécifique à la plateforme. + +**Returns:** +int - Identifiant d'encodage spécifique à la plateforme. +### getString() {#getString--} +``` +public String getString() +``` + + +Obtient la chaîne dans le stockage de chaînes liée à cet enregistrement de nom. + +**Returns:** +java.lang.String - Chaîne dans le stockage de chaînes liée à cet enregistrement de nom. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/nametocodemap/_index.md b/french/java/com.aspose.font/nametocodemap/_index.md new file mode 100644 index 0000000000..5e4fe669d4 --- /dev/null +++ b/french/java/com.aspose.font/nametocodemap/_index.md @@ -0,0 +1,178 @@ +--- +title: "NameToCodeMap" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente la correspondance nom‑code." +type: docs +weight: 70 +url: /fr/java/com.aspose.font/nametocodemap/ +--- +**Inheritance:** +java.lang.Object +``` +public class NameToCodeMap +``` + +Représente la correspondance nom‑code. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [containsKey(String name)](#containsKey-java.lang.String-) | Renvoie vrai si la clé est déjà dans la map. | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [get(String name)](#get-java.lang.String-) | Obtient le code par nom. | +| [getClass()](#getClass--) | | +| [getKeys()](#getKeys--) | Renvoie la collection de noms de chaînes. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [size()](#size--) | Obtient le nombre de paires nom-code dans la map. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### containsKey(String name) {#containsKey-java.lang.String-} +``` +public boolean containsKey(String name) +``` + + +Renvoie vrai si la clé est déjà dans la map. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | Nom du glyphe. | + +**Returns:** +boolean - vrai ou faux. +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### get(String name) {#get-java.lang.String-} +``` +public int get(String name) +``` + + +Obtient le code par nom. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | Nom du glyphe. | + +**Returns:** +int - code du glyphe. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getKeys() {#getKeys--} +``` +public Collection getKeys() +``` + + +Renvoie la collection de noms de chaînes. + +**Returns:** +java.util.Collection - collection de noms de chaînes. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### size() {#size--} +``` +public int size() +``` + + +Obtient le nombre de paires nom-code dans la map. + +**Returns:** +int - nombre de paires nom-code dans la carte. +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/offsetslist/_index.md b/french/java/com.aspose.font/offsetslist/_index.md new file mode 100644 index 0000000000..e331401f58 --- /dev/null +++ b/french/java/com.aspose.font/offsetslist/_index.md @@ -0,0 +1,151 @@ +--- +title: "TtfLocaTable.OffsetsList" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente la liste des décalages de glyphes." +type: docs +weight: 10 +url: /fr/java/com.aspose.font/ttflocatable.offsetslist/ +--- +**Inheritance:** +java.lang.Object +``` +public static class TtfLocaTable.OffsetsList +``` + +Représente la liste des décalages de glyphes. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [get(int index)](#get-int-) | Obtient le décalage par index. | +| [getClass()](#getClass--) | | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [size()](#size--) | Obtient le nombre de décalages de glyphes. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### get(int index) {#get-int-} +``` +public long get(int index) +``` + + +Obtient le décalage par index. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| index | int | Index de décalage. | + +**Returns:** +long - Décalage du glyphe. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### size() {#size--} +``` +public int size() +``` + + +Obtient le nombre de décalages de glyphes. + +**Returns:** +int - Nombre de décalages de glyphes. +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/parsingstrictness/_index.md b/french/java/com.aspose.font/parsingstrictness/_index.md new file mode 100644 index 0000000000..b148afcd98 --- /dev/null +++ b/french/java/com.aspose.font/parsingstrictness/_index.md @@ -0,0 +1,248 @@ +--- +title: "FontEnvironment.ParsingStrictness" +second_title: "Référence API d'Aspose.Font pour Java" +description: +type: docs +weight: 10 +url: /fr/java/com.aspose.font/fontenvironment.parsingstrictness/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum FontEnvironment.ParsingStrictness extends Enum +``` +## Champs + +| Champ | Description | +| --- | --- | +| [Strict](#Strict) | Spécifie le type strict. | +| [Tolerant](#Tolerant) | Spécifie le type tolérant. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### Strict {#Strict} +``` +public static final FontEnvironment.ParsingStrictness Strict +``` + + +Spécifie le type strict. + +### Tolerant {#Tolerant} +``` +public static final FontEnvironment.ParsingStrictness Tolerant +``` + + +Spécifie le type tolérant. + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static FontEnvironment.ParsingStrictness valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[ParsingStrictness](../../com.aspose.font/parsingstrictness) +### values() {#values--} +``` +public static FontEnvironment.ParsingStrictness[] values() +``` + + + + +**Returns:** +com.aspose.font.FontEnvironment.ParsingStrictness[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/pathsegmentcollection/_index.md b/french/java/com.aspose.font/pathsegmentcollection/_index.md new file mode 100644 index 0000000000..6e363bcced --- /dev/null +++ b/french/java/com.aspose.font/pathsegmentcollection/_index.md @@ -0,0 +1,565 @@ +--- +title: "PathSegmentCollection" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente une collection de segments de chemin." +type: docs +weight: 71 +url: /fr/java/com.aspose.font/pathsegmentcollection/ +--- +**Inheritance:** +java.lang.Object, java.util.AbstractCollection, java.util.AbstractList, java.util.ArrayList +``` +public class PathSegmentCollection extends ArrayList +``` + +Représente une collection de segments de chemin. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [toArray(T[] arg0)](#-T-toArray-T---) | | +| [add(E arg0)](#add-E-) | | +| [add(int arg0, E arg1)](#add-int-E-) | | +| [addAll(int arg0, Collection arg1)](#addAll-int-java.util.Collection---extends-E--) | | +| [addAll(Collection arg0)](#addAll-java.util.Collection---extends-E--) | | +| [clear()](#clear--) | | +| [clone()](#clone--) | | +| [contains(Object arg0)](#contains-java.lang.Object-) | | +| [containsAll(Collection arg0)](#containsAll-java.util.Collection----) | | +| [ensureCapacity(int arg0)](#ensureCapacity-int-) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [forEach(Consumer arg0)](#forEach-java.util.function.Consumer---super-E--) | | +| [get(int arg0)](#get-int-) | | +| [getClass()](#getClass--) | | +| [hashCode()](#hashCode--) | | +| [indexOf(Object arg0)](#indexOf-java.lang.Object-) | | +| [isEmpty()](#isEmpty--) | | +| [iterator()](#iterator--) | | +| [lastIndexOf(Object arg0)](#lastIndexOf-java.lang.Object-) | | +| [listIterator()](#listIterator--) | | +| [listIterator(int arg0)](#listIterator-int-) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [remove(int arg0)](#remove-int-) | | +| [remove(Object arg0)](#remove-java.lang.Object-) | | +| [removeAll(Collection arg0)](#removeAll-java.util.Collection----) | | +| [removeIf(Predicate arg0)](#removeIf-java.util.function.Predicate---super-E--) | | +| [replaceAll(UnaryOperator arg0)](#replaceAll-java.util.function.UnaryOperator-E--) | | +| [retainAll(Collection arg0)](#retainAll-java.util.Collection----) | | +| [set(int arg0, E arg1)](#set-int-E-) | | +| [size()](#size--) | | +| [sort(Comparator arg0)](#sort-java.util.Comparator---super-E--) | | +| [spliterator()](#spliterator--) | | +| [subList(int arg0, int arg1)](#subList-int-int-) | | +| [toArray()](#toArray--) | | +| [toString()](#toString--) | | +| [trimToSize()](#trimToSize--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### toArray(T[] arg0) {#-T-toArray-T---} +``` +public T[] toArray(T[] arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | T[] | | + +**Returns:** +T[] +### add(E arg0) {#add-E-} +``` +public boolean add(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +boolean +### add(int arg0, E arg1) {#add-int-E-} +``` +public void add(int arg0, E arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | E | | + +### addAll(int arg0, Collection arg1) {#addAll-int-java.util.Collection---extends-E--} +``` +public boolean addAll(int arg0, Collection arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | java.util.Collection | | + +**Returns:** +boolean +### addAll(Collection arg0) {#addAll-java.util.Collection---extends-E--} +``` +public boolean addAll(Collection arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.util.Collection | | + +**Returns:** +boolean +### clear() {#clear--} +``` +public void clear() +``` + + + + +### clone() {#clone--} +``` +public Object clone() +``` + + + + +**Returns:** +java.lang.Object +### contains(Object arg0) {#contains-java.lang.Object-} +``` +public boolean contains(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### containsAll(Collection arg0) {#containsAll-java.util.Collection----} +``` +public boolean containsAll(Collection arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.util.Collection | | + +**Returns:** +boolean +### ensureCapacity(int arg0) {#ensureCapacity-int-} +``` +public void ensureCapacity(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### forEach(Consumer arg0) {#forEach-java.util.function.Consumer---super-E--} +``` +public void forEach(Consumer arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.util.function.Consumer | | + +### get(int arg0) {#get-int-} +``` +public E get(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +E +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public int hashCode() +``` + + + + +**Returns:** +int +### indexOf(Object arg0) {#indexOf-java.lang.Object-} +``` +public int indexOf(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +int +### isEmpty() {#isEmpty--} +``` +public boolean isEmpty() +``` + + + + +**Returns:** +boolean +### iterator() {#iterator--} +``` +public Iterator iterator() +``` + + + + +**Returns:** +java.util.Iterator +### lastIndexOf(Object arg0) {#lastIndexOf-java.lang.Object-} +``` +public int lastIndexOf(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +int +### listIterator() {#listIterator--} +``` +public ListIterator listIterator() +``` + + + + +**Returns:** +java.util.ListIterator +### listIterator(int arg0) {#listIterator-int-} +``` +public ListIterator listIterator(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +java.util.ListIterator +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### remove(int arg0) {#remove-int-} +``` +public E remove(int arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | + +**Returns:** +E +### remove(Object arg0) {#remove-java.lang.Object-} +``` +public boolean remove(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### removeAll(Collection arg0) {#removeAll-java.util.Collection----} +``` +public boolean removeAll(Collection arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.util.Collection | | + +**Returns:** +boolean +### removeIf(Predicate arg0) {#removeIf-java.util.function.Predicate---super-E--} +``` +public boolean removeIf(Predicate arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.util.function.Predicate | | + +**Returns:** +boolean +### replaceAll(UnaryOperator arg0) {#replaceAll-java.util.function.UnaryOperator-E--} +``` +public void replaceAll(UnaryOperator arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.util.function.UnaryOperator | | + +### retainAll(Collection arg0) {#retainAll-java.util.Collection----} +``` +public boolean retainAll(Collection arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.util.Collection | | + +**Returns:** +boolean +### set(int arg0, E arg1) {#set-int-E-} +``` +public E set(int arg0, E arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | E | | + +**Returns:** +E +### size() {#size--} +``` +public int size() +``` + + + + +**Returns:** +int +### sort(Comparator arg0) {#sort-java.util.Comparator---super-E--} +``` +public void sort(Comparator arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.util.Comparator | | + +### spliterator() {#spliterator--} +``` +public Spliterator spliterator() +``` + + + + +**Returns:** +java.util.Spliterator +### subList(int arg0, int arg1) {#subList-int-int-} +``` +public List subList(int arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | int | | +| arg1 | int | | + +**Returns:** +java.util.List +### toArray() {#toArray--} +``` +public Object[] toArray() +``` + + + + +**Returns:** +java.lang.Object[] +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### trimToSize() {#trimToSize--} +``` +public void trimToSize() +``` + + + + +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/platformid/_index.md b/french/java/com.aspose.font/platformid/_index.md new file mode 100644 index 0000000000..3a6ba598a3 --- /dev/null +++ b/french/java/com.aspose.font/platformid/_index.md @@ -0,0 +1,268 @@ +--- +title: "PlatformId" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente l'énumération PlatformId." +type: docs +weight: 141 +url: /fr/java/com.aspose.font/platformid/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum PlatformId extends Enum +``` + +Représente l'énumération PlatformId. +## Champs + +| Champ | Description | +| --- | --- | +| [ISO](#ISO) | Valeur2 spécification Apple : (réservé ; ne pas utiliser) spécification MS : encodage ISO. | +| [Macintosh](#Macintosh) | Valeur 1 code du gestionnaire de scripts Macintosh. | +| [Microsoft](#Microsoft) | Valeur 3 encodage Microsoft. | +| [Unicode](#Unicode) | Valeur 0 Unicode | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### ISO {#ISO} +``` +public static final PlatformId ISO +``` + + +Valeur2 spécification Apple : (réservé ; ne pas utiliser) spécification MS : encodage ISO. Notez que l’ID de plateforme 2 (ISO) a été déprécié depuis la spécification OpenType v1.3. Il était destiné à représenter ISO/IEC 10646, par opposition à Unicode ; les deux normes ont des attributions de codes de caractères identiques. + +### Macintosh {#Macintosh} +``` +public static final PlatformId Macintosh +``` + + +Valeur 1 code du gestionnaire de scripts Macintosh. + +### Microsoft {#Microsoft} +``` +public static final PlatformId Microsoft +``` + + +Valeur 3 encodage Microsoft. + +### Unicode {#Unicode} +``` +public static final PlatformId Unicode +``` + + +Valeur 0 Unicode + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static PlatformId valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[PlatformId](../../com.aspose.font/platformid) +### values() {#values--} +``` +public static PlatformId[] values() +``` + + + + +**Returns:** +com.aspose.font.PlatformId[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/renderingutils/_index.md b/french/java/com.aspose.font/renderingutils/_index.md new file mode 100644 index 0000000000..7f863318bc --- /dev/null +++ b/french/java/com.aspose.font/renderingutils/_index.md @@ -0,0 +1,202 @@ +--- +title: "RenderingUtils" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Fournit des méthodes utilitaires pour le rendu." +type: docs +weight: 72 +url: /fr/java/com.aspose.font/renderingutils/ +--- +**Inheritance:** +java.lang.Object +``` +public class RenderingUtils +``` + +Fournit des méthodes utilitaires pour le rendu. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [drawText(Font font, GlyphId[] glyphIds, double fontSize)](#drawText-com.aspose.font.Font-com.aspose.font.GlyphId---double-) | Rendu du texte dans un BitMap. | +| [drawText(Font font, GlyphId[] glyphIds, double fontSize, RenderingUtils.LineSpacingType lineSpacingType, int lineSpacingValue, int maxWidth)](#drawText-com.aspose.font.Font-com.aspose.font.GlyphId---double-com.aspose.font.RenderingUtils.LineSpacingType-int-int-) | Rendu du texte dans un BitMap. | +| [drawText(Font font, String text, double fontSize)](#drawText-com.aspose.font.Font-java.lang.String-double-) | Rendu du texte dans un BitMap. | +| [drawText(Font font, String text, double fontSize, RenderingUtils.LineSpacingType lineSpacingType, int lineSpacingValue, int maxWidth)](#drawText-com.aspose.font.Font-java.lang.String-double-com.aspose.font.RenderingUtils.LineSpacingType-int-int-) | Rendu du texte dans un BitMap. | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### drawText(Font font, GlyphId[] glyphIds, double fontSize) {#drawText-com.aspose.font.Font-com.aspose.font.GlyphId---double-} +``` +public static InputStream drawText(Font font, GlyphId[] glyphIds, double fontSize) +``` + + +Rendu du texte dans un BitMap. Retourne le résultat au format PNG sous forme de flux d'octets + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| font | [Font](../../com.aspose.font/font) | Police | +| glyphIds | [GlyphId\[\]](../../com.aspose.font/glyphid) | Texte représenté comme un tableau d'identifiants de glyphes | +| fontSize | double | Taille de la police | + +**Returns:** +java.io.InputStream - Image au format PNG sous forme de flux d'octets +### drawText(Font font, GlyphId[] glyphIds, double fontSize, RenderingUtils.LineSpacingType lineSpacingType, int lineSpacingValue, int maxWidth) {#drawText-com.aspose.font.Font-com.aspose.font.GlyphId---double-com.aspose.font.RenderingUtils.LineSpacingType-int-int-} +``` +public static InputStream drawText(Font font, GlyphId[] glyphIds, double fontSize, RenderingUtils.LineSpacingType lineSpacingType, int lineSpacingValue, int maxWidth) +``` + + +Rendu du texte dans un BitMap. Retourne le résultat au format PNG sous forme de flux d'octets + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| font | [Font](../../com.aspose.font/font) | Police | +| glyphIds | [GlyphId\[\]](../../com.aspose.font/glyphid) | Texte représenté comme un tableau d'identifiants de glyphes | +| fontSize | double | Taille de la police | +| lineSpacingType | [LineSpacingType](../../com.aspose.font/linespacingtype) | Type d'interligne. Nombre de pixels ou pourcentage de la hauteur de la police | +| lineSpacingValue | int | Valeur de l'interligne | +| maxWidth | int | Largeur maximale en pixels pour l'image | + +**Returns:** +java.io.InputStream - Image au format PNG sous forme de flux d'octets +### drawText(Font font, String text, double fontSize) {#drawText-com.aspose.font.Font-java.lang.String-double-} +``` +public static InputStream drawText(Font font, String text, double fontSize) +``` + + +Rendu du texte dans un BitMap. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| font | [Font](../../com.aspose.font/font) | La police. | +| text | java.lang.String | Le texte. | +| fontSize | double | La taille de la police. | + +**Returns:** +java.io.InputStream - L'image PNG contenant le texte sous forme de flux d'octets. +### drawText(Font font, String text, double fontSize, RenderingUtils.LineSpacingType lineSpacingType, int lineSpacingValue, int maxWidth) {#drawText-com.aspose.font.Font-java.lang.String-double-com.aspose.font.RenderingUtils.LineSpacingType-int-int-} +``` +public static InputStream drawText(Font font, String text, double fontSize, RenderingUtils.LineSpacingType lineSpacingType, int lineSpacingValue, int maxWidth) +``` + + +Rendu du texte dans un BitMap. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| font | [Font](../../com.aspose.font/font) | La police. | +| text | java.lang.String | Le texte. | +| fontSize | double | La taille de la police. | +| lineSpacingType | [LineSpacingType](../../com.aspose.font/linespacingtype) | Le type d'interligne. Nombre de pixels ou pourcentage de la hauteur de la police. | +| lineSpacingValue | int | La valeur de l'interligne. | +| maxWidth | int | La largeur maximale en pixels pour l'image résultante. | + +**Returns:** +java.io.InputStream - L'image PNG contenant le texte sous forme de flux d'octets. +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/segmentpath/_index.md b/french/java/com.aspose.font/segmentpath/_index.md new file mode 100644 index 0000000000..ce5f188a22 --- /dev/null +++ b/french/java/com.aspose.font/segmentpath/_index.md @@ -0,0 +1,149 @@ +--- +title: "SegmentPath" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente le chemin de rendu." +type: docs +weight: 73 +url: /fr/java/com.aspose.font/segmentpath/ +--- +**Inheritance:** +java.lang.Object + +**All Implemented Interfaces:** +java.lang.Cloneable +``` +public class SegmentPath implements Cloneable +``` + +Représente le chemin de rendu. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [clone()](#clone--) | Clone le Path. | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getSegments()](#getSegments--) | Obtient les segments de chemin. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### clone() {#clone--} +``` +public Object clone() +``` + + +Clone le Path. + +**Returns:** +java.lang.Object - Copie du chemin. +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getSegments() {#getSegments--} +``` +public PathSegmentCollection getSegments() +``` + + +Obtient les segments de chemin. + +**Returns:** +[PathSegmentCollection](../../com.aspose.font/pathsegmentcollection) - Path segments. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/streamsource/_index.md b/french/java/com.aspose.font/streamsource/_index.md new file mode 100644 index 0000000000..d84178b98a --- /dev/null +++ b/french/java/com.aspose.font/streamsource/_index.md @@ -0,0 +1,195 @@ +--- +title: "StreamSource" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Définit une méthode pour obtenir un flux de fichier lorsqu'il est nécessaire." +type: docs +weight: 74 +url: /fr/java/com.aspose.font/streamsource/ +--- +**Inheritance:** +java.lang.Object +``` +public abstract class StreamSource +``` + +Définit une méthode pour obtenir un flux de fichier lorsqu'il est nécessaire. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [StreamSource()](#StreamSource--) | Initialise l'instance du flux source. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [deepClone()](#deepClone--) | Clone l'objet du flux source. | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getFontStream()](#getFontStream--) | Renvoie le flux Font. | +| [getOffset()](#getOffset--) | Obtient le décalage à l'intérieur de la source. | +| [hashCode()](#hashCode--) | | +| [mustCloseAfterUse()](#mustCloseAfterUse--) | Les classes dérivées peuvent empêcher la fermeture du flux. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setOffset(long value)](#setOffset-long-) | Définit le décalage à l'intérieur de la source. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### StreamSource() {#StreamSource--} +``` +public StreamSource() +``` + + +Initialise l'instance du flux source. + +### deepClone() {#deepClone--} +``` +public abstract Object deepClone() +``` + + +Clone l'objet du flux source. + +**Returns:** +java.lang.Object - Copie de l'objet du flux source. +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getFontStream() {#getFontStream--} +``` +public abstract InputStream getFontStream() +``` + + +Renvoie le flux Font. + +**Returns:** +java.io.InputStream - Flux Font. +### getOffset() {#getOffset--} +``` +public long getOffset() +``` + + +Obtient le décalage à l'intérieur de la source. + +**Returns:** +long - Décalage à l'intérieur de la source. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### mustCloseAfterUse() {#mustCloseAfterUse--} +``` +public boolean mustCloseAfterUse() +``` + + +Les classes dérivées peuvent empêcher la fermeture du flux. Renvoie true si le flux source souhaite que le flux soit fermé après utilisation. Sinon renvoie false. + +**Returns:** +boolean - True si le flux source souhaite que le flux soit fermé après utilisation, sinon false. +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setOffset(long value) {#setOffset-long-} +``` +public void setOffset(long value) +``` + + +Définit le décalage à l'intérieur de la source. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | long | Décalage à l'intérieur de la source. | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/stringindexdataprovider/_index.md b/french/java/com.aspose.font/stringindexdataprovider/_index.md new file mode 100644 index 0000000000..b69b9c9fe9 --- /dev/null +++ b/french/java/com.aspose.font/stringindexdataprovider/_index.md @@ -0,0 +1,250 @@ +--- +title: "StringIndexDataProvider" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Déclare la fonctionnalité d'accès à la structure CFF String INDEX." +type: docs +weight: 75 +url: /fr/java/com.aspose.font/stringindexdataprovider/ +--- +**Inheritance:** +java.lang.Object + +**All Implemented Interfaces:** +[com.aspose.font.ICffIndexDataProvider](../../com.aspose.font/icffindexdataprovider) +``` +public abstract class StringIndexDataProvider implements ICffIndexDataProvider +``` + +Déclare la fonctionnalité d'accès à la structure CFF String INDEX. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [StringIndexDataProvider()](#StringIndexDataProvider--) | | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [addString(String value)](#addString-java.lang.String-) | Ajoute une chaîne dans la structure CFF String INDEX. | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [get(int index)](#get-int-) | Obtient/definit la chaîne à l'index spécifié. | +| [getClass()](#getClass--) | | +| [getCount()](#getCount--) | Le nombre d'objets dans la structure CFF INDEX. | +| [getRawBytes()](#getRawBytes--) | Obtient tous les octets de la structure CFF INDEX. | +| [getString(int index)](#getString-int-) | Obtient la chaîne à l'index spécifié depuis la structure CFF String INDEX. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [removeString(int index)](#removeString-int-) | Supprime la chaîne de la structure CFF String Index à l'index spécifié. | +| [set(int index, String value)](#set-int-java.lang.String-) | | +| [setString(String value, int index)](#setString-java.lang.String-int-) | Définit la chaîne dans la structure CFF String Index à l'index spécifié. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### StringIndexDataProvider() {#StringIndexDataProvider--} +``` +public StringIndexDataProvider() +``` + + +### addString(String value) {#addString-java.lang.String-} +``` +public abstract void addString(String value) +``` + + +Ajoute une chaîne dans la structure CFF String INDEX. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | Valeur de chaîne. | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### get(int index) {#get-int-} +``` +public abstract String get(int index) +``` + + +Obtient/definit la chaîne à l'index spécifié. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| index | int | Indice de chaîne, l'indice représente un numéro ordinal dans la structure CFF INDEX, pas SID. | + +**Returns:** +java.lang.String - Chaîne. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getCount() {#getCount--} +``` +public abstract int getCount() +``` + + +Le nombre d'objets dans la structure CFF INDEX. + +**Returns:** +int +### getRawBytes() {#getRawBytes--} +``` +public abstract byte[] getRawBytes() +``` + + +Obtient tous les octets de la structure CFF INDEX. + +**Returns:** +byte[] - Octets de la structure CFF INDEX +### getString(int index) {#getString-int-} +``` +public abstract String getString(int index) +``` + + +Obtient la chaîne à l'index spécifié depuis la structure CFF String INDEX. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| index | int | Indice de chaîne, l'indice représente un numéro ordinal dans la structure CFF INDEX, pas SID. | + +**Returns:** +java.lang.String - Chaîne. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### removeString(int index) {#removeString-int-} +``` +public abstract void removeString(int index) +``` + + +Supprime la chaîne de la structure CFF String Index à l'index spécifié. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| index | int | Indice de chaîne, l'indice représente un numéro ordinal dans la structure CFF INDEX, pas SID. | + +### set(int index, String value) {#set-int-java.lang.String-} +``` +public abstract void set(int index, String value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| index | int | | +| valeur | java.lang.String | | + +### setString(String value, int index) {#setString-java.lang.String-int-} +``` +public abstract void setString(String value, int index) +``` + + +Définit la chaîne dans la structure CFF String Index à l'index spécifié. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | Valeur de chaîne. | +| index | int | Indice de chaîne, l'indice représente un numéro ordinal dans la structure CFF INDEX, pas SID. | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/svgconversionexception/_index.md b/french/java/com.aspose.font/svgconversionexception/_index.md new file mode 100644 index 0000000000..02ef18cf4f --- /dev/null +++ b/french/java/com.aspose.font/svgconversionexception/_index.md @@ -0,0 +1,313 @@ +--- +title: "SvgConversionException" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente l'exception de conversion de police pour le format SVG." +type: docs +weight: 76 +url: /fr/java/com.aspose.font/svgconversionexception/ +--- +**Inheritance:** +java.lang.Object, java.lang.Throwable, java.lang.Exception, java.lang.RuntimeException, java.lang.IllegalStateException, [com.aspose.font.FontException](../../com.aspose.font/fontexception) +``` +public class SvgConversionException extends FontException +``` + +Représente une exception de conversion de police pour le format SVG. L'exception peut être levée en cas d'erreurs lors du processus de conversion de la police. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [SvgConversionException()](#SvgConversionException--) | Initialise un nouvel objet SvgConversionException. | +| [SvgConversionException(String message)](#SvgConversionException-java.lang.String-) | Initialise un nouvel objet SvgConversionException. | +| [SvgConversionException(String message, RuntimeException innerException)](#SvgConversionException-java.lang.String-java.lang.RuntimeException-) | Initialise un nouvel objet SvgConversionException. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [addSuppressed(Throwable arg0)](#addSuppressed-java.lang.Throwable-) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [fillInStackTrace()](#fillInStackTrace--) | | +| [getCause()](#getCause--) | | +| [getClass()](#getClass--) | | +| [getLocalizedMessage()](#getLocalizedMessage--) | | +| [getMessage()](#getMessage--) | | +| [getStackTrace()](#getStackTrace--) | | +| [getSuppressed()](#getSuppressed--) | | +| [hashCode()](#hashCode--) | | +| [initCause(Throwable arg0)](#initCause-java.lang.Throwable-) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [printStackTrace()](#printStackTrace--) | | +| [printStackTrace(PrintStream arg0)](#printStackTrace-java.io.PrintStream-) | | +| [printStackTrace(PrintWriter arg0)](#printStackTrace-java.io.PrintWriter-) | | +| [setStackTrace(StackTraceElement[] arg0)](#setStackTrace-java.lang.StackTraceElement---) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### SvgConversionException() {#SvgConversionException--} +``` +public SvgConversionException() +``` + + +Initialise un nouvel objet SvgConversionException. + +### SvgConversionException(String message) {#SvgConversionException-java.lang.String-} +``` +public SvgConversionException(String message) +``` + + +Initialise un nouvel objet SvgConversionException. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| message | java.lang.String | Un message qui décrit l'erreur. | + +### SvgConversionException(String message, RuntimeException innerException) {#SvgConversionException-java.lang.String-java.lang.RuntimeException-} +``` +public SvgConversionException(String message, RuntimeException innerException) +``` + + +Initialise un nouvel objet SvgConversionException. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| message | java.lang.String | Un message qui décrit l'erreur. | +| innerException | java.lang.RuntimeException | L'exception qui est la cause de l'exception actuelle. | + +### addSuppressed(Throwable arg0) {#addSuppressed-java.lang.Throwable-} +``` +public final synchronized void addSuppressed(Throwable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Throwable | | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### fillInStackTrace() {#fillInStackTrace--} +``` +public synchronized Throwable fillInStackTrace() +``` + + + + +**Returns:** +java.lang.Throwable +### getCause() {#getCause--} +``` +public synchronized Throwable getCause() +``` + + + + +**Returns:** +java.lang.Throwable +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getLocalizedMessage() {#getLocalizedMessage--} +``` +public String getLocalizedMessage() +``` + + + + +**Returns:** +java.lang.String +### getMessage() {#getMessage--} +``` +public String getMessage() +``` + + + + +**Returns:** +java.lang.String +### getStackTrace() {#getStackTrace--} +``` +public StackTraceElement[] getStackTrace() +``` + + + + +**Returns:** +java.lang.StackTraceElement[] +### getSuppressed() {#getSuppressed--} +``` +public final synchronized Throwable[] getSuppressed() +``` + + + + +**Returns:** +java.lang.Throwable[] +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### initCause(Throwable arg0) {#initCause-java.lang.Throwable-} +``` +public synchronized Throwable initCause(Throwable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Throwable | | + +**Returns:** +java.lang.Throwable +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### printStackTrace() {#printStackTrace--} +``` +public void printStackTrace() +``` + + + + +### printStackTrace(PrintStream arg0) {#printStackTrace-java.io.PrintStream-} +``` +public void printStackTrace(PrintStream arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.io.PrintStream | | + +### printStackTrace(PrintWriter arg0) {#printStackTrace-java.io.PrintWriter-} +``` +public void printStackTrace(PrintWriter arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.io.PrintWriter | | + +### setStackTrace(StackTraceElement[] arg0) {#setStackTrace-java.lang.StackTraceElement---} +``` +public void setStackTrace(StackTraceElement[] arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.StackTraceElement[] | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/topdictdataprovider/_index.md b/french/java/com.aspose.font/topdictdataprovider/_index.md new file mode 100644 index 0000000000..f00715cfc0 --- /dev/null +++ b/french/java/com.aspose.font/topdictdataprovider/_index.md @@ -0,0 +1,968 @@ +--- +title: "TopDictDataProvider" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Déclare la fonctionnalité de lecture/mise à jour de la structure CFF Top DICT." +type: docs +weight: 77 +url: /fr/java/com.aspose.font/topdictdataprovider/ +--- +**Inheritance:** +java.lang.Object +``` +public abstract class TopDictDataProvider +``` + +Déclare la fonctionnalité de lecture/mise à jour de la structure CFF Top DICT. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getBaseFontName()](#getBaseFontName--) | | +| [getCidCount()](#getCidCount--) | | +| [getCidFontRevision()](#getCidFontRevision--) | | +| [getCidFontType()](#getCidFontType--) | | +| [getCidFontVersion()](#getCidFontVersion--) | | +| [getClass()](#getClass--) | | +| [getCopyright()](#getCopyright--) | | +| [getFamilyName()](#getFamilyName--) | | +| [getFontBBox()](#getFontBBox--) | | +| [getFontMatrix()](#getFontMatrix--) | | +| [getFontName()](#getFontName--) | | +| [getFullName()](#getFullName--) | | +| [getItalicAngle()](#getItalicAngle--) | | +| [getNotice()](#getNotice--) | | +| [getPaintType()](#getPaintType--) | | +| [getPostScript()](#getPostScript--) | | +| [getPrivateDictProvider()](#getPrivateDictProvider--) | | +| [getRos(int[] registrySid, int[] orderingSid, int[] supplement)](#getRos-int---int---int---) | | +| [getRos(String[] registry, String[] ordering, int[] supplement)](#getRos-java.lang.String---java.lang.String---int---) | | +| [getStrokeWidth()](#getStrokeWidth--) | | +| [getSyntheticBase()](#getSyntheticBase--) | | +| [getUidBase()](#getUidBase--) | | +| [getUnderlinePosition()](#getUnderlinePosition--) | | +| [getUnderlineThickness()](#getUnderlineThickness--) | | +| [getUniqueId()](#getUniqueId--) | | +| [getVersion()](#getVersion--) | | +| [getWeight()](#getWeight--) | | +| [getXuid()](#getXuid--) | | +| [hashCode()](#hashCode--) | | +| [isFixedPitch()](#isFixedPitch--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setBaseFontName(String value)](#setBaseFontName-java.lang.String-) | | +| [setBaseFontNameSid(int sid)](#setBaseFontNameSid-int-) | | +| [setCidCount(int value)](#setCidCount-int-) | | +| [setCidFontRevision(int value)](#setCidFontRevision-int-) | | +| [setCidFontType(int value)](#setCidFontType-int-) | | +| [setCidFontVersion(int value)](#setCidFontVersion-int-) | | +| [setCopyright(String value)](#setCopyright-java.lang.String-) | | +| [setCopyrightSid(int sid)](#setCopyrightSid-int-) | | +| [setFamilyName(String value)](#setFamilyName-java.lang.String-) | | +| [setFamilyNameSid(int sid)](#setFamilyNameSid-int-) | | +| [setFixedPitch(boolean value)](#setFixedPitch-boolean-) | | +| [setFontBBox(FontBBox value)](#setFontBBox-com.aspose.font.FontBBox-) | | +| [setFontMatrix(TransformationMatrix value)](#setFontMatrix-com.aspose.font.TransformationMatrix-) | | +| [setFontName(String value)](#setFontName-java.lang.String-) | | +| [setFontNameSid(int sid)](#setFontNameSid-int-) | | +| [setFullName(String value)](#setFullName-java.lang.String-) | | +| [setFullNameSid(int sid)](#setFullNameSid-int-) | | +| [setItalicAngle(int value)](#setItalicAngle-int-) | | +| [setNotice(String value)](#setNotice-java.lang.String-) | | +| [setNoticeSid(int sid)](#setNoticeSid-int-) | | +| [setPaintType(int value)](#setPaintType-int-) | | +| [setPostScript(String value)](#setPostScript-java.lang.String-) | | +| [setPostScriptSid(int sid)](#setPostScriptSid-int-) | | +| [setRos(int registry, int ordering, int supplement)](#setRos-int-int-int-) | | +| [setRos(String registry, String ordering, int supplement)](#setRos-java.lang.String-java.lang.String-int-) | | +| [setStrokeWidth(int value)](#setStrokeWidth-int-) | | +| [setSyntheticBase(int value)](#setSyntheticBase-int-) | | +| [setUidBase(int value)](#setUidBase-int-) | | +| [setUnderlinePosition(int value)](#setUnderlinePosition-int-) | | +| [setUnderlineThickness(int value)](#setUnderlineThickness-int-) | | +| [setUniqueId(int value)](#setUniqueId-int-) | | +| [setVersion(String value)](#setVersion-java.lang.String-) | | +| [setVersionSid(int sid)](#setVersionSid-int-) | | +| [setWeight(String value)](#setWeight-java.lang.String-) | | +| [setWeightSid(int sid)](#setWeightSid-int-) | | +| [setXuid(double[] value)](#setXuid-double---) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getBaseFontName() {#getBaseFontName--} +``` +public String getBaseFontName() +``` + + + + +**Returns:** +java.lang.String +### getCidCount() {#getCidCount--} +``` +public int getCidCount() +``` + + + + +**Returns:** +int +### getCidFontRevision() {#getCidFontRevision--} +``` +public int getCidFontRevision() +``` + + + + +**Returns:** +int +### getCidFontType() {#getCidFontType--} +``` +public int getCidFontType() +``` + + + + +**Returns:** +int +### getCidFontVersion() {#getCidFontVersion--} +``` +public int getCidFontVersion() +``` + + + + +**Returns:** +int +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getCopyright() {#getCopyright--} +``` +public String getCopyright() +``` + + + + +**Returns:** +java.lang.String +### getFamilyName() {#getFamilyName--} +``` +public String getFamilyName() +``` + + + + +**Returns:** +java.lang.String +### getFontBBox() {#getFontBBox--} +``` +public FontBBox getFontBBox() +``` + + + + +**Returns:** +[FontBBox](../../com.aspose.font/fontbbox) +### getFontMatrix() {#getFontMatrix--} +``` +public TransformationMatrix getFontMatrix() +``` + + + + +**Returns:** +[TransformationMatrix](../../com.aspose.font/transformationmatrix) +### getFontName() {#getFontName--} +``` +public String getFontName() +``` + + + + +**Returns:** +java.lang.String +### getFullName() {#getFullName--} +``` +public String getFullName() +``` + + + + +**Returns:** +java.lang.String +### getItalicAngle() {#getItalicAngle--} +``` +public int getItalicAngle() +``` + + + + +**Returns:** +int +### getNotice() {#getNotice--} +``` +public String getNotice() +``` + + + + +**Returns:** +java.lang.String +### getPaintType() {#getPaintType--} +``` +public int getPaintType() +``` + + + + +**Returns:** +int +### getPostScript() {#getPostScript--} +``` +public String getPostScript() +``` + + + + +**Returns:** +java.lang.String +### getPrivateDictProvider() {#getPrivateDictProvider--} +``` +public PrivateDictDataProvider getPrivateDictProvider() +``` + + + + +**Returns:** +com.aspose.font.PrivateDictDataProvider +### getRos(int[] registrySid, int[] orderingSid, int[] supplement) {#getRos-int---int---int---} +``` +public void getRos(int[] registrySid, int[] orderingSid, int[] supplement) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| registrySid | int[] | | +| orderingSid | int[] | | +| supplement | int[] | | + +### getRos(String[] registry, String[] ordering, int[] supplement) {#getRos-java.lang.String---java.lang.String---int---} +``` +public void getRos(String[] registry, String[] ordering, int[] supplement) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| registry | java.lang.String[] | | +| ordering | java.lang.String[] | | +| supplement | int[] | | + +### getStrokeWidth() {#getStrokeWidth--} +``` +public int getStrokeWidth() +``` + + + + +**Returns:** +int +### getSyntheticBase() {#getSyntheticBase--} +``` +public int getSyntheticBase() +``` + + + + +**Returns:** +int +### getUidBase() {#getUidBase--} +``` +public int getUidBase() +``` + + + + +**Returns:** +int +### getUnderlinePosition() {#getUnderlinePosition--} +``` +public int getUnderlinePosition() +``` + + + + +**Returns:** +int +### getUnderlineThickness() {#getUnderlineThickness--} +``` +public int getUnderlineThickness() +``` + + + + +**Returns:** +int +### getUniqueId() {#getUniqueId--} +``` +public int getUniqueId() +``` + + + + +**Returns:** +int +### getVersion() {#getVersion--} +``` +public String getVersion() +``` + + + + +**Returns:** +java.lang.String +### getWeight() {#getWeight--} +``` +public String getWeight() +``` + + + + +**Returns:** +java.lang.String +### getXuid() {#getXuid--} +``` +public double[] getXuid() +``` + + + + +**Returns:** +double[] +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### isFixedPitch() {#isFixedPitch--} +``` +public boolean isFixedPitch() +``` + + + + +**Returns:** +boolean +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setBaseFontName(String value) {#setBaseFontName-java.lang.String-} +``` +public int setBaseFontName(String value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +**Returns:** +int +### setBaseFontNameSid(int sid) {#setBaseFontNameSid-int-} +``` +public void setBaseFontNameSid(int sid) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| sid | int | | + +### setCidCount(int value) {#setCidCount-int-} +``` +public void setCidCount(int value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setCidFontRevision(int value) {#setCidFontRevision-int-} +``` +public void setCidFontRevision(int value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setCidFontType(int value) {#setCidFontType-int-} +``` +public void setCidFontType(int value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setCidFontVersion(int value) {#setCidFontVersion-int-} +``` +public void setCidFontVersion(int value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setCopyright(String value) {#setCopyright-java.lang.String-} +``` +public int setCopyright(String value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +**Returns:** +int +### setCopyrightSid(int sid) {#setCopyrightSid-int-} +``` +public void setCopyrightSid(int sid) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| sid | int | | + +### setFamilyName(String value) {#setFamilyName-java.lang.String-} +``` +public int setFamilyName(String value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +**Returns:** +int +### setFamilyNameSid(int sid) {#setFamilyNameSid-int-} +``` +public void setFamilyNameSid(int sid) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| sid | int | | + +### setFixedPitch(boolean value) {#setFixedPitch-boolean-} +``` +public void setFixedPitch(boolean value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | boolean | | + +### setFontBBox(FontBBox value) {#setFontBBox-com.aspose.font.FontBBox-} +``` +public void setFontBBox(FontBBox value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [FontBBox](../../com.aspose.font/fontbbox) | | + +### setFontMatrix(TransformationMatrix value) {#setFontMatrix-com.aspose.font.TransformationMatrix-} +``` +public void setFontMatrix(TransformationMatrix value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| value | [TransformationMatrix](../../com.aspose.font/transformationmatrix) | | + +### setFontName(String value) {#setFontName-java.lang.String-} +``` +public int setFontName(String value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +**Returns:** +int +### setFontNameSid(int sid) {#setFontNameSid-int-} +``` +public void setFontNameSid(int sid) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| sid | int | | + +### setFullName(String value) {#setFullName-java.lang.String-} +``` +public int setFullName(String value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +**Returns:** +int +### setFullNameSid(int sid) {#setFullNameSid-int-} +``` +public void setFullNameSid(int sid) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| sid | int | | + +### setItalicAngle(int value) {#setItalicAngle-int-} +``` +public void setItalicAngle(int value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setNotice(String value) {#setNotice-java.lang.String-} +``` +public int setNotice(String value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +**Returns:** +int +### setNoticeSid(int sid) {#setNoticeSid-int-} +``` +public void setNoticeSid(int sid) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| sid | int | | + +### setPaintType(int value) {#setPaintType-int-} +``` +public void setPaintType(int value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setPostScript(String value) {#setPostScript-java.lang.String-} +``` +public int setPostScript(String value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +**Returns:** +int +### setPostScriptSid(int sid) {#setPostScriptSid-int-} +``` +public void setPostScriptSid(int sid) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| sid | int | | + +### setRos(int registry, int ordering, int supplement) {#setRos-int-int-int-} +``` +public void setRos(int registry, int ordering, int supplement) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| registry | int | | +| ordering | int | | +| supplement | int | | + +### setRos(String registry, String ordering, int supplement) {#setRos-java.lang.String-java.lang.String-int-} +``` +public void setRos(String registry, String ordering, int supplement) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| registry | java.lang.String | | +| ordering | java.lang.String | | +| supplement | int | | + +### setStrokeWidth(int value) {#setStrokeWidth-int-} +``` +public void setStrokeWidth(int value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setSyntheticBase(int value) {#setSyntheticBase-int-} +``` +public void setSyntheticBase(int value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setUidBase(int value) {#setUidBase-int-} +``` +public void setUidBase(int value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setUnderlinePosition(int value) {#setUnderlinePosition-int-} +``` +public void setUnderlinePosition(int value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setUnderlineThickness(int value) {#setUnderlineThickness-int-} +``` +public void setUnderlineThickness(int value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setUniqueId(int value) {#setUniqueId-int-} +``` +public void setUniqueId(int value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | | + +### setVersion(String value) {#setVersion-java.lang.String-} +``` +public int setVersion(String value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +**Returns:** +int +### setVersionSid(int sid) {#setVersionSid-int-} +``` +public void setVersionSid(int sid) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| sid | int | | + +### setWeight(String value) {#setWeight-java.lang.String-} +``` +public int setWeight(String value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | | + +**Returns:** +int +### setWeightSid(int sid) {#setWeightSid-int-} +``` +public void setWeightSid(int sid) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| sid | int | | + +### setXuid(double[] value) {#setXuid-double---} +``` +public void setXuid(double[] value) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | double[] | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/transformationmatrix/_index.md b/french/java/com.aspose.font/transformationmatrix/_index.md new file mode 100644 index 0000000000..47aa209bbd --- /dev/null +++ b/french/java/com.aspose.font/transformationmatrix/_index.md @@ -0,0 +1,412 @@ +--- +title: "TransformationMatrix" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente une matrice 3x3 A B 0 C D 0 TX TY 1 ." +type: docs +weight: 78 +url: /fr/java/com.aspose.font/transformationmatrix/ +--- +**Inheritance:** +java.lang.Object +``` +public class TransformationMatrix +``` + +Représente une matrice 3x3 | A B 0 | | C D 0 | | TX TY 1 |. Transforme les coordonnées de la manière suivante : x1 = A\*x + C\*y + TX y1 = B\*x + D\*y + TY. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [TransformationMatrix()](#TransformationMatrix--) | Crée une matrice standard 1 à 1 : [ A B C D TX TY ] = [ 1, 0, 0, 1, 0, 0] | +| [TransformationMatrix(double[] matrixArray)](#TransformationMatrix-double---) | Accepte une matrice de transformation avec la représentation de tableau suivante : [ A B C D TX TY ] | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [get(int index)](#get-int-) | Fournit l'accès au tableau sous-jacent. | +| [getA()](#getA--) | Obtient la valeur A de la matrice de transformation. | +| [getB()](#getB--) | Obtient la valeur B de la matrice de transformation. | +| [getC()](#getC--) | Obtient la valeur C de la matrice de transformation. | +| [getClass()](#getClass--) | | +| [getD()](#getD--) | Obtient la valeur D de la matrice de transformation. | +| [getTX()](#getTX--) | Obtient la valeur TX de la matrice de transformation. | +| [getTY()](#getTY--) | Obtient la valeur TY de la matrice de transformation. | +| [hashCode()](#hashCode--) | | +| [multiply(TransformationMatrix matrix)](#multiply-com.aspose.font.TransformationMatrix-) | Multiplie avec une autre matrice de transformation. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [scale(double x, double y, double[] x1, double[] y1)](#scale-double-double-double---double---) | Mise à l'échelle de x et y avec la matrice de transformation : x1 = A\*x + C\*y; y1 = B\*x + D\*y. | +| [setA(double value)](#setA-double-) | Définit la valeur A de la matrice de transformation. | +| [setB(double value)](#setB-double-) | Définit la valeur B de la matrice de transformation. | +| [setC(double value)](#setC-double-) | Définit la valeur C de la matrice de transformation. | +| [setD(double value)](#setD-double-) | Définit la valeur D de la matrice de transformation. | +| [setTX(double value)](#setTX-double-) | Définit la valeur TX de la matrice de transformation. | +| [setTY(double value)](#setTY-double-) | Définit la valeur TY de la matrice de transformation. | +| [toArray()](#toArray--) | Alloue un nouveau tableau, copie la matrice de transformation et le renvoie. | +| [toString()](#toString--) | | +| [transform(double x, double y, double[] x1, double[] y1)](#transform-double-double-double---double---) | Transforme x et y avec la matrice de transformation : x1 = A\*x + C\*y + TX; y1 = B\*x + D\*y + TY. | +| [unScale(double x1, double y1, double[] x, double[] y)](#unScale-double-double-double---double---) | Ramène x1 et y1 à l'échelle et renvoie x et y avant la matrice de transformation. | +| [unTransform(double x1, double y1, double[] x, double[] y)](#unTransform-double-double-double---double---) | Transforme en sens inverse x1 et y1 et renvoie x et y avant la matrice de transformation. | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### TransformationMatrix() {#TransformationMatrix--} +``` +public TransformationMatrix() +``` + + +Crée une matrice standard 1 à 1 : [ A B C D TX TY ] = [ 1, 0, 0, 1, 0, 0] + +### TransformationMatrix(double[] matrixArray) {#TransformationMatrix-double---} +``` +public TransformationMatrix(double[] matrixArray) +``` + + +Accepte une matrice de transformation avec la représentation de tableau suivante : [ A B C D TX TY ] + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| matrixArray | double[] | Tableau contenant les valeurs de la matrice de transformation, doit contenir 6 éléments. | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### get(int index) {#get-int-} +``` +public double get(int index) +``` + + +Fournit l'accès au tableau sous-jacent. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| index | int | Indice dans le tableau de la matrice de transformation. | + +**Returns:** +double - L'élément du tableau sous-jacent par indice. +### getA() {#getA--} +``` +public double getA() +``` + + +Obtient la valeur A de la matrice de transformation. + +**Returns:** +double - Une valeur de la matrice de transformation. +### getB() {#getB--} +``` +public double getB() +``` + + +Obtient la valeur B de la matrice de transformation. + +**Returns:** +double - Valeur B de la matrice de transformation. +### getC() {#getC--} +``` +public double getC() +``` + + +Obtient la valeur C de la matrice de transformation. + +**Returns:** +double - Valeur C de la matrice de transformation. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getD() {#getD--} +``` +public double getD() +``` + + +Obtient la valeur D de la matrice de transformation. + +**Returns:** +double - Valeur D de la matrice de transformation. +### getTX() {#getTX--} +``` +public double getTX() +``` + + +Obtient la valeur TX de la matrice de transformation. + +**Returns:** +double - Valeur TX de la matrice de transformation. +### getTY() {#getTY--} +``` +public double getTY() +``` + + +Obtient la valeur TY de la matrice de transformation. + +**Returns:** +double - Valeur TY de la matrice de transformation. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### multiply(TransformationMatrix matrix) {#multiply-com.aspose.font.TransformationMatrix-} +``` +public TransformationMatrix multiply(TransformationMatrix matrix) +``` + + +Multiplie avec une autre matrice de transformation. Ne modifie pas la matrice de transformation originale, renvoie un nouvel objet TransformationMatrix. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| matrix | [TransformationMatrix](../../com.aspose.font/transformationmatrix) | Matrice de transformation avec laquelle multiplier. | + +**Returns:** +[TransformationMatrix](../../com.aspose.font/transformationmatrix) - New TransformationMatrix object. +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### scale(double x, double y, double[] x1, double[] y1) {#scale-double-double-double---double---} +``` +public void scale(double x, double y, double[] x1, double[] y1) +``` + + +Mise à l'échelle de x et y avec la matrice de transformation : x1 = A\*x + C\*y; y1 = B\*x + D\*y. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| x | double | Coordonnée x originale | +| y | double | Coordonnée y originale. | +| x1 | double[] | Coordonnée x mise à l'échelle. | +| y1 | double[] | Coordonnée y mise à l'échelle. | + +### setA(double value) {#setA-double-} +``` +public void setA(double value) +``` + + +Définit la valeur A de la matrice de transformation. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | double | Une valeur de la matrice de transformation. | + +### setB(double value) {#setB-double-} +``` +public void setB(double value) +``` + + +Définit la valeur B de la matrice de transformation. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | double | Valeur B de la matrice de transformation. | + +### setC(double value) {#setC-double-} +``` +public void setC(double value) +``` + + +Définit la valeur C de la matrice de transformation. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | double | Valeur C de la matrice de transformation. | + +### setD(double value) {#setD-double-} +``` +public void setD(double value) +``` + + +Définit la valeur D de la matrice de transformation. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | double | Valeur D de la matrice de transformation. | + +### setTX(double value) {#setTX-double-} +``` +public void setTX(double value) +``` + + +Définit la valeur TX de la matrice de transformation. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | double | Valeur de la matrice de transformation TX. | + +### setTY(double value) {#setTY-double-} +``` +public void setTY(double value) +``` + + +Définit la valeur TY de la matrice de transformation. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | double | Valeur de la matrice de transformation TY. | + +### toArray() {#toArray--} +``` +public double[] toArray() +``` + + +Alloue un nouveau tableau, copie la matrice de transformation et le renvoie. + +**Returns:** +double[] - TransformationMatrix sous forme de tableau. +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### transform(double x, double y, double[] x1, double[] y1) {#transform-double-double-double---double---} +``` +public void transform(double x, double y, double[] x1, double[] y1) +``` + + +Transforme x et y avec la matrice de transformation : x1 = A\*x + C\*y + TX; y1 = B\*x + D\*y + TY. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| x | double | Coordonnée x originale. | +| y | double | Coordonnée y originale. | +| x1 | double[] | Coordonnée x transformée. | +| y1 | double[] | Coordonnée y transformée. | + +### unScale(double x1, double y1, double[] x, double[] y) {#unScale-double-double-double---double---} +``` +public void unScale(double x1, double y1, double[] x, double[] y) +``` + + +Ramène x1 et y1 à l'échelle et renvoie x et y avant la matrice de transformation. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| x1 | double | Coordonnée x1 | +| y1 | double | Coordonnée y1 | +| x | double[] | Coordonnée x remise à l'échelle. | +| y | double[] | Coordonnée y remise à l'échelle. | + +### unTransform(double x1, double y1, double[] x, double[] y) {#unTransform-double-double-double---double---} +``` +public void unTransform(double x1, double y1, double[] x, double[] y) +``` + + +Transforme en sens inverse x1 et y1 et renvoie x et y avant la matrice de transformation. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| x1 | double | Coordonnée x1. | +| y1 | double | Coordonnée y1. | +| x | double[] | Coordonnée x retransformée. | +| y | double[] | Coordonnée y retransformée. | + +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/ttcfontfiledefinition/_index.md b/french/java/com.aspose.font/ttcfontfiledefinition/_index.md new file mode 100644 index 0000000000..46335b90d8 --- /dev/null +++ b/french/java/com.aspose.font/ttcfontfiledefinition/_index.md @@ -0,0 +1,200 @@ +--- +title: "TtcFontFileDefinition" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente la définition de fichier pour la police TTC." +type: docs +weight: 79 +url: /fr/java/com.aspose.font/ttcfontfiledefinition/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.font.FontFileDefinition](../../com.aspose.font/fontfiledefinition) +``` +public class TtcFontFileDefinition extends FontFileDefinition +``` + +Représente la définition de fichier pour la police TTC. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [TtcFontFileDefinition(int fontIndex, String fileExtension, StreamSource streamSource, long offset)](#TtcFontFileDefinition-int-java.lang.String-com.aspose.font.StreamSource-long-) | Crée une définition de fichier en utilisant uniquement le contenu du fichier. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getFileExtension()](#getFileExtension--) | Obtient l'extension du fichier. | +| [getFileName()](#getFileName--) | Obtient le nom du fichier. | +| [getFontIndex()](#getFontIndex--) | Obtient l'index de la police dans la police TTC. | +| [getOffset()](#getOffset--) | Obtient le décalage dans le flux. | +| [getStreamSource()](#getStreamSource--) | Obtient la source du flux. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### TtcFontFileDefinition(int fontIndex, String fileExtension, StreamSource streamSource, long offset) {#TtcFontFileDefinition-int-java.lang.String-com.aspose.font.StreamSource-long-} +``` +public TtcFontFileDefinition(int fontIndex, String fileExtension, StreamSource streamSource, long offset) +``` + + +Crée une définition de fichier en utilisant uniquement le contenu du fichier. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontIndex | int | Index de la police dans la collection de polices TTC. | +| fileExtension | java.lang.String | Extension de la collection de fichiers de polices. | +| streamSource | [StreamSource](../../com.aspose.font/streamsource) | Source de la collection de fichiers de polices. | +| décalage | long | Décalage vers les données de police dans la collection de fichiers de polices, voir l'en-tête TTC, la table des décalages dans la spécification du fichier de police OpenType. | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getFileExtension() {#getFileExtension--} +``` +public String getFileExtension() +``` + + +Obtient l'extension du fichier. + +**Returns:** +java.lang.String - Extension de fichier. +### getFileName() {#getFileName--} +``` +public String getFileName() +``` + + +Obtient le nom du fichier. + +**Returns:** +java.lang.String - Nom de fichier. +### getFontIndex() {#getFontIndex--} +``` +public long getFontIndex() +``` + + +Obtient l'index de la police dans la police TTC. + +**Returns:** +long - Index de police dans le TTC Font. +### getOffset() {#getOffset--} +``` +public long getOffset() +``` + + +Obtient le décalage dans le flux. + +**Returns:** +long - Décalage dans le flux. +### getStreamSource() {#getStreamSource--} +``` +public StreamSource getStreamSource() +``` + + +Obtient la source du flux. + +**Returns:** +[StreamSource](../../com.aspose.font/streamsource) - The stream source. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/ttcfontsource/_index.md b/french/java/com.aspose.font/ttcfontsource/_index.md new file mode 100644 index 0000000000..bd9eb29c64 --- /dev/null +++ b/french/java/com.aspose.font/ttcfontsource/_index.md @@ -0,0 +1,170 @@ +--- +title: "TtcFontSource" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente la source de la police TTC." +type: docs +weight: 80 +url: /fr/java/com.aspose.font/ttcfontsource/ +--- +**Inheritance:** +java.lang.Object + +**All Implemented Interfaces:** +com.aspose.font.IFontSource +``` +public class TtcFontSource implements IFontSource +``` + +Représente la source de la police TTC. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [TtcFontSource(StreamSource source)](#TtcFontSource-com.aspose.font.StreamSource-) | Crée une source de police TTC basée sur l'objet fournissant le flux IStreamSource. | +| [TtcFontSource(String filePath)](#TtcFontSource-java.lang.String-) | Crée une source de police TTC basée sur le chemin du fichier de collection de polices ttc. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getFontDefinitions()](#getFontDefinitions--) | Renvoie le tableau de définitions de polices de la source de police TTC. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### TtcFontSource(StreamSource source) {#TtcFontSource-com.aspose.font.StreamSource-} +``` +public TtcFontSource(StreamSource source) +``` + + +Crée une source de police TTC basée sur l'objet fournissant le flux IStreamSource. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| source | [StreamSource](../../com.aspose.font/streamsource) | Flux source à partir duquel extraire les données de la collection de polices TTC. | + +### TtcFontSource(String filePath) {#TtcFontSource-java.lang.String-} +``` +public TtcFontSource(String filePath) +``` + + +Crée une source de police TTC basée sur le chemin du fichier de collection de polices ttc. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| filePath | java.lang.String | Fichier de collection de polices. | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getFontDefinitions() {#getFontDefinitions--} +``` +public FontDefinition[] getFontDefinitions() +``` + + +Renvoie le tableau de définitions de polices de la source de police TTC. + +**Returns:** +com.aspose.font.FontDefinition[] - Toutes les définitions de polices provenant de la source de police TTC. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/ttfcfftable/_index.md b/french/java/com.aspose.font/ttfcfftable/_index.md new file mode 100644 index 0000000000..80476fe861 --- /dev/null +++ b/french/java/com.aspose.font/ttfcfftable/_index.md @@ -0,0 +1,182 @@ +--- +title: "TtfCffTable" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente la table cff du fichier de police TTF." +type: docs +weight: 90 +url: /fr/java/com.aspose.font/ttfcfftable/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.font.TtfTableBase](../../com.aspose.font/ttftablebase) +``` +public class TtfCffTable extends TtfTableBase +``` + +Représente la table "cff" du fichier de police TTF. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getCffSource()](#getCffSource--) | Octets bruts pour les contours dans la représentation Compact Font Format. | +| [getClass()](#getClass--) | | +| [getOffset()](#getOffset--) | Obtient le décalage depuis le début du sfnt. | +| [getTag()](#getTag--) | Obtient le tag de la table. | +| [getTtfTables()](#getTtfTables--) | Référence au référentiel de tables TTF. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setCffSource(StreamSource streamSource)](#setCffSource-com.aspose.font.StreamSource-) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getCffSource() {#getCffSource--} +``` +public StreamSource getCffSource() +``` + + +Octets bruts pour les contours dans la représentation Compact Font Format. + +**Returns:** +[StreamSource](../../com.aspose.font/streamsource) - Raw bytes for outlines in Compact Font Format representation. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getOffset() {#getOffset--} +``` +public long getOffset() +``` + + +Obtient le décalage depuis le début du sfnt. + +**Returns:** +long - Décalage depuis le début du sfnt. +### getTag() {#getTag--} +``` +public static String getTag() +``` + + +Obtient le tag de la table. + +**Returns:** +java.lang.String - Tag de la table. +### getTtfTables() {#getTtfTables--} +``` +public TtfTableRepository getTtfTables() +``` + + +Référence au référentiel de tables TTF. + +**Returns:** +[TtfTableRepository](../../com.aspose.font/ttftablerepository) - Reference to TTF table repository. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setCffSource(StreamSource streamSource) {#setCffSource-com.aspose.font.StreamSource-} +``` +public void setCffSource(StreamSource streamSource) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| streamSource | [StreamSource](../../com.aspose.font/streamsource) | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/ttfcmapformat0table/_index.md b/french/java/com.aspose.font/ttfcmapformat0table/_index.md new file mode 100644 index 0000000000..58ecd5f16f --- /dev/null +++ b/french/java/com.aspose.font/ttfcmapformat0table/_index.md @@ -0,0 +1,173 @@ +--- +title: "TtfCMapFormat0Table" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente la sous-table Format0 CMap du fichier de police TTF." +type: docs +weight: 81 +url: /fr/java/com.aspose.font/ttfcmapformat0table/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.font.TtfCMapFormatBaseTable](../../com.aspose.font/ttfcmapformatbasetable) +``` +public class TtfCMapFormat0Table extends TtfCMapFormatBaseTable +``` + +Représente la sous-table Format0 CMap du fichier de police TTF. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getAllCodes()](#getAllCodes--) | Obtient tous les codes de la sous-table CMap actuelle. | +| [getClass()](#getClass--) | | +| [getGlyphIndex(long charCode)](#getGlyphIndex-long-) | Obtient un indice de glyphe pour un code de caractère donné. | +| [getPlatformId()](#getPlatformId--) | Obtient PlatformId. | +| [getPlatformSpecificId()](#getPlatformSpecificId--) | Obtient PlatformSpecificId. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getAllCodes() {#getAllCodes--} +``` +public ArrayList getAllCodes() +``` + + +Obtient tous les codes de la sous-table CMap actuelle. + +**Returns:** +java.util.ArrayList - Tous les codes du sous-tableau CMap actuel. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getGlyphIndex(long charCode) {#getGlyphIndex-long-} +``` +public long getGlyphIndex(long charCode) +``` + + +Obtient un indice de glyphe pour un code de caractère donné. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| charCode | long | Code de caractère. | + +**Returns:** +long - index du glyphe. +### getPlatformId() {#getPlatformId--} +``` +public int getPlatformId() +``` + + +Obtient PlatformId. + +**Returns:** +int - PlatformId. +### getPlatformSpecificId() {#getPlatformSpecificId--} +``` +public int getPlatformSpecificId() +``` + + +Obtient PlatformSpecificId. + +**Returns:** +int - PlatformSpecificId. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/ttfcmapformat10table/_index.md b/french/java/com.aspose.font/ttfcmapformat10table/_index.md new file mode 100644 index 0000000000..b879a59e93 --- /dev/null +++ b/french/java/com.aspose.font/ttfcmapformat10table/_index.md @@ -0,0 +1,173 @@ +--- +title: "TtfCMapFormat10Table" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente la sous-table Format10 CMap du fichier de police TTF." +type: docs +weight: 82 +url: /fr/java/com.aspose.font/ttfcmapformat10table/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.font.TtfCMapFormatBaseTable](../../com.aspose.font/ttfcmapformatbasetable) +``` +public class TtfCMapFormat10Table extends TtfCMapFormatBaseTable +``` + +Représente la sous-table Format10 CMap du fichier de police TTF. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getAllCodes()](#getAllCodes--) | Obtient tous les codes de la sous-table CMap actuelle. | +| [getClass()](#getClass--) | | +| [getGlyphIndex(long charCode)](#getGlyphIndex-long-) | Obtient un indice de glyphe pour un code de caractère donné. | +| [getPlatformId()](#getPlatformId--) | Obtient PlatformId. | +| [getPlatformSpecificId()](#getPlatformSpecificId--) | Obtient PlatformSpecificId. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getAllCodes() {#getAllCodes--} +``` +public ArrayList getAllCodes() +``` + + +Obtient tous les codes de la sous-table CMap actuelle. + +**Returns:** +java.util.ArrayList - Tous les codes du sous-tableau CMap actuel. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getGlyphIndex(long charCode) {#getGlyphIndex-long-} +``` +public long getGlyphIndex(long charCode) +``` + + +Obtient un indice de glyphe pour un code de caractère donné. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| charCode | long | Code de caractère. | + +**Returns:** +long - index du glyphe. +### getPlatformId() {#getPlatformId--} +``` +public int getPlatformId() +``` + + +Obtient PlatformId. + +**Returns:** +int - PlatformId. +### getPlatformSpecificId() {#getPlatformSpecificId--} +``` +public int getPlatformSpecificId() +``` + + +Obtient PlatformSpecificId. + +**Returns:** +int - PlatformSpecificId. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/ttfcmapformat12table/_index.md b/french/java/com.aspose.font/ttfcmapformat12table/_index.md new file mode 100644 index 0000000000..c6ac634c6e --- /dev/null +++ b/french/java/com.aspose.font/ttfcmapformat12table/_index.md @@ -0,0 +1,173 @@ +--- +title: "TtfCMapFormat12Table" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente la sous-table Format8 CMap du fichier de police TTF." +type: docs +weight: 83 +url: /fr/java/com.aspose.font/ttfcmapformat12table/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.font.TtfCMapFormatBaseTable](../../com.aspose.font/ttfcmapformatbasetable) +``` +public class TtfCMapFormat12Table extends TtfCMapFormatBaseTable +``` + +Représente la sous-table Format8 CMap du fichier de police TTF. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getAllCodes()](#getAllCodes--) | Obtient tous les codes de la sous-table CMap actuelle. | +| [getClass()](#getClass--) | | +| [getGlyphIndex(long charCode)](#getGlyphIndex-long-) | Obtient un indice de glyphe pour un code de caractère donné. | +| [getPlatformId()](#getPlatformId--) | Obtient PlatformId. | +| [getPlatformSpecificId()](#getPlatformSpecificId--) | Obtient PlatformSpecificId. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getAllCodes() {#getAllCodes--} +``` +public ArrayList getAllCodes() +``` + + +Obtient tous les codes de la sous-table CMap actuelle. + +**Returns:** +java.util.ArrayList - Tous les codes de la sous-table CMap actuelle. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getGlyphIndex(long charCode) {#getGlyphIndex-long-} +``` +public long getGlyphIndex(long charCode) +``` + + +Obtient un indice de glyphe pour un code de caractère donné. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| charCode | long | Code de caractère | + +**Returns:** +long - index du glyphe. +### getPlatformId() {#getPlatformId--} +``` +public int getPlatformId() +``` + + +Obtient PlatformId. + +**Returns:** +int - PlatformId. +### getPlatformSpecificId() {#getPlatformSpecificId--} +``` +public int getPlatformSpecificId() +``` + + +Obtient PlatformSpecificId. + +**Returns:** +int - PlatformSpecificId. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/ttfcmapformat2table/_index.md b/french/java/com.aspose.font/ttfcmapformat2table/_index.md new file mode 100644 index 0000000000..b24af48d13 --- /dev/null +++ b/french/java/com.aspose.font/ttfcmapformat2table/_index.md @@ -0,0 +1,173 @@ +--- +title: "TtfCMapFormat2Table" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente la sous-table Format2 CMap du fichier de police TTF." +type: docs +weight: 84 +url: /fr/java/com.aspose.font/ttfcmapformat2table/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.font.TtfCMapFormatBaseTable](../../com.aspose.font/ttfcmapformatbasetable) +``` +public class TtfCMapFormat2Table extends TtfCMapFormatBaseTable +``` + +Représente la sous-table Format2 CMap du fichier de police TTF. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getAllCodes()](#getAllCodes--) | Obtient tous les codes de la sous-table CMap actuelle. | +| [getClass()](#getClass--) | | +| [getGlyphIndex(long charCode)](#getGlyphIndex-long-) | Obtient un indice de glyphe pour un code de caractère donné. | +| [getPlatformId()](#getPlatformId--) | Obtient PlatformId. | +| [getPlatformSpecificId()](#getPlatformSpecificId--) | Obtient PlatformSpecificId. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getAllCodes() {#getAllCodes--} +``` +public ArrayList getAllCodes() +``` + + +Obtient tous les codes de la sous-table CMap actuelle. + +**Returns:** +java.util.ArrayList - Tous les codes de la sous-table CMap actuelle. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getGlyphIndex(long charCode) {#getGlyphIndex-long-} +``` +public long getGlyphIndex(long charCode) +``` + + +Obtient un indice de glyphe pour un code de caractère donné. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| charCode | long | Code de caractère. | + +**Returns:** +long - index du glyphe. +### getPlatformId() {#getPlatformId--} +``` +public int getPlatformId() +``` + + +Obtient PlatformId. + +**Returns:** +int - PlatformId. +### getPlatformSpecificId() {#getPlatformSpecificId--} +``` +public int getPlatformSpecificId() +``` + + +Obtient PlatformSpecificId. + +**Returns:** +int - PlatformSpecificId. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/ttfcmapformat4table/_index.md b/french/java/com.aspose.font/ttfcmapformat4table/_index.md new file mode 100644 index 0000000000..439b62e0c8 --- /dev/null +++ b/french/java/com.aspose.font/ttfcmapformat4table/_index.md @@ -0,0 +1,173 @@ +--- +title: "TtfCMapFormat4Table" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente la sous-table Format4 CMap du fichier de police TTF." +type: docs +weight: 85 +url: /fr/java/com.aspose.font/ttfcmapformat4table/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.font.TtfCMapFormatBaseTable](../../com.aspose.font/ttfcmapformatbasetable) +``` +public class TtfCMapFormat4Table extends TtfCMapFormatBaseTable +``` + +Représente la sous-table Format4 CMap du fichier de police TTF. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getAllCodes()](#getAllCodes--) | Obtient tous les codes de la sous-table CMap actuelle. | +| [getClass()](#getClass--) | | +| [getGlyphIndex(long charCode)](#getGlyphIndex-long-) | Obtient un indice de glyphe pour un code de caractère donné. | +| [getPlatformId()](#getPlatformId--) | Obtient PlatformId. | +| [getPlatformSpecificId()](#getPlatformSpecificId--) | Obtient PlatformSpecificId. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getAllCodes() {#getAllCodes--} +``` +public ArrayList getAllCodes() +``` + + +Obtient tous les codes de la sous-table CMap actuelle. + +**Returns:** +java.util.ArrayList - Tous les codes du sous-tableau CMap actuel. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getGlyphIndex(long charCode) {#getGlyphIndex-long-} +``` +public long getGlyphIndex(long charCode) +``` + + +Obtient un indice de glyphe pour un code de caractère donné. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| charCode | long | Code de caractère. | + +**Returns:** +long - index du glyphe. +### getPlatformId() {#getPlatformId--} +``` +public int getPlatformId() +``` + + +Obtient PlatformId. + +**Returns:** +int - PlatformId. +### getPlatformSpecificId() {#getPlatformSpecificId--} +``` +public int getPlatformSpecificId() +``` + + +Obtient PlatformSpecificId. + +**Returns:** +int - PlatformSpecificId. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/ttfcmapformat6table/_index.md b/french/java/com.aspose.font/ttfcmapformat6table/_index.md new file mode 100644 index 0000000000..95d93ffd0a --- /dev/null +++ b/french/java/com.aspose.font/ttfcmapformat6table/_index.md @@ -0,0 +1,173 @@ +--- +title: "TtfCMapFormat6Table" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente la sous-table Format6 CMap du fichier de police TTF." +type: docs +weight: 86 +url: /fr/java/com.aspose.font/ttfcmapformat6table/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.font.TtfCMapFormatBaseTable](../../com.aspose.font/ttfcmapformatbasetable) +``` +public class TtfCMapFormat6Table extends TtfCMapFormatBaseTable +``` + +Représente la sous-table Format6 CMap du fichier de police TTF. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getAllCodes()](#getAllCodes--) | Obtient tous les codes de la sous-table CMap actuelle. | +| [getClass()](#getClass--) | | +| [getGlyphIndex(long charCode)](#getGlyphIndex-long-) | Obtient un indice de glyphe pour un code de caractère donné. | +| [getPlatformId()](#getPlatformId--) | Obtient PlatformId. | +| [getPlatformSpecificId()](#getPlatformSpecificId--) | Obtient PlatformSpecificId. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getAllCodes() {#getAllCodes--} +``` +public ArrayList getAllCodes() +``` + + +Obtient tous les codes de la sous-table CMap actuelle. + +**Returns:** +java.util.ArrayList - Tous les codes de la sous-table CMap actuelle. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getGlyphIndex(long charCode) {#getGlyphIndex-long-} +``` +public long getGlyphIndex(long charCode) +``` + + +Obtient un indice de glyphe pour un code de caractère donné. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| charCode | long | Code de caractère. | + +**Returns:** +long - index du glyphe. +### getPlatformId() {#getPlatformId--} +``` +public int getPlatformId() +``` + + +Obtient PlatformId. + +**Returns:** +int - PlatformId. +### getPlatformSpecificId() {#getPlatformSpecificId--} +``` +public int getPlatformSpecificId() +``` + + +Obtient PlatformSpecificId. + +**Returns:** +int - PlatformSpecificId. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/ttfcmapformat8table/_index.md b/french/java/com.aspose.font/ttfcmapformat8table/_index.md new file mode 100644 index 0000000000..2dd12de3e8 --- /dev/null +++ b/french/java/com.aspose.font/ttfcmapformat8table/_index.md @@ -0,0 +1,173 @@ +--- +title: "TtfCMapFormat8Table" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente la sous-table Format8 CMap du fichier de police TTF." +type: docs +weight: 87 +url: /fr/java/com.aspose.font/ttfcmapformat8table/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.font.TtfCMapFormatBaseTable](../../com.aspose.font/ttfcmapformatbasetable) +``` +public class TtfCMapFormat8Table extends TtfCMapFormatBaseTable +``` + +Représente la sous-table Format8 CMap du fichier de police TTF. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getAllCodes()](#getAllCodes--) | Obtient tous les codes de la sous-table CMap actuelle. | +| [getClass()](#getClass--) | | +| [getGlyphIndex(long charCode)](#getGlyphIndex-long-) | Obtient un indice de glyphe pour un code de caractère donné. | +| [getPlatformId()](#getPlatformId--) | Obtient PlatformId. | +| [getPlatformSpecificId()](#getPlatformSpecificId--) | Obtient PlatformSpecificId. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getAllCodes() {#getAllCodes--} +``` +public ArrayList getAllCodes() +``` + + +Obtient tous les codes de la sous-table CMap actuelle. + +**Returns:** +java.util.ArrayList - Tous les codes du sous-tableau CMap actuel. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getGlyphIndex(long charCode) {#getGlyphIndex-long-} +``` +public long getGlyphIndex(long charCode) +``` + + +Obtient un indice de glyphe pour un code de caractère donné. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| charCode | long | Code de caractère. | + +**Returns:** +long - index du glyphe. +### getPlatformId() {#getPlatformId--} +``` +public int getPlatformId() +``` + + +Obtient PlatformId. + +**Returns:** +int - PlatformId. +### getPlatformSpecificId() {#getPlatformSpecificId--} +``` +public int getPlatformSpecificId() +``` + + +Obtient PlatformSpecificId. + +**Returns:** +int - PlatformSpecificId. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/ttfcmapformatbasetable/_index.md b/french/java/com.aspose.font/ttfcmapformatbasetable/_index.md new file mode 100644 index 0000000000..4c614c0118 --- /dev/null +++ b/french/java/com.aspose.font/ttfcmapformatbasetable/_index.md @@ -0,0 +1,173 @@ +--- +title: "TtfCMapFormatBaseTable" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente la classe de base de la sous-table CMap." +type: docs +weight: 88 +url: /fr/java/com.aspose.font/ttfcmapformatbasetable/ +--- +**Inheritance:** +java.lang.Object +``` +public class TtfCMapFormatBaseTable +``` + +Représente la classe de base de la sous-table CMap. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getAllCodes()](#getAllCodes--) | Obtient tous les codes de la sous-table CMap actuelle. | +| [getClass()](#getClass--) | | +| [getGlyphIndex(long charCode)](#getGlyphIndex-long-) | Obtient un indice de glyphe pour un code de caractère donné | +| [getPlatformId()](#getPlatformId--) | Obtient PlatformId. | +| [getPlatformSpecificId()](#getPlatformSpecificId--) | Obtient PlatformSpecificId. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getAllCodes() {#getAllCodes--} +``` +public ArrayList getAllCodes() +``` + + +Obtient tous les codes de la sous-table CMap actuelle. + +**Returns:** +java.util.ArrayList - Tous les codes du sous-tableau CMap actuel. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getGlyphIndex(long charCode) {#getGlyphIndex-long-} +``` +public long getGlyphIndex(long charCode) +``` + + +Obtient un indice de glyphe pour un code de caractère donné + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| charCode | long | code de caractère | + +**Returns:** +long - index du glyphe. +### getPlatformId() {#getPlatformId--} +``` +public int getPlatformId() +``` + + +Obtient PlatformId. + +**Returns:** +int - PlatformId. +### getPlatformSpecificId() {#getPlatformSpecificId--} +``` +public int getPlatformSpecificId() +``` + + +Obtient PlatformSpecificId. + +**Returns:** +int - PlatformSpecificId. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/ttfcmapsubtabledescription/_index.md b/french/java/com.aspose.font/ttfcmapsubtabledescription/_index.md new file mode 100644 index 0000000000..3970c4603e --- /dev/null +++ b/french/java/com.aspose.font/ttfcmapsubtabledescription/_index.md @@ -0,0 +1,157 @@ +--- +title: "TtfCMapTable.TtfCMapSubtableDescription" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Fournit des informations brèves sur la sous-table CMap." +type: docs +weight: 10 +url: /fr/java/com.aspose.font/ttfcmaptable.ttfcmapsubtabledescription/ +--- +**Inheritance:** +java.lang.Object +``` +public abstract static class TtfCMapTable.TtfCMapSubtableDescription +``` + +Fournit des informations brèves sur la sous-table CMap. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getFormat()](#getFormat--) | Obtient le format de la sous-table. | +| [getPlatformId()](#getPlatformId--) | Obtient l'identifiant de la plateforme. | +| [getPlatformSpecificId()](#getPlatformSpecificId--) | Obtient l'identifiant d'encodage spécifique à la plateforme. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getFormat() {#getFormat--} +``` +public int getFormat() +``` + + +Obtient le format de la sous-table. + +**Returns:** +int - format de sous-table. +### getPlatformId() {#getPlatformId--} +``` +public int getPlatformId() +``` + + +Obtient l'identifiant de la plateforme. + +**Returns:** +int - identifiant de la plateforme. +### getPlatformSpecificId() {#getPlatformSpecificId--} +``` +public int getPlatformSpecificId() +``` + + +Obtient l'identifiant d'encodage spécifique à la plateforme. + +**Returns:** +int - identifiant d'encodage spécifique à la plateforme. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/ttfcmaptable/_index.md b/french/java/com.aspose.font/ttfcmaptable/_index.md new file mode 100644 index 0000000000..43e321bff7 --- /dev/null +++ b/french/java/com.aspose.font/ttfcmaptable/_index.md @@ -0,0 +1,196 @@ +--- +title: "TtfCMapTable" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente la table cmap du fichier de police TTF." +type: docs +weight: 89 +url: /fr/java/com.aspose.font/ttfcmaptable/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.font.TtfTableBase](../../com.aspose.font/ttftablebase) +``` +public class TtfCMapTable extends TtfTableBase +``` + +Représente la table "cmap" du fichier de police TTF. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [findUnicodeTable()](#findUnicodeTable--) | Recherche et renvoie le CMap Unicode. | +| [getAllSubtables()](#getAllSubtables--) | Renvoie toutes les sous‑tables de la table CMap. | +| [getClass()](#getClass--) | | +| [getOffset()](#getOffset--) | Obtient le décalage depuis le début du sfnt. | +| [getPlatformTables(int platformId, int platformSpecificId)](#getPlatformTables-int-int-) | Renvoie les sous‑tables CMap pour planformId et platformSpecificId. | +| [getTag()](#getTag--) | Obtient le tag de la table. | +| [getTtfTables()](#getTtfTables--) | Référence au référentiel de tables TTF. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### findUnicodeTable() {#findUnicodeTable--} +``` +public TtfCMapFormatBaseTable findUnicodeTable() +``` + + +Recherche et renvoie le CMap Unicode. s’il existe un CMap ucs-4 - le renvoie en premier ; sinon - renvoie tout CMap Unicode qu’il trouve. + +**Returns:** +[TtfCMapFormatBaseTable](../../com.aspose.font/ttfcmapformatbasetable) - Unicode subtable. +### getAllSubtables() {#getAllSubtables--} +``` +public TtfCMapTable.TtfCMapSubtableDescription[] getAllSubtables() +``` + + +Renvoie toutes les sous‑tables de la table CMap. + +**Returns:** +com.aspose.font.TtfCMapTable.TtfCMapSubtableDescription[] - tableau d'objets TtfCmapSubtableDescription +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getOffset() {#getOffset--} +``` +public long getOffset() +``` + + +Obtient le décalage depuis le début du sfnt. + +**Returns:** +long - Décalage depuis le début du sfnt. +### getPlatformTables(int platformId, int platformSpecificId) {#getPlatformTables-int-int-} +``` +public TtfCMapFormatBaseTable[] getPlatformTables(int platformId, int platformSpecificId) +``` + + +Renvoie les sous‑tables CMap pour planformId et platformSpecificId. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| platformId | int | Identifiant de plateforme. | +| platformSpecificId | int | Identifiant d'encodage spécifique à la plateforme. | + +**Returns:** +com.aspose.font.TtfCMapFormatBaseTable[] - sous‑tables CMap. +### getTag() {#getTag--} +``` +public static String getTag() +``` + + +Obtient le tag de la table. + +**Returns:** +java.lang.String - Tag de la table. +### getTtfTables() {#getTtfTables--} +``` +public TtfTableRepository getTtfTables() +``` + + +Référence au référentiel de tables TTF. + +**Returns:** +[TtfTableRepository](../../com.aspose.font/ttftablerepository) - Reference to TTF table repository. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/ttfcvttable/_index.md b/french/java/com.aspose.font/ttfcvttable/_index.md new file mode 100644 index 0000000000..6b27c8219a --- /dev/null +++ b/french/java/com.aspose.font/ttfcvttable/_index.md @@ -0,0 +1,168 @@ +--- +title: "TtfCvtTable" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente la table de valeurs de contrôle (CVT) du fichier de police TTF." +type: docs +weight: 91 +url: /fr/java/com.aspose.font/ttfcvttable/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.font.TtfTableBase](../../com.aspose.font/ttftablebase) +``` +public class TtfCvtTable extends TtfTableBase +``` + +Représente la table de valeurs de contrôle (CVT) du fichier de police TTF. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getControlValues()](#getControlValues--) | Obtient la liste des valeurs référencables par les instructions. | +| [getOffset()](#getOffset--) | Obtient le décalage depuis le début du sfnt. | +| [getTag()](#getTag--) | Obtient le tag de la table. | +| [getTtfTables()](#getTtfTables--) | Référence au référentiel de tables TTF. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getControlValues() {#getControlValues--} +``` +public short[] getControlValues() +``` + + +Obtient la liste des valeurs référencables par les instructions. + +**Returns:** +short[] - Liste des valeurs référencables par les instructions. +### getOffset() {#getOffset--} +``` +public long getOffset() +``` + + +Obtient le décalage depuis le début du sfnt. + +**Returns:** +long - Décalage depuis le début du sfnt. +### getTag() {#getTag--} +``` +public static String getTag() +``` + + +Obtient le tag de la table. + +**Returns:** +java.lang.String - Tag de la table. +### getTtfTables() {#getTtfTables--} +``` +public TtfTableRepository getTtfTables() +``` + + +Référence au référentiel de tables TTF. + +**Returns:** +[TtfTableRepository](../../com.aspose.font/ttftablerepository) - Reference to TTF table repository. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/ttfencoding/_index.md b/french/java/com.aspose.font/ttfencoding/_index.md new file mode 100644 index 0000000000..86c55b99c1 --- /dev/null +++ b/french/java/com.aspose.font/ttfencoding/_index.md @@ -0,0 +1,207 @@ +--- +title: "TtfEncoding" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente le codage de la police TTF." +type: docs +weight: 92 +url: /fr/java/com.aspose.font/ttfencoding/ +--- +**Inheritance:** +java.lang.Object + +**All Implemented Interfaces:** +[com.aspose.font.IFontEncoding](../../com.aspose.font/ifontencoding) +``` +public class TtfEncoding implements IFontEncoding +``` + +Représente le codage de la police TTF. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [decodeToGid(long unicode)](#decodeToGid-long-) | L'implémentation DecodeToGlyphId de la police TTF trouve la table unicode et renvoie l'ID du glyphe pour le caractère unicode. | +| [decodeToGidParameterized(IEncodingParameters parameters, long charCode)](#decodeToGidParameterized-com.aspose.font.IEncodingParameters-long-) | La version paramétrée permet d'utiliser une table CMap spécifique (pas unicode). | +| [encode(long gid, long charCode)](#encode-long-long-) | Encode le glyphe. | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [gidToUnicode(GlyphId glyphId)](#gidToUnicode-com.aspose.font.GlyphId-) | Décode l'ID du glyphe en unicode. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [unicodeToGid(long unicode)](#unicodeToGid-long-) | Décode un unicode et renvoie l'ID du glyphe. | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### decodeToGid(long unicode) {#decodeToGid-long-} +``` +public GlyphId decodeToGid(long unicode) +``` + + +L'implémentation DecodeToGlyphId de la police TTF trouve la table unicode et renvoie l'ID du glyphe pour le caractère unicode. L'ID du glyphe est un nombre unique pour un glyphe, dépendant du type de police. Par exemple : l'ID de Type1 est un nom de glyphe, instance de la classe ( GlyphStringId ). L'ID de TTF est un indice entier, instance de la classe ( GlyphUInt32Id ). + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| unicode | long | Code de caractère pour obtenir l'identifiant du glyphe. | + +**Returns:** +[GlyphId](../../com.aspose.font/glyphid) - Glyph identifier related to character code passed. +### decodeToGidParameterized(IEncodingParameters parameters, long charCode) {#decodeToGidParameterized-com.aspose.font.IEncodingParameters-long-} +``` +public GlyphId decodeToGidParameterized(IEncodingParameters parameters, long charCode) +``` + + +La version paramétrée permet d'utiliser une table CMap spécifique (pas unicode). + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| parameters | [IEncodingParameters](../../com.aspose.font/iencodingparameters) | Implémentation de l'interface IEncodingParameters . | +| charCode | long | code de caractère pour obtenir l'identifiant du glyphe. | + +**Returns:** +[GlyphId](../../com.aspose.font/glyphid) - Glyph identifier related to character code passed. +### encode(long gid, long charCode) {#encode-long-long-} +``` +public void encode(long gid, long charCode) +``` + + +Encode le glyphe. Pour les polices TTF, le code de caractère est unicode. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| gid | long | Identifiant du glyph. | +| charCode | long | Code de caractère. | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### gidToUnicode(GlyphId glyphId) {#gidToUnicode-com.aspose.font.GlyphId-} +``` +public long gidToUnicode(GlyphId glyphId) +``` + + +Décode l'ID du glyphe en unicode. L'ID du glyphe est un nombre unique pour un glyphe, dépendant du type de police. Par exemple : l'ID de Type1 est un nom de glyphe, instance de la classe ( GlyphStringId ). L'ID de TTF est un indice entier, instance de la classe ( GlyphUInt32Id ). + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| glyphId | [GlyphId](../../com.aspose.font/glyphid) | Identifiant du glyphe du symbole à décoder. | + +**Returns:** +long - Valeur Unicode liée à l'identifiant du glyphe fourni. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### unicodeToGid(long unicode) {#unicodeToGid-long-} +``` +public GlyphId unicodeToGid(long unicode) +``` + + +Décode un unicode et renvoie l'ID du glyphe. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| unicode | long | Unicode pour obtenir l'identifiant du glyphe. | + +**Returns:** +[GlyphId](../../com.aspose.font/glyphid) - Glyph identifier related to unicode passed. +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/ttfencodingparameters/_index.md b/french/java/com.aspose.font/ttfencodingparameters/_index.md new file mode 100644 index 0000000000..e5cde93eff --- /dev/null +++ b/french/java/com.aspose.font/ttfencodingparameters/_index.md @@ -0,0 +1,196 @@ +--- +title: "TtfEncodingParameters" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente les paramètres de codage TTF." +type: docs +weight: 93 +url: /fr/java/com.aspose.font/ttfencodingparameters/ +--- +**Inheritance:** +java.lang.Object + +**All Implemented Interfaces:** +[com.aspose.font.IEncodingParameters](../../com.aspose.font/iencodingparameters) +``` +public class TtfEncodingParameters implements IEncodingParameters +``` + +Représente les paramètres d'encodage TTF. Doit être utilisé pour demander un encodage spécifique à partir de la police TTF. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [TtfEncodingParameters(int platformId, int platformSpecificId)](#TtfEncodingParameters-int-int-) | Initialise une nouvelle instance de la classe TtfEncodingParameters. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getPlatformId()](#getPlatformId--) | Obtient la valeur PlatformId. | +| [getPlatformSpecificId()](#getPlatformSpecificId--) | Obtient la valeur PlatformSpecificId. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setPlatformId(int value)](#setPlatformId-int-) | Définit la valeur PlatformId. | +| [setPlatformSpecificId(int value)](#setPlatformSpecificId-int-) | Définit la valeur PlatformSpecificId. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### TtfEncodingParameters(int platformId, int platformSpecificId) {#TtfEncodingParameters-int-int-} +``` +public TtfEncodingParameters(int platformId, int platformSpecificId) +``` + + +Initialise une nouvelle instance de la classe TtfEncodingParameters. Prend Platform Id et Platform-specific encoding id comme paramètres. Ces paramètres sont utilisés pour demander une sous-table CMap spéciale à partir de la table CMap principale de la police, voir la table 'CMap', 'name' dans la spécification du fichier de police OpenType. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| platformId | int | Identifiant de plateforme. | +| platformSpecificId | int | Identifiant d'encodage spécifique à la plateforme. | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getPlatformId() {#getPlatformId--} +``` +public int getPlatformId() +``` + + +Obtient la valeur PlatformId. + +**Returns:** +int - valeur PlatformId. +### getPlatformSpecificId() {#getPlatformSpecificId--} +``` +public int getPlatformSpecificId() +``` + + +Obtient la valeur PlatformSpecificId. + +**Returns:** +int - valeur PlatformSpecificId. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setPlatformId(int value) {#setPlatformId-int-} +``` +public void setPlatformId(int value) +``` + + +Définit la valeur PlatformId. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | Valeur PlatformId. | + +### setPlatformSpecificId(int value) {#setPlatformSpecificId-int-} +``` +public void setPlatformSpecificId(int value) +``` + + +Définit la valeur PlatformSpecificId. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | Valeur PlatformSpecificId. | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/ttffont/_index.md b/french/java/com.aspose.font/ttffont/_index.md new file mode 100644 index 0000000000..7ee630cf78 --- /dev/null +++ b/french/java/com.aspose.font/ttffont/_index.md @@ -0,0 +1,648 @@ +--- +title: "TtfFont" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente la police TrueType TTF." +type: docs +weight: 94 +url: /fr/java/com.aspose.font/ttffont/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.font.Font](../../com.aspose.font/font) +``` +public class TtfFont extends Font +``` + +Représente la police TrueType (TTF). +## Méthodes + +| Méthode | Description | +| --- | --- | +| [convert(FontType fontType)](#convert-com.aspose.font.FontType-) | Convertit la police en un autre format. | +| [convert(FontType fontType, Collection limitingCharacterSet)](#convert-com.aspose.font.FontType-java.util.Collection-java.lang.Integer--) | Convertit la police en un autre format avec un jeu de caractères limité *Note : le type de police TTF n'est désormais pris en charge que.* | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getAllGlyphIds()](#getAllGlyphIds--) | Renvoie un tableau de tous les identifiants de glyphes disponibles dans la police. | +| [getCffFont()](#getCffFont--) | Obtient la police CFF si elle est présente. | +| [getClass()](#getClass--) | | +| [getEncoding()](#getEncoding--) | Obtient l'encodage de la police. | +| [getFontDefinition()](#getFontDefinition--) | Obtient la définition de la police. | +| [getFontFamily()](#getFontFamily--) | Obtient la famille de la police. | +| [getFontName()](#getFontName--) | Obtient le nom de la face de la police. | +| [getFontNames()](#getFontNames--) | Obtient les noms de la police. | +| [getFontSaver()](#getFontSaver--) | Obtient la fonctionnalité d'enregistrement de la police. | +| [getFontStyle()](#getFontStyle--) | Obtient le style de la police. | +| [getFontType()](#getFontType--) | Obtient le type de la police. | +| [getGlyphAccessor()](#getGlyphAccessor--) | Accesseur de glyphes de la police. | +| [getGlyphById(GlyphId id)](#getGlyphById-com.aspose.font.GlyphId-) | Renvoie le glyphe par identifiant de glyphe. | +| [getGlyphById(String glyphName)](#getGlyphById-java.lang.String-) | Renvoie le glyphe par nom de glyphe. | +| [getGlyphById(long id)](#getGlyphById-long-) | Renvoie le glyphe par identifiant de glyphe. | +| [getGlyphComponentsById(GlyphId id, GlyphIdList componentsToPopulate)](#getGlyphComponentsById-com.aspose.font.GlyphId-com.aspose.font.GlyphIdList-) | Obtient un glyphe par l'identifiant de glyphe fourni et remplit la liste d'identifiants de glyphes passée avec les composants de ce glyphe. | +| [getGlyphComponentsById(String glyphName, GlyphIdList componentsToPopulate)](#getGlyphComponentsById-java.lang.String-com.aspose.font.GlyphIdList-) | Obtient un glyphe par le nom de glyphe fourni et remplit la liste d'identifiants de glyphes passée avec les composants de ce glyphe. | +| [getGlyphComponentsById(long id, GlyphIdList componentsToPopulate)](#getGlyphComponentsById-long-com.aspose.font.GlyphIdList-) | Obtient un glyphe par l'index de glyphe fourni et remplit la liste d'identifiants de glyphes passée avec les composants de ce glyphe. | +| [getGlyphIdType()](#getGlyphIdType--) | Obtient la spécification du type d'identifiant de glyphe. | +| [getGlyphsForText(String text)](#getGlyphsForText-java.lang.String-) | Obtient la représentation des glyphes pour le texte. | +| [getMetrics()](#getMetrics--) | Obtient les métriques de la police. | +| [getNumGlyphs()](#getNumGlyphs--) | Obtient le nombre de glyphes dans la police. | +| [getPostscriptNames()](#getPostscriptNames--) | Obtient les noms de police Postscript. | +| [getStyle()](#getStyle--) | Obtient le style de la police. | +| [getTtfTables()](#getTtfTables--) | Obtient les tables TTF. | +| [hashCode()](#hashCode--) | | +| [isSymbolic()](#isSymbolic--) | Renvoie vrai si la police est symbolique. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [open(FontDefinition fontDefinition)](#open-com.aspose.font.FontDefinition-) | Ouvre une police en utilisant l'objet FontDefinition. | +| [open(FontType fontType, byte[] fontData)](#open-com.aspose.font.FontType-byte---) | Ouvre une police en utilisant le type de police et le tableau d'octets des données de police. | +| [open(FontType fontType, StreamSource fontStreamSource)](#open-com.aspose.font.FontType-com.aspose.font.StreamSource-) | Ouvre une police en utilisant le type de police et la source du flux. | +| [open(FontType fontType, String fileName)](#open-com.aspose.font.FontType-java.lang.String-) | Ouvre une police en utilisant le type de police et le nom du fichier de police. | +| [save(OutputStream stream)](#save-java.io.OutputStream-) | Enregistre la police au format original. | +| [save(String fileName)](#save-java.lang.String-) | Enregistre la police au format original. | +| [saveToFormat(OutputStream stream, FontSavingFormats outFormat)](#saveToFormat-java.io.OutputStream-com.aspose.font.FontSavingFormats-) | Enregistre la police au format spécifié. | +| [setFontFamily(String value)](#setFontFamily-java.lang.String-) | Définit la famille de la police. | +| [setFontName(String value)](#setFontName-java.lang.String-) | Définit le nom de la face de la police. | +| [setStyle(String value)](#setStyle-java.lang.String-) | Définit le style de la police. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### convert(FontType fontType) {#convert-com.aspose.font.FontType-} +``` +public Font convert(FontType fontType) +``` + + +Convertit la police en un autre format. Remarque : le type de police TTF n'est désormais pris en charge que. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontType | [FontType](../../com.aspose.font/fonttype) | Type de format de police dans lequel convertir. | + +**Returns:** +[Font](../../com.aspose.font/font) - Font converted into new format. +### convert(FontType fontType, Collection limitingCharacterSet) {#convert-com.aspose.font.FontType-java.util.Collection-java.lang.Integer--} +``` +public Font convert(FontType fontType, Collection limitingCharacterSet) +``` + + +Convertit la police en un autre format avec un jeu de caractères limité *Note : le type de police TTF n'est désormais pris en charge que.* + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontType | [FontType](../../com.aspose.font/fonttype) | Type de format de police dans lequel convertir. | +| limitingCharacterSet | java.util.Collection | Ensemble de caractères limitant. | + +**Returns:** +[Font](../../com.aspose.font/font) - Font converted into new format. +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getAllGlyphIds() {#getAllGlyphIds--} +``` +public GlyphId[] getAllGlyphIds() +``` + + +Renvoie un tableau de tous les identifiants de glyphes disponibles dans la police. L'identifiant de glyphe est un nombre unique pour un glyphe, dépendant du type de police. L'identifiant de glyphe d'une police TTF peut être une instance de la classe ( GlyphStringId ) ou de la classe ( GlyphUInt32Id ). L'adressage des glyphes par nom (string) est pris en charge pour les polices TTF via le mappage de la table Post. En cas de police CFF, les structures CFF sont utilisées pour adresser les glyphes par leur nom. + +**Returns:** +com.aspose.font.GlyphId[] - Identifiants de glyphes. +### getCffFont() {#getCffFont--} +``` +public Font getCffFont() +``` + + +Obtient la police CFF si elle est présente. + +**Returns:** +[Font](../../com.aspose.font/font) - CFF Font. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getEncoding() {#getEncoding--} +``` +public IFontEncoding getEncoding() +``` + + +Obtient l'encodage de la police. + +**Returns:** +[IFontEncoding](../../com.aspose.font/ifontencoding) - Font encoding. +### getFontDefinition() {#getFontDefinition--} +``` +public FontDefinition getFontDefinition() +``` + + +Obtient la définition de la police. + +**Returns:** +[FontDefinition](../../com.aspose.font/fontdefinition) - Font definition. +### getFontFamily() {#getFontFamily--} +``` +public String getFontFamily() +``` + + +Obtient la famille de la police. + +**Returns:** +java.lang.String - Famille de police. +### getFontName() {#getFontName--} +``` +public String getFontName() +``` + + +Obtient le nom de la face de la police. + +**Returns:** +java.lang.String - Nom de la face de police. +### getFontNames() {#getFontNames--} +``` +public MultiLanguageString getFontNames() +``` + + +Obtient les noms de la police. + +**Returns:** +[MultiLanguageString](../../com.aspose.font/multilanguagestring) - Font names +### getFontSaver() {#getFontSaver--} +``` +public IFontSaver getFontSaver() +``` + + +Obtient la fonctionnalité d'enregistrement de la police. + +**Returns:** +[IFontSaver](../../com.aspose.font/ifontsaver) - Font save functionality. +### getFontStyle() {#getFontStyle--} +``` +public int getFontStyle() +``` + + +Obtient le style de la police. Il s'agit d'une valeur calculée et représentée dans un type généralisé. + +**Returns:** +int - Style de police. Généralement, une combinaison de valeurs de drapeaux constants de la classe FontStyle ou 0. +### getFontType() {#getFontType--} +``` +public FontType getFontType() +``` + + +Obtient le type de police. Renvoie la valeur FontType.TTF. + +**Returns:** +[FontType](../../com.aspose.font/fonttype) - Font type. +### getGlyphAccessor() {#getGlyphAccessor--} +``` +public IGlyphAccessor getGlyphAccessor() +``` + + +Accesseur de glyphes de police. Récupère les glyphes et les identifiants de glyphes. + +**Returns:** +[IGlyphAccessor](../../com.aspose.font/iglyphaccessor) - Font glyph accessor. +### getGlyphById(GlyphId id) {#getGlyphById-com.aspose.font.GlyphId-} +``` +public Glyph getGlyphById(GlyphId id) +``` + + +Renvoie le glyphe par identifiant de glyphe. L'identifiant de glyphe est un nombre unique pour un glyphe, dépendant du type de police. L'identifiant de glyphe d'une police TTF peut être une instance de la classe ( GlyphStringId ) ou de la classe ( GlyphUInt32Id ). L'adressage des glyphes par nom (string) est pris en charge pour les polices TTF via le mappage de la table Post. En cas de police CFF, les structures CFF sont utilisées pour adresser les glyphes par nom. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| id | [GlyphId](../../com.aspose.font/glyphid) | | + +**Returns:** +[Glyph](../../com.aspose.font/glyph) +### getGlyphById(String glyphName) {#getGlyphById-java.lang.String-} +``` +public Glyph getGlyphById(String glyphName) +``` + + +Renvoie le glyphe par nom de glyphe. L'adressage des glyphes par nom (string) est pris en charge pour les polices TTF via le mappage de la table Post. En cas de police CFF, les structures CFF sont utilisées pour adresser les glyphes par nom. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| glyphName | java.lang.String | Identifiant de chaîne de glyphe. | + +**Returns:** +[Glyph](../../com.aspose.font/glyph) - Glyph. +### getGlyphById(long id) {#getGlyphById-long-} +``` +public Glyph getGlyphById(long id) +``` + + +Renvoie le glyphe par identifiant de glyphe. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| id | long | Index de glyphe. | + +**Returns:** +[Glyph](../../com.aspose.font/glyph) - Glyph. +### getGlyphComponentsById(GlyphId id, GlyphIdList componentsToPopulate) {#getGlyphComponentsById-com.aspose.font.GlyphId-com.aspose.font.GlyphIdList-} +``` +public void getGlyphComponentsById(GlyphId id, GlyphIdList componentsToPopulate) +``` + + +Obtient un glyphe à partir de l'identifiant de glyphe fourni et remplit la liste d'identifiants de glyphes passée avec les composants de ce glyphe. L'identifiant de glyphe est un nombre unique pour un glyphe, dépendant du type de police. L'identifiant de glyphe d'une police TTF peut être une instance de la classe ( GlyphStringId ) ou de la classe ( GlyphUInt32Id ). L'adressage des glyphes par nom (string) est pris en charge pour les polices TTF via le mappage de la table Post. En cas de police CFF, les structures CFF sont utilisées pour adresser les glyphes par nom. + +-------------------- + +Une collection vide componentsToPopulate doit être passée, elle contiendra la liste des identifiants des composants de glyphe. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| id | [GlyphId](../../com.aspose.font/glyphid) | Identifiant de glyphe. | +| componentsToPopulate | [GlyphIdList](../../com.aspose.font/glyphidlist) | Liste des identifiants de glyphes à remplir. | + +### getGlyphComponentsById(String glyphName, GlyphIdList componentsToPopulate) {#getGlyphComponentsById-java.lang.String-com.aspose.font.GlyphIdList-} +``` +public void getGlyphComponentsById(String glyphName, GlyphIdList componentsToPopulate) +``` + + +Obtient un glyphe par le nom de glyphe fourni et remplit la liste d'identifiants de glyphes passée avec les composants de ce glyphe. + +-------------------- + +Une collection vide componentsToPopulate doit être passée, elle contiendra la liste des identifiants des composants de glyphe. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| glyphName | java.lang.String | Nom du glyphe. | +| componentsToPopulate | [GlyphIdList](../../com.aspose.font/glyphidlist) | Liste des identifiants de glyphes à remplir. | + +### getGlyphComponentsById(long id, GlyphIdList componentsToPopulate) {#getGlyphComponentsById-long-com.aspose.font.GlyphIdList-} +``` +public void getGlyphComponentsById(long id, GlyphIdList componentsToPopulate) +``` + + +Obtient un glyphe par l'index de glyphe fourni et remplit la liste d'identifiants de glyphes passée avec les composants de ce glyphe. + +-------------------- + +Une collection vide componentsToPopulate doit être passée, elle contiendra la liste des identifiants des composants de glyphe. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| id | long | Index de glyphe. | +| componentsToPopulate | [GlyphIdList](../../com.aspose.font/glyphidlist) | Liste des identifiants de glyphes à remplir. | + +### getGlyphIdType() {#getGlyphIdType--} +``` +public GlyphIdType getGlyphIdType() +``` + + +Obtient la spécification du type d'identifiant de glyphe. + +**Returns:** +[GlyphIdType](../../com.aspose.font/glyphidtype) - Glyph id type specification. +### getGlyphsForText(String text) {#getGlyphsForText-java.lang.String-} +``` +public GlyphId[] getGlyphsForText(String text) +``` + + +Obtient la représentation des glyphes pour le texte. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| text | java.lang.String | Texte d'entrée. | + +**Returns:** +com.aspose.font.GlyphId[] - tableau GlyphId. +### getMetrics() {#getMetrics--} +``` +public IFontMetrics getMetrics() +``` + + +Obtient les métriques de la police. + +**Returns:** +[IFontMetrics](../../com.aspose.font/ifontmetrics) - Font metrics. +### getNumGlyphs() {#getNumGlyphs--} +``` +public int getNumGlyphs() +``` + + +Obtient le nombre de glyphes dans la police. + +**Returns:** +int - Nombre de glyphes dans la police. +### getPostscriptNames() {#getPostscriptNames--} +``` +public MultiLanguageString getPostscriptNames() +``` + + +Obtient les noms de police Postscript. + +**Returns:** +[MultiLanguageString](../../com.aspose.font/multilanguagestring) - Postscript font names. +### getStyle() {#getStyle--} +``` +public String getStyle() +``` + + +Obtient le style de la police. Il s'agit d'une valeur de chaîne brute fournie par le fichier de police. + +**Returns:** +java.lang.String - Style de police. +### getTtfTables() {#getTtfTables--} +``` +public TtfTableRepository getTtfTables() +``` + + +Obtient les tables TTF. + +**Returns:** +[TtfTableRepository](../../com.aspose.font/ttftablerepository) - TTF tables. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### isSymbolic() {#isSymbolic--} +``` +public boolean isSymbolic() +``` + + +Renvoie vrai si la police est symbolique. + +**Returns:** +boolean - Vrai si la police est symbolique. +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### open(FontDefinition fontDefinition) {#open-com.aspose.font.FontDefinition-} +``` +public static Font open(FontDefinition fontDefinition) +``` + + +Ouvre une police en utilisant l'objet FontDefinition. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontDefinition | [FontDefinition](../../com.aspose.font/fontdefinition) | Objet de définition de police. | + +**Returns:** +[Font](../../com.aspose.font/font) - Font loaded. +### open(FontType fontType, byte[] fontData) {#open-com.aspose.font.FontType-byte---} +``` +public static Font open(FontType fontType, byte[] fontData) +``` + + +Ouvre une police en utilisant le type de police et le tableau d'octets des données de police. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontType | [FontType](../../com.aspose.font/fonttype) | Type de police. | +| fontData | byte[] | Tableau d'octets pour charger la police. | + +**Returns:** +[Font](../../com.aspose.font/font) - Font loaded. +### open(FontType fontType, StreamSource fontStreamSource) {#open-com.aspose.font.FontType-com.aspose.font.StreamSource-} +``` +public static Font open(FontType fontType, StreamSource fontStreamSource) +``` + + +Ouvre une police en utilisant le type de police et la source du flux. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontType | [FontType](../../com.aspose.font/fonttype) | Type de police. | +| fontStreamSource | [StreamSource](../../com.aspose.font/streamsource) | Source de flux pour la police. | + +**Returns:** +[Font](../../com.aspose.font/font) - Font loaded. +### open(FontType fontType, String fileName) {#open-com.aspose.font.FontType-java.lang.String-} +``` +public static Font open(FontType fontType, String fileName) +``` + + +Ouvre une police en utilisant le type de police et le nom du fichier de police. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontType | [FontType](../../com.aspose.font/fonttype) | Type de police. | +| fileName | java.lang.String | Nom du fichier de police. | + +**Returns:** +[Font](../../com.aspose.font/font) - Font loaded. +### save(OutputStream stream) {#save-java.io.OutputStream-} +``` +public void save(OutputStream stream) +``` + + +Enregistre la police au format original. + +-------------------- + +> ``` +> Note: following Font types are supported for saving: +> New TTF fonts; +> TTF Font subsets; +> CFF Font subsets; +> Type1 Font subsets. +> ``` + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| flux | java.io.OutputStream | Flux pour enregistrer la police. | + +### save(String fileName) {#save-java.lang.String-} +``` +public void save(String fileName) +``` + + +Enregistre la police au format original. + +-------------------- + +> ``` +> Note: following Font types are supported for saving: +> New TTF fonts; +> TTF Font subsets; +> CFF Font subsets; +> Type1 Font subsets. +> ``` + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fileName | java.lang.String | Fichier pour enregistrer la police. | + +### saveToFormat(OutputStream stream, FontSavingFormats outFormat) {#saveToFormat-java.io.OutputStream-com.aspose.font.FontSavingFormats-} +``` +public void saveToFormat(OutputStream stream, FontSavingFormats outFormat) +``` + + +Enregistre la police au format spécifié. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| flux | java.io.OutputStream | flux pour enregistrer la police | +| outFormat | [FontSavingFormats](../../com.aspose.font/fontsavingformats) | format souhaité | + +### setFontFamily(String value) {#setFontFamily-java.lang.String-} +``` +public void setFontFamily(String value) +``` + + +Définit la famille de la police. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | Nouvelle famille de police. | + +### setFontName(String value) {#setFontName-java.lang.String-} +``` +public void setFontName(String value) +``` + + +Définit le nom de la face de la police. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | Nouveau nom de face de police. | + +### setStyle(String value) {#setStyle-java.lang.String-} +``` +public void setStyle(String value) +``` + + +Définit le style de police. Il s'agit d'une valeur de chaîne brute fournie par le fichier de police. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | Nouveau style de police. | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/ttffontmetrics/_index.md b/french/java/com.aspose.font/ttffontmetrics/_index.md new file mode 100644 index 0000000000..54e1e1a5be --- /dev/null +++ b/french/java/com.aspose.font/ttffontmetrics/_index.md @@ -0,0 +1,484 @@ +--- +title: "TtfFontMetrics" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente les métriques de la police TTF." +type: docs +weight: 95 +url: /fr/java/com.aspose.font/ttffontmetrics/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.font.FontMetrics](../../com.aspose.font/fontmetrics) +``` +public class TtfFontMetrics extends FontMetrics +``` + +Représente les métriques de la police TTF. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getAscender()](#getAscender--) | Obtient la valeur de l'ascender. | +| [getAscender(double fontSize)](#getAscender-double-) | Renvoie l'ascender pour une taille de police spécifique. | +| [getClass()](#getClass--) | | +| [getDescender()](#getDescender--) | Obtient la valeur du descender. | +| [getDescender(double fontSize)](#getDescender-double-) | Renvoie le descender pour une taille de police spécifique. | +| [getFontBBox()](#getFontBBox--) | Obtient la valeur FontBBox. | +| [getFontMatrix()](#getFontMatrix--) | Obtient la valeur FontBBox. | +| [getGlyphBBox(GlyphId glyphId)](#getGlyphBBox-com.aspose.font.GlyphId-) | Renvoie le glyph Bbox. | +| [getGlyphWidth(GlyphId glyphId)](#getGlyphWidth-com.aspose.font.GlyphId-) | Renvoie la largeur des glyphes par identifiant de glyphe. | +| [getKerningValue(GlyphId prevGlyphId, GlyphId nextGlyphId)](#getKerningValue-com.aspose.font.GlyphId-com.aspose.font.GlyphId-) | Renvoie la valeur de crénage pour la paire de glyphes. | +| [getLineGap()](#getLineGap--) | Obtient la valeur LineGap. | +| [getTypoAscender()](#getTypoAscender--) | Obtient la valeur TypoAscender. | +| [getTypoAscender(double fontSize)](#getTypoAscender-double-) | Renvoie l'ascendant typographique pour une taille de Font size spécifique. | +| [getTypoDescender()](#getTypoDescender--) | Obtient la valeur TypoDescender. | +| [getTypoDescender(double fontSize)](#getTypoDescender-double-) | Renvoie le descendant typographique pour une taille de font size spécifique. | +| [getTypoLineGap()](#getTypoLineGap--) | Obtient la valeur TypoLineGap. | +| [getTypoLineGap(double fontSize)](#getTypoLineGap-double-) | Renvoie l'écart de ligne pour une taille de Font size spécifique. | +| [getUnitsPerEM()](#getUnitsPerEM--) | Obtient la valeur UnitsPerEM. | +| [hashCode()](#hashCode--) | | +| [isFixedPitch()](#isFixedPitch--) | Obtient la valeur IsFixedPitch. | +| [measureString(String unicode, double fontSize)](#measureString-java.lang.String-double-) | Mesure la chaîne et renvoie la largeur de la chaîne. | +| [measureString(long[] charCodes, double fontSize)](#measureString-long---double-) | Mesure le texte représenté sous forme de tableau de codes de caractères et renvoie la largeur de la chaîne. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setAscender(double value)](#setAscender-double-) | Définit la valeur de l'ascender. | +| [setDescender(double value)](#setDescender-double-) | Définit la valeur du descendeur. | +| [setGlyphWidth(GlyphId glyphId, double value)](#setGlyphWidth-com.aspose.font.GlyphId-double-) | Définit la largeur du glyph. | +| [setTypoAscender(double value)](#setTypoAscender-double-) | Définit la valeur TypoAscender. | +| [setTypoDescender(double value)](#setTypoDescender-double-) | Définit la valeur TypoDescender. | +| [setUnitsPerEM(long value)](#setUnitsPerEM-long-) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getAscender() {#getAscender--} +``` +public double getAscender() +``` + + +Obtient la valeur de l'ascender. + +**Returns:** +double - valeur Ascender. +### getAscender(double fontSize) {#getAscender-double-} +``` +public double getAscender(double fontSize) +``` + + +Renvoie l'ascender pour une taille de police spécifique. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontSize | double | Taille de police. | + +**Returns:** +double - valeur Ascender. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDescender() {#getDescender--} +``` +public double getDescender() +``` + + +Obtient la valeur du descender. + +**Returns:** +double - valeur Descender. +### getDescender(double fontSize) {#getDescender-double-} +``` +public double getDescender(double fontSize) +``` + + +Renvoie le descender pour une taille de police spécifique. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontSize | double | Taille de police. | + +**Returns:** +double - valeur Descender. +### getFontBBox() {#getFontBBox--} +``` +public FontBBox getFontBBox() +``` + + +Obtient la valeur FontBBox. + +**Returns:** +[FontBBox](../../com.aspose.font/fontbbox) +### getFontMatrix() {#getFontMatrix--} +``` +public TransformationMatrix getFontMatrix() +``` + + +Obtient la valeur FontBBox. + +**Returns:** +[TransformationMatrix](../../com.aspose.font/transformationmatrix) +### getGlyphBBox(GlyphId glyphId) {#getGlyphBBox-com.aspose.font.GlyphId-} +``` +public FontBBox getGlyphBBox(GlyphId glyphId) +``` + + +Renvoie le glyph Bbox. Renvoie FontBBox si le BBox n'était pas défini pour le glyph. Peut être remplacé par des héritiers d'encodage de police spécifiques. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| glyphId | [GlyphId](../../com.aspose.font/glyphid) | Identifiant du glyph. | + +**Returns:** +[FontBBox](../../com.aspose.font/fontbbox) - Glyph BBox. +### getGlyphWidth(GlyphId glyphId) {#getGlyphWidth-com.aspose.font.GlyphId-} +``` +public double getGlyphWidth(GlyphId glyphId) +``` + + +Renvoie la largeur des glyphes par identifiant de glyphe. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| glyphId | [GlyphId](../../com.aspose.font/glyphid) | Identifiant du glyph. | + +**Returns:** +double - Largeur du glyphe. +### getKerningValue(GlyphId prevGlyphId, GlyphId nextGlyphId) {#getKerningValue-com.aspose.font.GlyphId-com.aspose.font.GlyphId-} +``` +public double getKerningValue(GlyphId prevGlyphId, GlyphId nextGlyphId) +``` + + +Renvoie la valeur de crénage pour la paire de glyphes. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| prevGlyphId | [GlyphId](../../com.aspose.font/glyphid) | Premier glyphe de la paire. | +| nextGlyphId | [GlyphId](../../com.aspose.font/glyphid) | Taille de police. | + +**Returns:** +double - valeur de crénage +### getLineGap() {#getLineGap--} +``` +public double getLineGap() +``` + + +Obtient la valeur LineGap. + +**Returns:** +double - Valeur du LineGap. +### getTypoAscender() {#getTypoAscender--} +``` +public double getTypoAscender() +``` + + +Obtient la valeur TypoAscender. + +**Returns:** +double - Valeur de TypoAscender. +### getTypoAscender(double fontSize) {#getTypoAscender-double-} +``` +public double getTypoAscender(double fontSize) +``` + + +Renvoie l'ascendant typographique pour une taille de Font size spécifique. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontSize | double | Taille de police. | + +**Returns:** +double - Valeur de l'ascendant typographique. +### getTypoDescender() {#getTypoDescender--} +``` +public double getTypoDescender() +``` + + +Obtient la valeur TypoDescender. + +**Returns:** +double - Valeur de TypoDescender. +### getTypoDescender(double fontSize) {#getTypoDescender-double-} +``` +public double getTypoDescender(double fontSize) +``` + + +Renvoie le descendant typographique pour une taille de font size spécifique. + +param fontSize Taille de la police. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontSize | double | | + +**Returns:** +double - Valeur du descendant typographique. +### getTypoLineGap() {#getTypoLineGap--} +``` +public double getTypoLineGap() +``` + + +Obtient la valeur TypoLineGap. + +**Returns:** +double - Valeur de TypoLineGap. +### getTypoLineGap(double fontSize) {#getTypoLineGap-double-} +``` +public double getTypoLineGap(double fontSize) +``` + + +Renvoie l'écart de ligne pour une taille de Font size spécifique. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontSize | double | Taille de police. | + +**Returns:** +double - Valeur de l'écart de ligne. +### getUnitsPerEM() {#getUnitsPerEM--} +``` +public long getUnitsPerEM() +``` + + +Obtient la valeur UnitsPerEM. + +**Returns:** +long +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### isFixedPitch() {#isFixedPitch--} +``` +public boolean isFixedPitch() +``` + + +Obtient la valeur IsFixedPitch. + +**Returns:** +boolean - Valeur de IsFixedPitch. +### measureString(String unicode, double fontSize) {#measureString-java.lang.String-double-} +``` +public double measureString(String unicode, double fontSize) +``` + + +Mesure la chaîne et renvoie la largeur de la chaîne. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| unicode | java.lang.String | Chaîne Unicode. | +| fontSize | double | Taille de police. | + +**Returns:** +double - Largeur de la chaîne. +### measureString(long[] charCodes, double fontSize) {#measureString-long---double-} +``` +public double measureString(long[] charCodes, double fontSize) +``` + + +Mesure le texte représenté sous forme de tableau de codes de caractères et renvoie la largeur de la chaîne. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| charCodes | long[] | Chaîne de texte représentée sous forme de tableau de codes de caractères. | +| fontSize | double | Taille de police. | + +**Returns:** +double - Largeur de la chaîne. +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setAscender(double value) {#setAscender-double-} +``` +public void setAscender(double value) +``` + + +Définit la valeur de l'ascender. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | double | Valeur de l'ascendant. | + +### setDescender(double value) {#setDescender-double-} +``` +public void setDescender(double value) +``` + + +Définit la valeur du descendeur. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | double | Valeur du descendant. | + +### setGlyphWidth(GlyphId glyphId, double value) {#setGlyphWidth-com.aspose.font.GlyphId-double-} +``` +public void setGlyphWidth(GlyphId glyphId, double value) +``` + + +Définit la largeur du glyph. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| glyphId | [GlyphId](../../com.aspose.font/glyphid) | Identifiant du glyph. | +| valeur | double | Nouvelle largeur. | + +### setTypoAscender(double value) {#setTypoAscender-double-} +``` +public void setTypoAscender(double value) +``` + + +Définit la valeur TypoAscender. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | double | Valeur de TypoAscender. | + +### setTypoDescender(double value) {#setTypoDescender-double-} +``` +public void setTypoDescender(double value) +``` + + +Définit la valeur TypoDescender. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | double | Valeur de TypoDescender. | + +### setUnitsPerEM(long value) {#setUnitsPerEM-long-} +``` +public void setUnitsPerEM(long value) +``` + + +Définit la valeur UnitsPerEM. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | long | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/ttffpgmtable/_index.md b/french/java/com.aspose.font/ttffpgmtable/_index.md new file mode 100644 index 0000000000..d4dd1c44bb --- /dev/null +++ b/french/java/com.aspose.font/ttffpgmtable/_index.md @@ -0,0 +1,168 @@ +--- +title: "TtfFpgmTable" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente la table fpgm du fichier de police TTF." +type: docs +weight: 96 +url: /fr/java/com.aspose.font/ttffpgmtable/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.font.TtfTableBase](../../com.aspose.font/ttftablebase) +``` +public class TtfFpgmTable extends TtfTableBase +``` + +Représente la table "fpgm" du fichier de police TTF. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getOffset()](#getOffset--) | Obtient le décalage depuis le début du sfnt. | +| [getProgram()](#getProgram--) | Obtient le programme fpgm. | +| [getTag()](#getTag--) | Obtient le tag de la table. | +| [getTtfTables()](#getTtfTables--) | Référence au référentiel de tables TTF. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getOffset() {#getOffset--} +``` +public long getOffset() +``` + + +Obtient le décalage depuis le début du sfnt. + +**Returns:** +long - Décalage depuis le début du sfnt. +### getProgram() {#getProgram--} +``` +public byte[] getProgram() +``` + + +Obtient le programme fpgm. + +**Returns:** +byte[] - Programme fpgm. +### getTag() {#getTag--} +``` +public static String getTag() +``` + + +Obtient le tag de la table. + +**Returns:** +java.lang.String - Tag de la table. +### getTtfTables() {#getTtfTables--} +``` +public TtfTableRepository getTtfTables() +``` + + +Référence au référentiel de tables TTF. + +**Returns:** +[TtfTableRepository](../../com.aspose.font/ttftablerepository) - Reference to TTF table repository. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/ttfgasptable/_index.md b/french/java/com.aspose.font/ttfgasptable/_index.md new file mode 100644 index 0000000000..8ca3d9463d --- /dev/null +++ b/french/java/com.aspose.font/ttfgasptable/_index.md @@ -0,0 +1,190 @@ +--- +title: "TtfGaspTable" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente la table gasp du fichier de police TTF." +type: docs +weight: 97 +url: /fr/java/com.aspose.font/ttfgasptable/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.font.TtfTableBase](../../com.aspose.font/ttftablebase) +``` +public class TtfGaspTable extends TtfTableBase +``` + +Représente la table "gasp" du fichier de police TTF. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getGaspRanges()](#getGaspRanges--) | Obtient la liste des enregistrements GaspRange qui fournit des comportements recommandés pour diverses tailles ppem. | +| [getNumRanges()](#getNumRanges--) | Obtient les enregistrements GaspRange. | +| [getOffset()](#getOffset--) | Obtient le décalage depuis le début du sfnt. | +| [getTag()](#getTag--) | Obtient le tag de la table. | +| [getTtfTables()](#getTtfTables--) | Référence au référentiel de tables TTF. | +| [getVersion()](#getVersion--) | Obtient la version de la table. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getGaspRanges() {#getGaspRanges--} +``` +public List getGaspRanges() +``` + + +Obtient la liste des enregistrements GaspRange qui fournit des comportements recommandés pour diverses tailles ppem. + +**Returns:** +java.util.List - La liste des GaspRange. +### getNumRanges() {#getNumRanges--} +``` +public int getNumRanges() +``` + + +Obtient les enregistrements GaspRange. + +**Returns:** +int - Enregistrements GaspRange. +### getOffset() {#getOffset--} +``` +public long getOffset() +``` + + +Obtient le décalage depuis le début du sfnt. + +**Returns:** +long - Décalage depuis le début du sfnt. +### getTag() {#getTag--} +``` +public static String getTag() +``` + + +Obtient le tag de la table. + +**Returns:** +java.lang.String - Le tag de la table. +### getTtfTables() {#getTtfTables--} +``` +public TtfTableRepository getTtfTables() +``` + + +Référence au référentiel de tables TTF. + +**Returns:** +[TtfTableRepository](../../com.aspose.font/ttftablerepository) - Reference to TTF table repository. +### getVersion() {#getVersion--} +``` +public int getVersion() +``` + + +Obtient la version de la table. + +**Returns:** +int - La version de la table. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/ttfglyftable/_index.md b/french/java/com.aspose.font/ttfglyftable/_index.md new file mode 100644 index 0000000000..9a437afd1c --- /dev/null +++ b/french/java/com.aspose.font/ttfglyftable/_index.md @@ -0,0 +1,189 @@ +--- +title: "TtfGlyfTable" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente la table glyf du fichier de police TTF." +type: docs +weight: 98 +url: /fr/java/com.aspose.font/ttfglyftable/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.font.TtfTableBase](../../com.aspose.font/ttftablebase) +``` +public class TtfGlyfTable extends TtfTableBase +``` + +Représente la table "glyf" du fichier de police TTF. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [containsGlyph(int glyphIndex)](#containsGlyph-int-) | Renvoie true si la table contient le glyphe avec glyphIndex. | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getGlyph(long glyphIndex)](#getGlyph-long-) | Renvoie un glyphe par indice de glyphe. | +| [getOffset()](#getOffset--) | Obtient le décalage depuis le début du sfnt. | +| [getTag()](#getTag--) | Obtient le tag de la table. | +| [getTtfTables()](#getTtfTables--) | Référence au référentiel de tables TTF. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### containsGlyph(int glyphIndex) {#containsGlyph-int-} +``` +public boolean containsGlyph(int glyphIndex) +``` + + +Renvoie true si la table contient le glyphe avec glyphIndex. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| glyphIndex | int | Index de glyphe. | + +**Returns:** +boolean - True si la table contient le glyphe pour l'indice spécifié, false sinon. +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getGlyph(long glyphIndex) {#getGlyph-long-} +``` +public Glyph getGlyph(long glyphIndex) +``` + + +Renvoie un glyphe par indice de glyphe. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| glyphIndex | long | Index de glyphe. | + +**Returns:** +[Glyph](../../com.aspose.font/glyph) - Glyph Glyph related to index specified. +### getOffset() {#getOffset--} +``` +public long getOffset() +``` + + +Obtient le décalage depuis le début du sfnt. + +**Returns:** +long - Décalage depuis le début du sfnt. +### getTag() {#getTag--} +``` +public static String getTag() +``` + + +Obtient le tag de la table. + +**Returns:** +java.lang.String - Tag de la table. +### getTtfTables() {#getTtfTables--} +``` +public TtfTableRepository getTtfTables() +``` + + +Référence au référentiel de tables TTF. + +**Returns:** +[TtfTableRepository](../../com.aspose.font/ttftablerepository) - Reference to TTF table repository. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/ttfheadtable/_index.md b/french/java/com.aspose.font/ttfheadtable/_index.md new file mode 100644 index 0000000000..a831ce39dc --- /dev/null +++ b/french/java/com.aspose.font/ttfheadtable/_index.md @@ -0,0 +1,344 @@ +--- +title: "TtfHeadTable" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente la table d'en-tête du fichier de police TTF." +type: docs +weight: 99 +url: /fr/java/com.aspose.font/ttfheadtable/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.font.TtfTableBase](../../com.aspose.font/ttftablebase) +``` +public class TtfHeadTable extends TtfTableBase +``` + +Représente la table "head" du fichier de police TTF. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getCheckSumAdjustment()](#getCheckSumAdjustment--) | Obtient uint32 checkSumAdjustment. | +| [getClass()](#getClass--) | | +| [getCreated()](#getCreated--) | Obtient longDateTime créé date internationale. | +| [getFlags()](#getFlags--) | Obtient uint16 flags. | +| [getFontDirectionHint()](#getFontDirectionHint--) | Obtient int16 fontDirectionHint. 0 Glyphes à direction mixte ; 1 Seulement des glyphes fortement de gauche à droite ; 2 Comme 1 mais contient également des neutres ; -1 Seulement des glyphes fortement de droite à gauche ; -2 Comme -1 mais contient également des neutres. | +| [getFontRevision()](#getFontRevision--) | Obtient le fontRevision fixe défini par le fabricant de police. | +| [getGlyphDataFormat()](#getGlyphDataFormat--) | Obtient int16 glyphDataFormat 0 pour le format actuel. | +| [getIndexToLocFormat()](#getIndexToLocFormat--) | Obtient int16 indexToLocFormat 0 pour les décalages courts, 1 pour les longs. | +| [getLowestRecPPEM()](#getLowestRecPPEM--) | Obtient uint16 lowestRecPPEM plus petite taille lisible en pixels. | +| [getMacStyle()](#getMacStyle--) | Obtient uint16 macStyle. | +| [getMagicNumber()](#getMagicNumber--) | Obtient uint32 magicNumber défini à 0x5F0F3CF5. | +| [getModified()](#getModified--) | Obtient longDateTime modifié date internationale. | +| [getOffset()](#getOffset--) | Obtient le décalage depuis le début du sfnt. | +| [getTag()](#getTag--) | Obtient le tag de la table. | +| [getTtfTables()](#getTtfTables--) | Référence au référentiel de tables TTF. | +| [getUnitsPerEM()](#getUnitsPerEM--) | Obtient uint16 unitsPerEM plage de 64 à 16384. | +| [getVersion()](#getVersion--) | Version fixe 0x00010000 si (version 1.0). | +| [getXMax()](#getXMax--) | Obtient FWord xMax pour toutes les boîtes englobantes de glyphes. | +| [getXMin()](#getXMin--) | Obtient FWord xMin pour toutes les boîtes englobantes de glyphes. | +| [getYMax()](#getYMax--) | Obtient FWord yMax pour toutes les boîtes englobantes de glyphes. | +| [getYMin()](#getYMin--) | Obtient FWord yMin pour toutes les boîtes englobantes de glyphes. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getCheckSumAdjustment() {#getCheckSumAdjustment--} +``` +public long getCheckSumAdjustment() +``` + + +Obtient uint32 checkSumAdjustment. Pour calculer : le définir à 0, calculer la somme de contrôle pour la table 'head' et la placer dans le répertoire de tables, sommer l'ensemble de la police en tant que uint32, puis stocker B1B0AFBA - somme. La somme de contrôle pour la table 'head' ne sera pas incorrecte. C'est correct. + +**Returns:** +long - Uint32 checkSumAdjustment. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getCreated() {#getCreated--} +``` +public Date getCreated() +``` + + +Obtient longDateTime créé date internationale. + +**Returns:** +java.util.Date - LongDateTime créé date internationale. +### getFlags() {#getFlags--} +``` +public int getFlags() +``` + + +Obtient uint16 flags. + +**Returns:** +int - UInt16 flags. +### getFontDirectionHint() {#getFontDirectionHint--} +``` +public short getFontDirectionHint() +``` + + +Obtient int16 fontDirectionHint. 0 Glyphes à direction mixte ; 1 Seulement des glyphes fortement de gauche à droite ; 2 Comme 1 mais contient également des neutres ; -1 Seulement des glyphes fortement de droite à gauche ; -2 Comme -1 mais contient également des neutres. + +**Returns:** +short - Int16 fontDirectionHint. +### getFontRevision() {#getFontRevision--} +``` +public float getFontRevision() +``` + + +Obtient le fontRevision fixe défini par le fabricant de police. + +**Returns:** +float - Fixed fontRevision défini par le fabricant de police. +### getGlyphDataFormat() {#getGlyphDataFormat--} +``` +public short getGlyphDataFormat() +``` + + +Obtient int16 glyphDataFormat 0 pour le format actuel. + +**Returns:** +short - Int16 glyphDataFormat 0 pour le format actuel. +### getIndexToLocFormat() {#getIndexToLocFormat--} +``` +public short getIndexToLocFormat() +``` + + +Obtient int16 indexToLocFormat 0 pour les décalages courts, 1 pour les longs. + +**Returns:** +short - Int16 indexToLocFormat 0 pour les décalages courts, 1 pour les longs. +### getLowestRecPPEM() {#getLowestRecPPEM--} +``` +public int getLowestRecPPEM() +``` + + +Obtient uint16 lowestRecPPEM plus petite taille lisible en pixels. + +**Returns:** +int - UInt16 lowestRecPPEM la plus petite taille lisible en pixels. +### getMacStyle() {#getMacStyle--} +``` +public int getMacStyle() +``` + + +Obtient uint16 macStyle. + +**Returns:** +int - UInt16 macStyle. +### getMagicNumber() {#getMagicNumber--} +``` +public long getMagicNumber() +``` + + +Obtient uint32 magicNumber défini à 0x5F0F3CF5. + +**Returns:** +long - UInt32 magicNumber défini à 0x5F0F3CF5. +### getModified() {#getModified--} +``` +public Date getModified() +``` + + +Obtient longDateTime modifié date internationale. + +**Returns:** +java.util.Date - LongDateTime date internationale modifiée. +### getOffset() {#getOffset--} +``` +public long getOffset() +``` + + +Obtient le décalage depuis le début du sfnt. + +**Returns:** +long - Décalage depuis le début du sfnt. +### getTag() {#getTag--} +``` +public static String getTag() +``` + + +Obtient le tag de la table. + +**Returns:** +java.lang.String - Tag de la table. +### getTtfTables() {#getTtfTables--} +``` +public TtfTableRepository getTtfTables() +``` + + +Référence au référentiel de tables TTF. + +**Returns:** +[TtfTableRepository](../../com.aspose.font/ttftablerepository) - Reference to TTF table repository. +### getUnitsPerEM() {#getUnitsPerEM--} +``` +public long getUnitsPerEM() +``` + + +Obtient uint16 unitsPerEM plage de 64 à 16384. + +**Returns:** +long - UInt16 unitsPerEM plage de 64 à 16384. +### getVersion() {#getVersion--} +``` +public float getVersion() +``` + + +Version fixe 0x00010000 si (version 1.0). + +**Returns:** +float - Version fixe 0x00010000 si (version 1.0). +### getXMax() {#getXMax--} +``` +public short getXMax() +``` + + +Obtient FWord xMax pour toutes les boîtes englobantes de glyphes. + +**Returns:** +short - FWord xMax pour toutes les boîtes englobantes des glyphes. +### getXMin() {#getXMin--} +``` +public short getXMin() +``` + + +Obtient FWord xMin pour toutes les boîtes englobantes de glyphes. + +**Returns:** +short - FWord xMin pour toutes les boîtes englobantes des glyphes. +### getYMax() {#getYMax--} +``` +public short getYMax() +``` + + +Obtient FWord yMax pour toutes les boîtes englobantes de glyphes. + +**Returns:** +short - FWord yMax pour toutes les boîtes englobantes des glyphes. +### getYMin() {#getYMin--} +``` +public short getYMin() +``` + + +Obtient FWord yMin pour toutes les boîtes englobantes de glyphes. + +**Returns:** +short - FWord yMin pour toutes les boîtes englobantes des glyphes. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/ttfhheatable/_index.md b/french/java/com.aspose.font/ttfhheatable/_index.md new file mode 100644 index 0000000000..9fe8491dbf --- /dev/null +++ b/french/java/com.aspose.font/ttfhheatable/_index.md @@ -0,0 +1,300 @@ +--- +title: "TtfHheaTable" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente la table hhea du fichier de police TTF." +type: docs +weight: 100 +url: /fr/java/com.aspose.font/ttfhheatable/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.font.TtfTableBase](../../com.aspose.font/ttftablebase) +``` +public class TtfHheaTable extends TtfTableBase +``` + +Représente la table "hhea" du fichier de police TTF. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getAdvanceWidthMax()](#getAdvanceWidthMax--) | Obtient uFWord advanceWidthMax doit être cohérent avec les métriques horizontales. | +| [getAscent()](#getAscent--) | Obtient l'ascension. | +| [getCaretOffset()](#getCaretOffset--) | Obtient le décalage du caret. | +| [getCaretSlopeRise()](#getCaretSlopeRise--) | Obtient la montée du glissement du caret. | +| [getCaretSlopeRun()](#getCaretSlopeRun--) | Obtient la course du glissement du caret. | +| [getClass()](#getClass--) | | +| [getDescent()](#getDescent--) | Obtient la descente. | +| [getLineGap()](#getLineGap--) | Obtient le lineGap. | +| [getMetricDataFormat()](#getMetricDataFormat--) | Obtient le format des données métriques. | +| [getMinLeftSideBearing()](#getMinLeftSideBearing--) | Obtient la valeur MinLeftSideBearing. | +| [getMinRightSideBearing()](#getMinRightSideBearing--) | Obtient la valeur MinRightSideBearing. | +| [getNumOfLongHorMetrics()](#getNumOfLongHorMetrics--) | Obtient uint16 numOfLongHorMetrics nombre de largeurs d'avance dans la table des métriques. | +| [getOffset()](#getOffset--) | Obtient le décalage depuis le début du sfnt. | +| [getTag()](#getTag--) | Obtient le tag de la table. | +| [getTtfTables()](#getTtfTables--) | Référence au référentiel de tables TTF. | +| [getVersion()](#getVersion--) | Obtient la version. | +| [getXMaxExtent()](#getXMaxExtent--) | Obtient la valeur XMaxExtent. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getAdvanceWidthMax() {#getAdvanceWidthMax--} +``` +public int getAdvanceWidthMax() +``` + + +Obtient uFWord advanceWidthMax doit être cohérent avec les métriques horizontales. + +**Returns:** +int - uFWord advanceWidthMax doit être cohérent avec les métriques horizontales. +### getAscent() {#getAscent--} +``` +public short getAscent() +``` + + +Obtient l'ascension. + +**Returns:** +short - L'ascension. +### getCaretOffset() {#getCaretOffset--} +``` +public short getCaretOffset() +``` + + +Obtient le décalage du caret. + +**Returns:** +short - Le décalage du caret. +### getCaretSlopeRise() {#getCaretSlopeRise--} +``` +public short getCaretSlopeRise() +``` + + +Obtient la montée du glissement du caret. + +**Returns:** +short - La montée du glissement du caret. +### getCaretSlopeRun() {#getCaretSlopeRun--} +``` +public short getCaretSlopeRun() +``` + + +Obtient la course du glissement du caret. + +**Returns:** +short - La course du glissement du caret. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDescent() {#getDescent--} +``` +public short getDescent() +``` + + +Obtient la descente. + +**Returns:** +short - La descente. +### getLineGap() {#getLineGap--} +``` +public short getLineGap() +``` + + +Obtient le lineGap. + +**Returns:** +short - L'écart de ligne. +### getMetricDataFormat() {#getMetricDataFormat--} +``` +public short getMetricDataFormat() +``` + + +Obtient le format des données métriques. + +**Returns:** +short - Le format des données de métriques. +### getMinLeftSideBearing() {#getMinLeftSideBearing--} +``` +public short getMinLeftSideBearing() +``` + + +Obtient la valeur MinLeftSideBearing. + +**Returns:** +short - La valeur MinLeftSideBearing. +### getMinRightSideBearing() {#getMinRightSideBearing--} +``` +public short getMinRightSideBearing() +``` + + +Obtient la valeur MinRightSideBearing. + +**Returns:** +short - La valeur MinRightSideBearing. +### getNumOfLongHorMetrics() {#getNumOfLongHorMetrics--} +``` +public int getNumOfLongHorMetrics() +``` + + +Obtient uint16 numOfLongHorMetrics nombre de largeurs d'avance dans la table des métriques. + +**Returns:** +int - UInt16 numOfLongHorMetrics nombre de largeurs d'avance dans la table des métriques. +### getOffset() {#getOffset--} +``` +public long getOffset() +``` + + +Obtient le décalage depuis le début du sfnt. + +**Returns:** +long - Décalage depuis le début du sfnt. +### getTag() {#getTag--} +``` +public static String getTag() +``` + + +Obtient le tag de la table. + +**Returns:** +java.lang.String - Tag de la table. +### getTtfTables() {#getTtfTables--} +``` +public TtfTableRepository getTtfTables() +``` + + +Référence au référentiel de tables TTF. + +**Returns:** +[TtfTableRepository](../../com.aspose.font/ttftablerepository) - Reference to TTF table repository. +### getVersion() {#getVersion--} +``` +public float getVersion() +``` + + +Obtient la version. + +**Returns:** +float - Version du format de la table. +### getXMaxExtent() {#getXMaxExtent--} +``` +public short getXMaxExtent() +``` + + +Obtient la valeur XMaxExtent. + +**Returns:** +short - La valeur XMaxExtent. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/ttfhmtxtable/_index.md b/french/java/com.aspose.font/ttfhmtxtable/_index.md new file mode 100644 index 0000000000..a54a4df4a1 --- /dev/null +++ b/french/java/com.aspose.font/ttfhmtxtable/_index.md @@ -0,0 +1,190 @@ +--- +title: "TtfHmtxTable" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente la table hmtx du fichier de police TTF." +type: docs +weight: 101 +url: /fr/java/com.aspose.font/ttfhmtxtable/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.font.TtfTableBase](../../com.aspose.font/ttftablebase) +``` +public class TtfHmtxTable extends TtfTableBase +``` + +Représente la table "hmtx" du fichier de police TTF. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getAdditionalAdvanceWidth()](#getAdditionalAdvanceWidth--) | Dans la table hmtx, il peut y avoir des cas où le nombre total de glyphes n’est pas égal à hhea.numberOfHMetrics. | +| [getClass()](#getClass--) | | +| [getHMetrics()](#getHMetrics--) | Obtient les métriques horizontales. | +| [getLeftSidebearings()](#getLeftSidebearings--) | Obtient les marges latérales gauche. | +| [getOffset()](#getOffset--) | Obtient le décalage depuis le début du sfnt. | +| [getTag()](#getTag--) | Obtient le tag de la table. | +| [getTtfTables()](#getTtfTables--) | Référence au référentiel de tables TTF. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getAdditionalAdvanceWidth() {#getAdditionalAdvanceWidth--} +``` +public int getAdditionalAdvanceWidth() +``` + + +Dans la table hmtx, il peut y avoir des cas où le nombre total de glyphes n’est pas égal à hhea.numberOfHMetrics. Pour ces cas, la table hmtx contient un tableau supplémentaire 'leftSideBearing' qui correspond à la propriété LeftSidebearings. Mais les glyphes dont les index vont de hhea.numOfLongHorMetrics à maxp.numGlyphs ont également des largeurs. Et ces largeurs, conformément à la spécification de la table hmtx, ont les valeurs suivantes : "Here the advanceWidth is assumed to be the same as the advanceWidth for the last entry above". + +**Returns:** +int - Largeur d'avance supplémentaire. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getHMetrics() {#getHMetrics--} +``` +public TtfHmtxTable.MetricList getHMetrics() +``` + + +Obtient les métriques horizontales. + +**Returns:** +[MetricList](../../com.aspose.font/metriclist) - Horizontal metrics. +### getLeftSidebearings() {#getLeftSidebearings--} +``` +public short[] getLeftSidebearings() +``` + + +Obtient les marges latérales gauche. + +**Returns:** +short[] - Marges latérales gauche. +### getOffset() {#getOffset--} +``` +public long getOffset() +``` + + +Obtient le décalage depuis le début du sfnt. + +**Returns:** +long - Décalage depuis le début du sfnt. +### getTag() {#getTag--} +``` +public static String getTag() +``` + + +Obtient le tag de la table. + +**Returns:** +java.lang.String - Tag de la table. +### getTtfTables() {#getTtfTables--} +``` +public TtfTableRepository getTtfTables() +``` + + +Référence au référentiel de tables TTF. + +**Returns:** +[TtfTableRepository](../../com.aspose.font/ttftablerepository) - Reference to TTF table repository. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/ttflocatable/_index.md b/french/java/com.aspose.font/ttflocatable/_index.md new file mode 100644 index 0000000000..75f151c630 --- /dev/null +++ b/french/java/com.aspose.font/ttflocatable/_index.md @@ -0,0 +1,157 @@ +--- +title: "TtfLocaTable" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente la table loca du fichier de police TTF." +type: docs +weight: 102 +url: /fr/java/com.aspose.font/ttflocatable/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.font.TtfTableBase](../../com.aspose.font/ttftablebase) +``` +public class TtfLocaTable extends TtfTableBase +``` + +Représente la table "loca" du fichier de police TTF. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getOffset()](#getOffset--) | Obtient le décalage depuis le début du sfnt. | +| [getTag()](#getTag--) | Obtient le tag de la table. | +| [getTtfTables()](#getTtfTables--) | Référence au référentiel de tables TTF. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getOffset() {#getOffset--} +``` +public long getOffset() +``` + + +Obtient le décalage depuis le début du sfnt. + +**Returns:** +long - Décalage depuis le début du sfnt. +### getTag() {#getTag--} +``` +public static String getTag() +``` + + +Obtient le tag de la table. + +**Returns:** +java.lang.String - Tag de la table. +### getTtfTables() {#getTtfTables--} +``` +public TtfTableRepository getTtfTables() +``` + + +Référence au référentiel de tables TTF. + +**Returns:** +[TtfTableRepository](../../com.aspose.font/ttftablerepository) - Reference to TTF table repository. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/ttfltshtable/_index.md b/french/java/com.aspose.font/ttfltshtable/_index.md new file mode 100644 index 0000000000..03f1775ba2 --- /dev/null +++ b/french/java/com.aspose.font/ttfltshtable/_index.md @@ -0,0 +1,195 @@ +--- +title: "TtfLtshTable" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente la table Linear Threshold du fichier de police TTF." +type: docs +weight: 103 +url: /fr/java/com.aspose.font/ttfltshtable/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.font.TtfTableBase](../../com.aspose.font/ttftablebase) +``` +public class TtfLtshTable extends TtfTableBase +``` + +Représente la table Linear Threshold du fichier de police TTF. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getNumGlyphs()](#getNumGlyphs--) | Obtient le nombre de glyphes (à partir de "numGlyphs" dans la table 'maxp'). | +| [getOffset()](#getOffset--) | Obtient le décalage depuis le début du sfnt. | +| [getTag()](#getTag--) | Obtient le tag de la table. | +| [getTtfTables()](#getTtfTables--) | Référence au référentiel de tables TTF. | +| [getVersion()](#getVersion--) | Obtient la version de la table. | +| [getYPel(int glyphNum)](#getYPel-int-) | Renvoie la hauteur de pel verticale pour le glyphe/zero si le numéro du glyphe est incorrect. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getNumGlyphs() {#getNumGlyphs--} +``` +public int getNumGlyphs() +``` + + +Obtient le nombre de glyphes (à partir de "numGlyphs" dans la table 'maxp'). + +**Returns:** +int - Le nombre de glyphes (à partir de "numGlyphs" dans la table 'maxp'). +### getOffset() {#getOffset--} +``` +public long getOffset() +``` + + +Obtient le décalage depuis le début du sfnt. + +**Returns:** +long - Décalage depuis le début du sfnt. +### getTag() {#getTag--} +``` +public static String getTag() +``` + + +Obtient le tag de la table. + +**Returns:** +java.lang.String - Le tag de la table. +### getTtfTables() {#getTtfTables--} +``` +public TtfTableRepository getTtfTables() +``` + + +Référence au référentiel de tables TTF. + +**Returns:** +[TtfTableRepository](../../com.aspose.font/ttftablerepository) - Reference to TTF table repository. +### getVersion() {#getVersion--} +``` +public int getVersion() +``` + + +Obtient la version de la table. + +**Returns:** +int - La version de la table. +### getYPel(int glyphNum) {#getYPel-int-} +``` +public byte getYPel(int glyphNum) +``` + + +Renvoie la hauteur de pel verticale pour le glyphe/zero si le numéro du glyphe est incorrect. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| glyphNum | int | Un numéro de glyphe (indice). | + +**Returns:** +byte - La hauteur de pel verticale pour le glyphe/zero si le numéro du glyphe est incorrect. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/ttfmaxptable/_index.md b/french/java/com.aspose.font/ttfmaxptable/_index.md new file mode 100644 index 0000000000..26be92a0e3 --- /dev/null +++ b/french/java/com.aspose.font/ttfmaxptable/_index.md @@ -0,0 +1,333 @@ +--- +title: "TtfMaxpTable" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente la table maxp du fichier de police TTF" +type: docs +weight: 104 +url: /fr/java/com.aspose.font/ttfmaxptable/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.font.TtfTableBase](../../com.aspose.font/ttftablebase) +``` +public class TtfMaxpTable extends TtfTableBase +``` + +Représente la table "maxp" du fichier de police TTF +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getMaxComponentContours()](#getMaxComponentContours--) | Obtient uint16 maxComponentContours contours dans un glyphe composé. | +| [getMaxComponentDepth()](#getMaxComponentDepth--) | Obtient uint16 maxComponentDepth niveaux de récursion, mis à 0 si la police ne contient que des glyphes simples. | +| [getMaxComponentElements()](#getMaxComponentElements--) | Obtient uint16 maxComponentElements nombre de glyphes référencés au niveau supérieur. | +| [getMaxComponentPoints()](#getMaxComponentPoints--) | Obtient uint16 maxComponentPoints points dans un glyphe composé. | +| [getMaxContours()](#getMaxContours--) | Obtient uint16 maxContours contours dans un glyphe non composé. | +| [getMaxFunctionDefs()](#getMaxFunctionDefs--) | Obtient uint16 maxFunctionDefs nombre de FDEFs. | +| [getMaxInstructionDefs()](#getMaxInstructionDefs--) | Obtient uint16 maxInstructionDefs nombre de IDEFs. | +| [getMaxPoints()](#getMaxPoints--) | Obtient uint16 maxPoints points dans un glyphe non composé. | +| [getMaxSizeOfInstructions()](#getMaxSizeOfInstructions--) | Obtient uint16 maxSizeOfInstructions nombre d'octets pour les instructions de glyphe. | +| [getMaxStackElements()](#getMaxStackElements--) | Obtient uint16 maxStackElements profondeur maximale de la pile. | +| [getMaxStorage()](#getMaxStorage--) | Obtient uint16 maxStorage nombre d'emplacements de la zone de stockage. | +| [getMaxTwilightPoints()](#getMaxTwilightPoints--) | Obtient uint16 maxTwilightPoints points utilisés dans la zone Twilight (Z0). | +| [getMaxZones()](#getMaxZones--) | Obtient uint16 maxZones fixé à 2. | +| [getNumGlyphs()](#getNumGlyphs--) | Obtient uint16 numGlyphs le nombre de glyphes dans la police. | +| [getOffset()](#getOffset--) | Obtient le décalage depuis le début du sfnt. | +| [getTableVersion()](#getTableVersion--) | Obtient la version du format. | +| [getTag()](#getTag--) | Obtient le tag de la table. | +| [getTtfTables()](#getTtfTables--) | Référence au référentiel de tables TTF. | +| [getVersion()](#getVersion--) | Obtient la version fixe 0x00010000 si (version 1.0). | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getMaxComponentContours() {#getMaxComponentContours--} +``` +public int getMaxComponentContours() +``` + + +Obtient uint16 maxComponentContours contours dans un glyphe composé. + +**Returns:** +int - UInt16 maxComponentContours contours dans le glyphe composé. +### getMaxComponentDepth() {#getMaxComponentDepth--} +``` +public int getMaxComponentDepth() +``` + + +Obtient uint16 maxComponentDepth niveaux de récursion, mis à 0 si la police ne contient que des glyphes simples. + +**Returns:** +int - Uint16 maxComponentDepth niveaux de récursion, définissez à 0 si la police ne contient que des glyphes simples. +### getMaxComponentElements() {#getMaxComponentElements--} +``` +public int getMaxComponentElements() +``` + + +Obtient uint16 maxComponentElements nombre de glyphes référencés au niveau supérieur. + +**Returns:** +int - UInt16 maxComponentElements nombre de glyphes référencés au niveau supérieur. +### getMaxComponentPoints() {#getMaxComponentPoints--} +``` +public int getMaxComponentPoints() +``` + + +Obtient uint16 maxComponentPoints points dans un glyphe composé. + +**Returns:** +int - UInt16 maxComponentPoints points dans le glyphe composé. +### getMaxContours() {#getMaxContours--} +``` +public int getMaxContours() +``` + + +Obtient uint16 maxContours contours dans un glyphe non composé. + +**Returns:** +int - UInt16 maxContours contours dans le glyphe non composé. +### getMaxFunctionDefs() {#getMaxFunctionDefs--} +``` +public int getMaxFunctionDefs() +``` + + +Obtient uint16 maxFunctionDefs nombre de FDEFs. + +**Returns:** +int - UInt16 maxFunctionDefs nombre de FDEFs. +### getMaxInstructionDefs() {#getMaxInstructionDefs--} +``` +public int getMaxInstructionDefs() +``` + + +Obtient uint16 maxInstructionDefs nombre de IDEFs. + +**Returns:** +int - UInt16 maxInstructionDefs nombre de IDEFs. +### getMaxPoints() {#getMaxPoints--} +``` +public int getMaxPoints() +``` + + +Obtient uint16 maxPoints points dans un glyphe non composé. + +**Returns:** +int - UInt16 maxPoints points dans le glyphe non composé. +### getMaxSizeOfInstructions() {#getMaxSizeOfInstructions--} +``` +public int getMaxSizeOfInstructions() +``` + + +Obtient uint16 maxSizeOfInstructions nombre d'octets pour les instructions de glyphe. + +**Returns:** +int - UInt16 maxSizeOfInstructions nombre d'octets pour les instructions du glyphe. +### getMaxStackElements() {#getMaxStackElements--} +``` +public int getMaxStackElements() +``` + + +Obtient uint16 maxStackElements profondeur maximale de la pile. + +**Returns:** +int - UInt16 maxStackElements profondeur maximale de la pile. +### getMaxStorage() {#getMaxStorage--} +``` +public int getMaxStorage() +``` + + +Obtient uint16 maxStorage nombre d'emplacements de la zone de stockage. + +**Returns:** +int - UInt16 maxStorage nombre d'emplacements de la zone de stockage. +### getMaxTwilightPoints() {#getMaxTwilightPoints--} +``` +public int getMaxTwilightPoints() +``` + + +Obtient uint16 maxTwilightPoints points utilisés dans la zone Twilight (Z0). + +**Returns:** +int - UInt16 maxTwilightPoints points utilisés dans la zone Twilight (Z0). +### getMaxZones() {#getMaxZones--} +``` +public int getMaxZones() +``` + + +Obtient uint16 maxZones fixé à 2. + +**Returns:** +int - Uint16 maxZones défini à 2. +### getNumGlyphs() {#getNumGlyphs--} +``` +public int getNumGlyphs() +``` + + +Obtient uint16 numGlyphs le nombre de glyphes dans la police. + +**Returns:** +int - UInt16 numGlyphs le nombre de glyphes dans la police. +### getOffset() {#getOffset--} +``` +public long getOffset() +``` + + +Obtient le décalage depuis le début du sfnt. + +**Returns:** +long - Décalage depuis le début du sfnt. +### getTableVersion() {#getTableVersion--} +``` +public Version16Dot16 getTableVersion() +``` + + +Obtient la version du format. Utilisez les propriétés MajorNumber et MinorNUmber de l'objet Version16Dot16 en notation hexadécimale pour détecter la version utilisée. + +**Returns:** +[Version16Dot16](../../com.aspose.font/version16dot16) - Format version. +### getTag() {#getTag--} +``` +public static String getTag() +``` + + +Obtient le tag de la table. + +**Returns:** +java.lang.String - Tag de la table. +### getTtfTables() {#getTtfTables--} +``` +public TtfTableRepository getTtfTables() +``` + + +Référence au référentiel de tables TTF. + +**Returns:** +[TtfTableRepository](../../com.aspose.font/ttftablerepository) - Reference to TTF table repository. +### getVersion() {#getVersion--} +``` +public float getVersion() +``` + + +Obtient la version fixe 0x00010000 si (version 1.0). Obsolète, utilisez la propriété TableVersion à la place. + +**Returns:** +float - Version fixe 0x00010000 si (version 1.0). +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/ttfnametable/_index.md b/french/java/com.aspose.font/ttfnametable/_index.md new file mode 100644 index 0000000000..63c2fb9655 --- /dev/null +++ b/french/java/com.aspose.font/ttfnametable/_index.md @@ -0,0 +1,381 @@ +--- +title: "TtfNameTable" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente la table des noms du fichier de police TTF." +type: docs +weight: 105 +url: /fr/java/com.aspose.font/ttfnametable/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.font.TtfTableBase](../../com.aspose.font/ttftablebase) +``` +public class TtfNameTable extends TtfTableBase +``` + +Représente la table "name" du fichier de police TTF. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [addMultiLanguageNames(MultiLanguageString mlNames, PlatformId platformId, int platformSpecificId, NameId nameId)](#addMultiLanguageNames-com.aspose.font.MultiLanguageString-com.aspose.font.PlatformId-int-com.aspose.font.NameId-) | Extrait toutes les chaînes multilingues de l'objet mlNames passé et crée la structure NameRecord correspondante pour chaque chaîne extraite en utilisant les paramètres passés platformId , platformSpecificId et nameId . | +| [addName(NameId nameId, PlatformId platformId, int platformSpecificId, int languageId, String name)](#addName-com.aspose.font.NameId-com.aspose.font.PlatformId-int-int-java.lang.String-) | Ajoute une entrée dans la table. | +| [deleteRecords(PlatformId platformId, int platformSpecificId)](#deleteRecords-com.aspose.font.PlatformId-int-) | Supprime tous les enregistrements liés à la plateforme spécifiée | +| [deleteRecords(PlatformId platformId, int platformSpecificId, NameId nameId)](#deleteRecords-com.aspose.font.PlatformId-int-com.aspose.font.NameId-) | Supprime tous les enregistrements liés aux paramètres passés | +| [deleteRecords(PlatformId platformId, int platformSpecificId, NameId nameId, int languageId)](#deleteRecords-com.aspose.font.PlatformId-int-com.aspose.font.NameId-int-) | Supprime le(s) enregistrement(s) lié(s) aux paramètres spécifiés | +| [deleteRecordsByNameId(NameId nameId)](#deleteRecordsByNameId-com.aspose.font.NameId-) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getAllNameRecords()](#getAllNameRecords--) | Renvoie toutes les structures NameRecord de la table. | +| [getClass()](#getClass--) | | +| [getMultiLanguageNameById(NameId nameId)](#getMultiLanguageNameById-com.aspose.font.NameId-) | renvoie un nom par nameId | +| [getMultiLanguageNameById(NameId nameId, PlatformId platformId)](#getMultiLanguageNameById-com.aspose.font.NameId-com.aspose.font.PlatformId-) | Renvoie un nom par nameId en utilisant l'identifiant de plateforme passé. | +| [getMultiLanguageNameById(NameId nameId, PlatformId platformId, int platformSpecificId)](#getMultiLanguageNameById-com.aspose.font.NameId-com.aspose.font.PlatformId-int-) | Renvoie un nom sous forme d'objet de type MultiLanguageString . | +| [getNameById(NameId nameId)](#getNameById-com.aspose.font.NameId-) | Renvoie un nom par nameId s'il est trouvé, null sinon. | +| [getNameRecordsByNameId(NameId nameId)](#getNameRecordsByNameId-com.aspose.font.NameId-) | Renvoie toutes les structures NameRecord dont le champ NameId est égal à la valeur nameId passée. | +| [getOffset()](#getOffset--) | Obtient le décalage depuis le début du sfnt. | +| [getTag()](#getTag--) | Obtient le tag de la table. | +| [getTtfTables()](#getTtfTables--) | Référence au référentiel de tables TTF. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [updateName(PlatformId platformId, int platformSpecificId, NameId nameId, int languageId, String newName)](#updateName-com.aspose.font.PlatformId-int-com.aspose.font.NameId-int-java.lang.String-) | Met à jour le nom dans le(s) enregistrement(s) liés à la plateforme spécifiée (combinaison de platformId et platformSpecificId), à la catégorie (nameId) et à la langue (languageId). | +| [updateNamesByNameId(NameId nameId, String newName)](#updateNamesByNameId-com.aspose.font.NameId-java.lang.String-) | Sélectionne tous les enregistrements liés à la catégorie de chaîne logique, spécifiée par le paramètre nameId, et met à jour le champ nom (données de chaîne) dans ces enregistrements. | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### addMultiLanguageNames(MultiLanguageString mlNames, PlatformId platformId, int platformSpecificId, NameId nameId) {#addMultiLanguageNames-com.aspose.font.MultiLanguageString-com.aspose.font.PlatformId-int-com.aspose.font.NameId-} +``` +public void addMultiLanguageNames(MultiLanguageString mlNames, PlatformId platformId, int platformSpecificId, NameId nameId) +``` + + +Extrait toutes les chaînes multilingues de l'objet mlNames passé et crée la structure NameRecord correspondante pour chaque chaîne extraite en utilisant les paramètres passés platformId , platformSpecificId et nameId . La valeur du champ languageID est extraite de l'objet mlNames . Un nouvel enregistrement fraîchement créé est ajouté à la table. Si un enregistrement qui coïncide avec le nouvellement créé par les champs platformID, platformSpecificID, nameID et, langugeId sera trouvé, alors le nouvel enregistrement ne sera pas ajouté et seules les données de chaîne seront mises à jour pour l'enregistrement existant. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| mlNames | [MultiLanguageString](../../com.aspose.font/multilanguagestring) | Chaîne multilingue | +| platformId | [PlatformId](../../com.aspose.font/platformid) | Identifiant de plateforme | +| platformSpecificId | int | Identifiant d'encodage spécifique à la plateforme | +| nameId | [NameId](../../com.aspose.font/nameid) | Identifiant de nom, catégorie de chaîne logique, spécifié par l'énumération NameId | + +### addName(NameId nameId, PlatformId platformId, int platformSpecificId, int languageId, String name) {#addName-com.aspose.font.NameId-com.aspose.font.PlatformId-int-int-java.lang.String-} +``` +public void addName(NameId nameId, PlatformId platformId, int platformSpecificId, int languageId, String name) +``` + + +Ajoute une entrée dans la table. La catégorie de données de chaîne à ajouter est spécifiée par le paramètre name . + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nameId | [NameId](../../com.aspose.font/nameid) | Identifiant de nom, catégorie logique de chaîne, spécifiée par l'énumération [NameId](../../com.aspose.font/nameid). | +| platformId | [PlatformId](../../com.aspose.font/platformid) | Identifiant de plateforme. | +| platformSpecificId | int | Identifiant d'encodage spécifique à la plateforme. Veuillez utiliser une valeur provenant de l'une de ces énumérations - UnicodePlatformSpecificId , MacPlatformSpecificId , MSPlatformSpecificId . L'énumération à utiliser est définie par le contexte ( paramètre platformId ). | +| languageId | int | Identifiant de langue. Veuillez utiliser une valeur provenant des énumérations MSLanguageId ou MacLanguageId selon le contexte, défini par le paramètre platformId . | +| nom | java.lang.String | Données de chaîne réelles. | + +### deleteRecords(PlatformId platformId, int platformSpecificId) {#deleteRecords-com.aspose.font.PlatformId-int-} +``` +public void deleteRecords(PlatformId platformId, int platformSpecificId) +``` + + +Supprime tous les enregistrements liés à la plateforme spécifiée + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| platformId | [PlatformId](../../com.aspose.font/platformid) | Identifiant de plateforme | +| platformSpecificId | int | Identifiant d'encodage spécifique à la plateforme | + +### deleteRecords(PlatformId platformId, int platformSpecificId, NameId nameId) {#deleteRecords-com.aspose.font.PlatformId-int-com.aspose.font.NameId-} +``` +public void deleteRecords(PlatformId platformId, int platformSpecificId, NameId nameId) +``` + + +Supprime tous les enregistrements liés aux paramètres passés + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| platformId | [PlatformId](../../com.aspose.font/platformid) | Identifiant de plateforme | +| platformSpecificId | int | Identifiant d'encodage spécifique à la plateforme | +| nameId | [NameId](../../com.aspose.font/nameid) | Identifiant de nom, catégorie de chaîne logique, spécifié par l'énumération NameId | + +### deleteRecords(PlatformId platformId, int platformSpecificId, NameId nameId, int languageId) {#deleteRecords-com.aspose.font.PlatformId-int-com.aspose.font.NameId-int-} +``` +public void deleteRecords(PlatformId platformId, int platformSpecificId, NameId nameId, int languageId) +``` + + +Supprime le(s) enregistrement(s) lié(s) aux paramètres spécifiés + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| platformId | [PlatformId](../../com.aspose.font/platformid) | Identifiant de plateforme | +| platformSpecificId | int | Identifiant d'encodage spécifique à la plateforme | +| nameId | [NameId](../../com.aspose.font/nameid) | Identifiant de nom, catégorie de chaîne logique, spécifié par l'énumération NameId | +| languageId | int | Identifiant de langue | + +### deleteRecordsByNameId(NameId nameId) {#deleteRecordsByNameId-com.aspose.font.NameId-} +``` +public void deleteRecordsByNameId(NameId nameId) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nameId | [NameId](../../com.aspose.font/nameid) | | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getAllNameRecords() {#getAllNameRecords--} +``` +public NameRecord[] getAllNameRecords() +``` + + +Renvoie toutes les structures NameRecord de la table. + +**Returns:** +com.aspose.font.NameRecord[] - Toutes les structures NameRecord de la table. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getMultiLanguageNameById(NameId nameId) {#getMultiLanguageNameById-com.aspose.font.NameId-} +``` +public MultiLanguageString getMultiLanguageNameById(NameId nameId) +``` + + +renvoie un nom par nameId + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nameId | [NameId](../../com.aspose.font/nameid) | Identifiant de nom. | + +**Returns:** +[MultiLanguageString](../../com.aspose.font/multilanguagestring) - name +### getMultiLanguageNameById(NameId nameId, PlatformId platformId) {#getMultiLanguageNameById-com.aspose.font.NameId-com.aspose.font.PlatformId-} +``` +public MultiLanguageString getMultiLanguageNameById(NameId nameId, PlatformId platformId) +``` + + +Renvoie un nom par nameId en utilisant l'identifiant de plateforme passé. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nameId | [NameId](../../com.aspose.font/nameid) | Identifiant de nom. | +| platformId | [PlatformId](../../com.aspose.font/platformid) | Identifiant de plateforme. | + +**Returns:** +[MultiLanguageString](../../com.aspose.font/multilanguagestring) - Name. +### getMultiLanguageNameById(NameId nameId, PlatformId platformId, int platformSpecificId) {#getMultiLanguageNameById-com.aspose.font.NameId-com.aspose.font.PlatformId-int-} +``` +public MultiLanguageString getMultiLanguageNameById(NameId nameId, PlatformId platformId, int platformSpecificId) +``` + + +Renvoie un nom sous forme d'objet du type MultiLanguageString . La méthode collecte toutes les structures NameRecord qui coïncident avec les paramètres passés nameId, platformId et platformSpecificId, puis construit l'objet résultant à partir de cette liste de structures. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nameId | [NameId](../../com.aspose.font/nameid) | Identifiant de nom. | +| platformId | [PlatformId](../../com.aspose.font/platformid) | Identifiant de plateforme. | +| platformSpecificId | int | Identifiant spécifique à la plateforme. | + +**Returns:** +[MultiLanguageString](../../com.aspose.font/multilanguagestring) - Name. +### getNameById(NameId nameId) {#getNameById-com.aspose.font.NameId-} +``` +public String getNameById(NameId nameId) +``` + + +Renvoie un nom par nameId s'il est trouvé, null sinon. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nameId | [NameId](../../com.aspose.font/nameid) | identifiant de nom | + +**Returns:** +java.lang.String - nom +### getNameRecordsByNameId(NameId nameId) {#getNameRecordsByNameId-com.aspose.font.NameId-} +``` +public NameRecord[] getNameRecordsByNameId(NameId nameId) +``` + + +Renvoie toutes les structures NameRecord dont le champ NameId est égal à la valeur nameId passée. Si aucun enregistrement n'est trouvé, un tableau vide sera renvoyé. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nameId | [NameId](../../com.aspose.font/nameid) | identifiant de nom | + +**Returns:** +com.aspose.font.NameRecord[] - Tableau de structures NameRecord +### getOffset() {#getOffset--} +``` +public long getOffset() +``` + + +Obtient le décalage depuis le début du sfnt. + +**Returns:** +long - Décalage depuis le début du sfnt. +### getTag() {#getTag--} +``` +public static String getTag() +``` + + +Obtient le tag de la table. + +**Returns:** +java.lang.String - Tag de la table. +### getTtfTables() {#getTtfTables--} +``` +public TtfTableRepository getTtfTables() +``` + + +Référence au référentiel de tables TTF. + +**Returns:** +[TtfTableRepository](../../com.aspose.font/ttftablerepository) - Reference to TTF table repository. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### updateName(PlatformId platformId, int platformSpecificId, NameId nameId, int languageId, String newName) {#updateName-com.aspose.font.PlatformId-int-com.aspose.font.NameId-int-java.lang.String-} +``` +public void updateName(PlatformId platformId, int platformSpecificId, NameId nameId, int languageId, String newName) +``` + + +Met à jour le nom dans le(s) enregistrement(s) liés à la plateforme spécifiée (combinaison de platformId et platformSpecificId), à la catégorie (nameId) et à la langue (languageId). + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| platformId | [PlatformId](../../com.aspose.font/platformid) | Identifiant de plateforme | +| platformSpecificId | int | Identifiant d'encodage spécifique à la plateforme | +| nameId | [NameId](../../com.aspose.font/nameid) | Identifiant de nom, catégorie de chaîne logique, spécifié par l'énumération NameId | +| languageId | int | Identifiant de langue | +| newName | java.lang.String | Nouveau nom ou nouvelles données de chaîne | + +### updateNamesByNameId(NameId nameId, String newName) {#updateNamesByNameId-com.aspose.font.NameId-java.lang.String-} +``` +public void updateNamesByNameId(NameId nameId, String newName) +``` + + +Sélectionne tous les enregistrements liés à la catégorie logique de chaîne, spécifiée par le paramètre nameId, et met à jour le champ name (données de chaîne) dans ces enregistrements. Les champs liés à la plateforme (platformID, Platform-specific encoding ID) et à la langue (Language ID) ne sont pas affectés par cette méthode. Seules les données de chaîne du nom sont remplacées par un nouveau nom. Utilisez cette méthode avec prudence, car elle remplacera les noms originaux pour toutes les plateformes et langues associées à nameId. Elle peut engendrer des conflits dans les cas où les noms originaux avaient des valeurs différentes, car l'opération de remplacement change toutes ces valeurs par une seule nouvelle. Et cette nouvelle valeur peut présenter une incohérence logique avec certaines plateformes et langues. Cette méthode est utile lorsque le nom original a une représentation unique pour toutes les plateformes et langues, par exemple lorsque les données de chaîne du nom sont en anglais. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nameId | [NameId](../../com.aspose.font/nameid) | Identifiant de nom, catégorie de chaîne logique, spécifié par l'énumération NameId | +| newName | java.lang.String | Nouveau nom ou nouvelles données de chaîne | + +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/ttfos2table/_index.md b/french/java/com.aspose.font/ttfos2table/_index.md new file mode 100644 index 0000000000..0756e7975c --- /dev/null +++ b/french/java/com.aspose.font/ttfos2table/_index.md @@ -0,0 +1,578 @@ +--- +title: "TtfOs2Table" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente la table OS/2 du fichier de police TTF." +type: docs +weight: 106 +url: /fr/java/com.aspose.font/ttfos2table/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.font.TtfTableBase](../../com.aspose.font/ttftablebase) +``` +public class TtfOs2Table extends TtfTableBase +``` + +Représente la table "OS/2" du fichier de police TTF. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getAchVendId()](#getAchVendId--) | Obtient la valeur AchVendId. | +| [getClass()](#getClass--) | | +| [getFSSelection()](#getFSSelection--) | Contient des informations concernant la nature des motifs de police. | +| [getFSType()](#getFSType--) | Obtient la valeur FSType. | +| [getLicenseFlags()](#getLicenseFlags--) | Obtient des indicateurs incorporés (fsType) dans la représentation d'objet. | +| [getOffset()](#getOffset--) | Obtient le décalage depuis le début du sfnt. | +| [getPanose()](#getPanose--) | Cette série de 10 octets de nombres est utilisée pour décrire les caractéristiques visuelles d'une police donnée. | +| [getSCapHeight()](#getSCapHeight--) | Obtient la valeur SCapHeight. | +| [getSFamilyClass()](#getSFamilyClass--) | Ce paramètre est une classification du design de la famille de polices. | +| [getSTypoAscender()](#getSTypoAscender--) | Obtient la valeur STypoAscender. | +| [getSTypoDescender()](#getSTypoDescender--) | Obtient la valeur STypoDescender. | +| [getSTypoLineGap()](#getSTypoLineGap--) | Obtient la valeur STypoLineGap. | +| [getSXHeight()](#getSXHeight--) | Obtient la valeur SXHeight. | +| [getSupportedTableVersions()](#getSupportedTableVersions--) | Obtient les versions prises en charge de la table OS/2. | +| [getTag()](#getTag--) | Obtient le tag de la table. | +| [getTtfTables()](#getTtfTables--) | Référence au référentiel de tables TTF. | +| [getULCodePageRange()](#getULCodePageRange--) | Obtient la valeur ULCodePageRange. | +| [getULUnicodeRange()](#getULUnicodeRange--) | Obtient la valeur ULUnicodeRange. | +| [getUSBreakChar()](#getUSBreakChar--) | Obtient la valeur USBreakChar. | +| [getUSDefaultChar()](#getUSDefaultChar--) | Obtient la valeur USDefaultChar. | +| [getUSFirstCharIndex()](#getUSFirstCharIndex--) | Obtient la valeur USFirstCharIndex. | +| [getUSLastCharIndex()](#getUSLastCharIndex--) | Obtient la valeur USLastCharIndex. | +| [getUSLowerOpticalPointSize()](#getUSLowerOpticalPointSize--) | Obtient la valeur USLowerOpticalPointSize. | +| [getUSMaxContext()](#getUSMaxContext--) | Obtient la valeur USMaxContext. | +| [getUSUpperOpticalPointSize()](#getUSUpperOpticalPointSize--) | Obtient la valeur USUpperOpticalPointSize. | +| [getUSWeightClass()](#getUSWeightClass--) | Indique le poids visuel (degré de noirceur ou d'épaisseur des traits) des caractères dans la police. | +| [getUSWidthClass()](#getUSWidthClass--) | Indique une variation relative du rapport d'aspect normal (rapport largeur/hauteur) tel que spécifié par le concepteur de police pour les glyphes d'une police. | +| [getUSWinAscent()](#getUSWinAscent--) | Obtient la valeur USWinAscent. | +| [getUSWinDescent()](#getUSWinDescent--) | Obtient la valeur USWinDescent. | +| [getVersion()](#getVersion--) | Obtient la valeur Version. | +| [getXAvgCharWidth()](#getXAvgCharWidth--) | Obtient le paramètre Largeur moyenne des caractères. | +| [getYStrikeoutPosition()](#getYStrikeoutPosition--) | Obtient la valeur YStrikeoutPosition. | +| [getYStrikeoutSize()](#getYStrikeoutSize--) | Obtient la valeur YStrikeoutSize. | +| [getYSubscriptXOffset()](#getYSubscriptXOffset--) | Obtient la valeur YSubscriptXOffset. | +| [getYSubscriptXSize()](#getYSubscriptXSize--) | Obtient la valeur YSubscriptXSize. | +| [getYSubscriptYOffset()](#getYSubscriptYOffset--) | Obtient la valeur YSubscriptYOffset. | +| [getYSubscriptYSize()](#getYSubscriptYSize--) | Obtient la valeur YSubscriptYSize. | +| [getYSuperscriptXOffset()](#getYSuperscriptXOffset--) | Obtient la valeur YSuperscriptXOffset. | +| [getYSuperscriptXSize()](#getYSuperscriptXSize--) | Obtient la valeur YSuperscriptXSize. | +| [getYSuperscriptYOffset()](#getYSuperscriptYOffset--) | Obtient la valeur YSuperscriptYOffset. | +| [getYSuperscriptYSize()](#getYSuperscriptYSize--) | Obtient la valeur YSuperscriptYSize. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getAchVendId() {#getAchVendId--} +``` +public byte[] getAchVendId() +``` + + +Obtient la valeur AchVendId. + +**Returns:** +byte[] - AchVendId valeur. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getFSSelection() {#getFSSelection--} +``` +public int getFSSelection() +``` + + +Contient des informations concernant la nature des motifs de police. + +> ``` +> 0 bit 1 ITALIC Font contains Italic characters, otherwise they are upright. +> 1 UNDERSCORE Characters are underscored. +> 2 NEGATIVE Characters have their foreground and background reversed. +> 3 OUTLINED Outline (hollow) characters, otherwise they are solid. +> 4 STRIKEOUT Characters are overstruck. +> 5 bit 0 BOLD Characters are emboldened. +> 6 REGULAR Characters are in the standard weight/style for the font. +> ``` + +**Returns:** +int - Les informations. +### getFSType() {#getFSType--} +``` +public int getFSType() +``` + + +Obtient la valeur FSType. + +-------------------- + +Indique les droits de licence d'intégration de police pour la Font. + +**Returns:** +int - valeur FSType. +### getLicenseFlags() {#getLicenseFlags--} +``` +public LicenseFlags getLicenseFlags() +``` + + +Obtient des indicateurs incorporés (fsType) dans la représentation d'objet. + +**Returns:** +[LicenseFlags](../../com.aspose.font/licenseflags) - Embedded flags. +### getOffset() {#getOffset--} +``` +public long getOffset() +``` + + +Obtient le décalage depuis le début du sfnt. + +**Returns:** +long - Décalage depuis le début du sfnt. +### getPanose() {#getPanose--} +``` +public byte[] getPanose() +``` + + +Cette série de 10 octets de nombres est utilisée pour décrire les caractéristiques visuelles d'une police donnée. Ces caractéristiques sont ensuite utilisées pour associer la police à d'autres polices d'apparence similaire portant des noms différents. + +**Returns:** +byte[] - Les caractéristiques visuelles d'une police donnée. +### getSCapHeight() {#getSCapHeight--} +``` +public short getSCapHeight() +``` + + +Obtient la valeur SCapHeight. + +**Returns:** +short - valeur SCapHeight. +### getSFamilyClass() {#getSFamilyClass--} +``` +public short getSFamilyClass() +``` + + +Ce paramètre est une classification du design de famille de polices. La classe de police et la sous-classe de police sont des valeurs enregistrées attribuées par IBM à chaque famille de polices. Ce paramètre est destiné à être utilisé pour sélectionner une police alternative lorsque la police demandée n'est pas disponible. + +**Returns:** +short - Classification du design de famille de polices. +### getSTypoAscender() {#getSTypoAscender--} +``` +public short getSTypoAscender() +``` + + +Obtient la valeur STypoAscender. + +**Returns:** +short - valeur STypoAscender. +### getSTypoDescender() {#getSTypoDescender--} +``` +public short getSTypoDescender() +``` + + +Obtient la valeur STypoDescender. + +**Returns:** +short - valeur STypoDescender. +### getSTypoLineGap() {#getSTypoLineGap--} +``` +public short getSTypoLineGap() +``` + + +Obtient la valeur STypoLineGap. + +**Returns:** +short - valeur STypoLineGap. +### getSXHeight() {#getSXHeight--} +``` +public short getSXHeight() +``` + + +Obtient la valeur SXHeight. + +**Returns:** +short - valeur SXHeight. +### getSupportedTableVersions() {#getSupportedTableVersions--} +``` +public int[] getSupportedTableVersions() +``` + + +Obtient les versions prises en charge de la table OS/2. + +**Returns:** +int[] - Versions prises en charge de la table OS/2. +### getTag() {#getTag--} +``` +public static String getTag() +``` + + +Obtient le tag de la table. + +**Returns:** +java.lang.String - Tag de la table. +### getTtfTables() {#getTtfTables--} +``` +public TtfTableRepository getTtfTables() +``` + + +Référence au référentiel de tables TTF. + +**Returns:** +[TtfTableRepository](../../com.aspose.font/ttftablerepository) - Reference to TTF table repository. +### getULCodePageRange() {#getULCodePageRange--} +``` +public long[] getULCodePageRange() +``` + + +Obtient la valeur ULCodePageRange. + +**Returns:** +long[] - Valeur ULCodePageRange. +### getULUnicodeRange() {#getULUnicodeRange--} +``` +public long[] getULUnicodeRange() +``` + + +Obtient la valeur ULUnicodeRange. + +**Returns:** +long[] - Valeur ULUnicodeRange. +### getUSBreakChar() {#getUSBreakChar--} +``` +public int getUSBreakChar() +``` + + +Obtient la valeur USBreakChar. + +**Returns:** +int - Valeur USBreakChar. +### getUSDefaultChar() {#getUSDefaultChar--} +``` +public int getUSDefaultChar() +``` + + +Obtient la valeur USDefaultChar. + +**Returns:** +int - Valeur USDefaultChar. +### getUSFirstCharIndex() {#getUSFirstCharIndex--} +``` +public int getUSFirstCharIndex() +``` + + +Obtient la valeur USFirstCharIndex. + +**Returns:** +int - Valeur USFirstCharIndex. +### getUSLastCharIndex() {#getUSLastCharIndex--} +``` +public int getUSLastCharIndex() +``` + + +Obtient la valeur USLastCharIndex. + +**Returns:** +int - Valeur USLastCharIndex. +### getUSLowerOpticalPointSize() {#getUSLowerOpticalPointSize--} +``` +public int getUSLowerOpticalPointSize() +``` + + +Obtient la valeur USLowerOpticalPointSize. + +**Returns:** +int - La valeur USLowerOpticalPointSize. +### getUSMaxContext() {#getUSMaxContext--} +``` +public int getUSMaxContext() +``` + + +Obtient la valeur USMaxContext. + +**Returns:** +int - Valeur UsMaxContext. +### getUSUpperOpticalPointSize() {#getUSUpperOpticalPointSize--} +``` +public int getUSUpperOpticalPointSize() +``` + + +Obtient la valeur USUpperOpticalPointSize. + +**Returns:** +int - La valeur USUpperOpticalPointSize. +### getUSWeightClass() {#getUSWeightClass--} +``` +public int getUSWeightClass() +``` + + +Indique le poids visuel (degré de noirceur ou d'épaisseur des traits) des caractères dans la police. + +**Returns:** +int - Le poids visuel (degré de noirceur ou épaisseur des traits) des caractères dans la Font. +### getUSWidthClass() {#getUSWidthClass--} +``` +public int getUSWidthClass() +``` + + +Indique une variation relative du rapport d'aspect normal (rapport largeur/hauteur) tel que spécifié par le concepteur de police pour les glyphes d'une police. + +**Returns:** +int - Un changement relatif par rapport au rapport d'aspect normal (rapport largeur/hauteur) tel que spécifié par un concepteur de police pour les glyphes d'une Font. +### getUSWinAscent() {#getUSWinAscent--} +``` +public int getUSWinAscent() +``` + + +Obtient la valeur USWinAscent. + +**Returns:** +int - Valeur USWinAscent. +### getUSWinDescent() {#getUSWinDescent--} +``` +public int getUSWinDescent() +``` + + +Obtient la valeur USWinDescent. + +**Returns:** +int - Valeur USWinDescent. +### getVersion() {#getVersion--} +``` +public int getVersion() +``` + + +Obtient la valeur Version. + +**Returns:** +int - Valeur Version. +### getXAvgCharWidth() {#getXAvgCharWidth--} +``` +public short getXAvgCharWidth() +``` + + +Obtient le paramètre Largeur moyenne des caractères. + +**Returns:** +short - Le paramètre Average Character Width. +### getYStrikeoutPosition() {#getYStrikeoutPosition--} +``` +public short getYStrikeoutPosition() +``` + + +Obtient la valeur YStrikeoutPosition. + +**Returns:** +short - Valeur YStrikeoutPosition. +### getYStrikeoutSize() {#getYStrikeoutSize--} +``` +public short getYStrikeoutSize() +``` + + +Obtient la valeur YStrikeoutSize. + +**Returns:** +short - Valeur YStrikeoutSize. +### getYSubscriptXOffset() {#getYSubscriptXOffset--} +``` +public short getYSubscriptXOffset() +``` + + +Obtient la valeur YSubscriptXOffset. + +**Returns:** +short - Valeur YSubscriptXOffset. +### getYSubscriptXSize() {#getYSubscriptXSize--} +``` +public short getYSubscriptXSize() +``` + + +Obtient la valeur YSubscriptXSize. + +**Returns:** +short - Valeur YSubscriptXSize. +### getYSubscriptYOffset() {#getYSubscriptYOffset--} +``` +public short getYSubscriptYOffset() +``` + + +Obtient la valeur YSubscriptYOffset. + +**Returns:** +short - Valeur YSubscriptYOffset. +### getYSubscriptYSize() {#getYSubscriptYSize--} +``` +public short getYSubscriptYSize() +``` + + +Obtient la valeur YSubscriptYSize. + +**Returns:** +short - Valeur YSubscriptYSize. +### getYSuperscriptXOffset() {#getYSuperscriptXOffset--} +``` +public short getYSuperscriptXOffset() +``` + + +Obtient la valeur YSuperscriptXOffset. + +**Returns:** +short - Valeur YSuperscriptXOffset. +### getYSuperscriptXSize() {#getYSuperscriptXSize--} +``` +public short getYSuperscriptXSize() +``` + + +Obtient la valeur YSuperscriptXSize. + +**Returns:** +short - Valeur YSuperscriptXSize. +### getYSuperscriptYOffset() {#getYSuperscriptYOffset--} +``` +public short getYSuperscriptYOffset() +``` + + +Obtient la valeur YSuperscriptYOffset. + +**Returns:** +short - Valeur YSuperscriptYOffset. +### getYSuperscriptYSize() {#getYSuperscriptYSize--} +``` +public short getYSuperscriptYSize() +``` + + +Obtient la valeur YSuperscriptYSize. + +**Returns:** +court - valeur YSuperscriptYSize. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/ttfposttable/_index.md b/french/java/com.aspose.font/ttfposttable/_index.md new file mode 100644 index 0000000000..655eab0300 --- /dev/null +++ b/french/java/com.aspose.font/ttfposttable/_index.md @@ -0,0 +1,326 @@ +--- +title: "TtfPostTable" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente la table post du fichier de police TTF" +type: docs +weight: 107 +url: /fr/java/com.aspose.font/ttfposttable/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.font.TtfTableBase](../../com.aspose.font/ttftablebase) +``` +public class TtfPostTable extends TtfTableBase +``` + +Représente la table "post" du fichier de police TTF +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getAllGlyphIndexesForGlyphName(String glyphName)](#getAllGlyphIndexesForGlyphName-java.lang.String-) | Obtient le tableau des index de glyphes par nom de glyphe | +| [getClass()](#getClass--) | | +| [getFormat()](#getFormat--) | Obtient le format fixe (version) de cette table. | +| [getGlyphIndex(String glyphName)](#getGlyphIndex-java.lang.String-) | Obtient l'index du glyphe par nom de glyphe. | +| [getGlyphName(long glyphIndex)](#getGlyphName-long-) | Obtient le nom du glyphe par index de glyphe. | +| [getItalicAngle()](#getItalicAngle--) | Obtient fixed italicAngle Angle italique en degrés. | +| [getMaxMemType1()](#getMaxMemType1--) | Obtient uint32 maxMemType1 Utilisation maximale de la mémoire lorsqu'une TrueType Font est téléchargée en tant que Type 1 Font. | +| [getMaxMemType42()](#getMaxMemType42--) | Obtient uint32 maxMemType42 Utilisation maximale de la mémoire lorsqu'une TrueType font est téléchargée en tant que Type 42 Font. | +| [getMinMemType1()](#getMinMemType1--) | Obtient uint32 minMemType1 Utilisation minimale de la mémoire lorsqu'une TrueType Font est téléchargée en tant que Type 1 Font. | +| [getMinMemType42()](#getMinMemType42--) | Obtient uint32 minMemType42 Utilisation minimale de la mémoire lorsqu'une TrueType font est téléchargée en tant que Type 42 Font. | +| [getOffset()](#getOffset--) | Obtient le décalage depuis le début du sfnt. | +| [getTableFormat()](#getTableFormat--) | Obtient le format fixe (version) de cette table. | +| [getTag()](#getTag--) | Obtient le tag de la table. | +| [getTtfTables()](#getTtfTables--) | Référence au référentiel de tables TTF. | +| [getUnderlinePosition()](#getUnderlinePosition--) | Obtient FWord underlinePosition Position du soulignement. | +| [getUnderlineThickness()](#getUnderlineThickness--) | Obtient FWord underlineThickness Épaisseur du soulignement. | +| [hasNoPostScriptNames()](#hasNoPostScriptNames--) | Indique qu'aucune information de nom PostScript n'est fournie pour les glyphes de ce fichier de police. | +| [hashCode()](#hashCode--) | | +| [isFixedPitch()](#isFixedPitch--) | Obtient uint32 isFixedPitch. 0 si la police est à espacement proportionnel, non zéro si la Font n'est pas à espacement proportionnel (c.-à-d. à chasse fixe). | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getAllGlyphIndexesForGlyphName(String glyphName) {#getAllGlyphIndexesForGlyphName-java.lang.String-} +``` +public long[] getAllGlyphIndexesForGlyphName(String glyphName) +``` + + +Obtient le tableau des index de glyphes par nom de glyphe + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| glyphName | java.lang.String | Nom du glyphe | + +**Returns:** +long[] - tableau d'index de glyphes +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getFormat() {#getFormat--} +``` +public float getFormat() +``` + + +Obtient le format fixe (version) de cette table. + +**Returns:** +float - Format fixe (version) de cette table. +### getGlyphIndex(String glyphName) {#getGlyphIndex-java.lang.String-} +``` +public long getGlyphIndex(String glyphName) +``` + + +Obtient l'index du glyphe par nom de glyphe. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| glyphName | java.lang.String | Nom du glyphe. | + +**Returns:** +long - Index du glyphe. Lorsqu'aucune information de nom PostScript n'est fournie pour les glyphes de ce fichier de police, renvoie l'index 0, qui correspond au glyphe indéfini ou au glyphe \".notdef\". +### getGlyphName(long glyphIndex) {#getGlyphName-long-} +``` +public String getGlyphName(long glyphIndex) +``` + + +Obtient le nom du glyphe par index de glyphe. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| glyphIndex | long | Index de glyphe. | + +**Returns:** +java.lang.String - Nom du glyphe. Lorsqu'aucune information de nom PostScript n'est fournie pour les glyphes de ce fichier de police, renvoie null. +### getItalicAngle() {#getItalicAngle--} +``` +public float getItalicAngle() +``` + + +Obtient fixed italicAngle Angle italique en degrés. + +**Returns:** +float - fixed italicAngle Angle italique en degrés. +### getMaxMemType1() {#getMaxMemType1--} +``` +public long getMaxMemType1() +``` + + +Obtient uint32 maxMemType1 Utilisation maximale de la mémoire lorsqu'une TrueType Font est téléchargée en tant que Type 1 Font. + +**Returns:** +long - UInt32 maxMemType1 Utilisation maximale de la mémoire lorsqu'une TrueType Font est téléchargée en tant que Type 1 Font. +### getMaxMemType42() {#getMaxMemType42--} +``` +public long getMaxMemType42() +``` + + +Obtient uint32 maxMemType42 Utilisation maximale de la mémoire lorsqu'une TrueType font est téléchargée en tant que Type 42 Font. + +**Returns:** +long - UInt32 maxMemType42 Utilisation maximale de la mémoire lorsqu'une TrueType font est téléchargée en tant que Type 42 Font. +### getMinMemType1() {#getMinMemType1--} +``` +public long getMinMemType1() +``` + + +Obtient uint32 minMemType1 Utilisation minimale de la mémoire lorsqu'une TrueType Font est téléchargée en tant que Type 1 Font. + +**Returns:** +long - UInt32 minMemType1 Utilisation minimale de la mémoire lorsqu'une TrueType Font est téléchargée en tant que Type 1 Font. +### getMinMemType42() {#getMinMemType42--} +``` +public long getMinMemType42() +``` + + +Obtient uint32 minMemType42 Utilisation minimale de la mémoire lorsqu'une TrueType font est téléchargée en tant que Type 42 Font. + +**Returns:** +long - UInt32 minMemType42 Utilisation minimale de la mémoire lorsqu'une TrueType font est téléchargée en tant que Type 42 Font. +### getOffset() {#getOffset--} +``` +public long getOffset() +``` + + +Obtient le décalage depuis le début du sfnt. + +**Returns:** +long - Décalage depuis le début du sfnt. +### getTableFormat() {#getTableFormat--} +``` +public Version16Dot16 getTableFormat() +``` + + +Obtient le format fixe (version) de cette table. Utilisez les propriétés MajorNumber et MinorNUmber de l'objet Version16Dot16 en notation hexadécimale pour détecter la version utilisée. + +**Returns:** +[Version16Dot16](../../com.aspose.font/version16dot16) - Fixed format (version) of this table. +### getTag() {#getTag--} +``` +public static String getTag() +``` + + +Obtient le tag de la table. + +**Returns:** +java.lang.String - Tag de la table. +### getTtfTables() {#getTtfTables--} +``` +public TtfTableRepository getTtfTables() +``` + + +Référence au référentiel de tables TTF. + +**Returns:** +[TtfTableRepository](../../com.aspose.font/ttftablerepository) - Reference to TTF table repository. +### getUnderlinePosition() {#getUnderlinePosition--} +``` +public short getUnderlinePosition() +``` + + +Obtient FWord underlinePosition Position du soulignement. + +**Returns:** +short - FWord underlinePosition Position du soulignement. +### getUnderlineThickness() {#getUnderlineThickness--} +``` +public short getUnderlineThickness() +``` + + +Obtient FWord underlineThickness Épaisseur du soulignement. + +**Returns:** +short - FWord underlineThickness Épaisseur du soulignement. +### hasNoPostScriptNames() {#hasNoPostScriptNames--} +``` +public boolean hasNoPostScriptNames() +``` + + +Indique qu'aucune information de nom PostScript n'est fournie pour les glyphes de ce fichier de police. + +**Returns:** +boolean - True, si aucune information de nom PostScript n'est fournie pour les glyphes de ce fichier de police. False, sinon. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### isFixedPitch() {#isFixedPitch--} +``` +public long isFixedPitch() +``` + + +Obtient uint32 isFixedPitch. 0 si la police est à espacement proportionnel, non zéro si la Font n'est pas à espacement proportionnel (c.-à-d. à chasse fixe). + +**Returns:** +long - UInt32 isFixedPitch. 0 si la police est à espacement proportionnel, non zéro si la Font n'est pas à espacement proportionnel (c.-à-d. à chasse fixe). +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/ttfpreptable/_index.md b/french/java/com.aspose.font/ttfpreptable/_index.md new file mode 100644 index 0000000000..f0f95e592c --- /dev/null +++ b/french/java/com.aspose.font/ttfpreptable/_index.md @@ -0,0 +1,168 @@ +--- +title: "TtfPrepTable" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente la table prep du fichier de police TTF." +type: docs +weight: 108 +url: /fr/java/com.aspose.font/ttfpreptable/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.font.TtfTableBase](../../com.aspose.font/ttftablebase) +``` +public class TtfPrepTable extends TtfTableBase +``` + +Représente la table "prep" du fichier de police TTF. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getOffset()](#getOffset--) | Obtient le décalage depuis le début du sfnt. | +| [getProgram()](#getProgram--) | Ensemble d'instructions. | +| [getTag()](#getTag--) | Obtient le tag de la table. | +| [getTtfTables()](#getTtfTables--) | Référence au référentiel de tables TTF. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getOffset() {#getOffset--} +``` +public long getOffset() +``` + + +Obtient le décalage depuis le début du sfnt. + +**Returns:** +long - Décalage depuis le début du sfnt. +### getProgram() {#getProgram--} +``` +public byte[] getProgram() +``` + + +Ensemble d'instructions. + +**Returns:** +byte[] - Ensemble d'instructions. +### getTag() {#getTag--} +``` +public static String getTag() +``` + + +Obtient le tag de la table. + +**Returns:** +java.lang.String - Tag de la table. +### getTtfTables() {#getTtfTables--} +``` +public TtfTableRepository getTtfTables() +``` + + +Référence au référentiel de tables TTF. + +**Returns:** +[TtfTableRepository](../../com.aspose.font/ttftablerepository) - Reference to TTF table repository. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/ttfstattable/_index.md b/french/java/com.aspose.font/ttfstattable/_index.md new file mode 100644 index 0000000000..c2ac076a3e --- /dev/null +++ b/french/java/com.aspose.font/ttfstattable/_index.md @@ -0,0 +1,267 @@ +--- +title: "TtfStatTable" +second_title: "Référence API d'Aspose.Font pour Java" +description: +type: docs +weight: 109 +url: /fr/java/com.aspose.font/ttfstattable/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.font.TtfTableBase](../../com.aspose.font/ttftablebase) +``` +public class TtfStatTable extends TtfTableBase +``` +## Méthodes + +| Méthode | Description | +| --- | --- | +| [addAxisRecord(AxisRecord axisRecord)](#addAxisRecord-com.aspose.font.AxisRecord-) | Ajoute une structure Axis Record à la table. | +| [addAxisValueTable(AxisValueTableBase axisValueTable)](#addAxisValueTable-com.aspose.font.AxisValueTableBase-) | Ajoute une structure Axis Value Table à la table. | +| [clearAxisRecords()](#clearAxisRecords--) | Supprime tous les enregistrements d'axe de la table. | +| [clearAxisValueTables()](#clearAxisValueTables--) | Supprime toutes les tables de valeurs d'axe de la table. | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getAxisRecords()](#getAxisRecords--) | Renvoie le tableau des axes de conception. | +| [getAxisValueCount()](#getAxisValueCount--) | Renvoie le nombre de tables de valeurs d'axe. | +| [getAxisValueTables()](#getAxisValueTables--) | Renvoie le tableau des tables de valeurs d'axe. | +| [getClass()](#getClass--) | | +| [getDesignAxisCount()](#getDesignAxisCount--) | Renvoie le nombre d'enregistrements d'axe. | +| [getElidedFallbackName()](#getElidedFallbackName--) | Spec: Nom utilisé comme solution de repli lorsque la projection des noms dans un modèle de police particulier produit un nom de sous-famille ne contenant que des éléments élidables. | +| [getElidedFallbackNameId()](#getElidedFallbackNameId--) | Spec: ID de nom utilisé comme solution de repli lorsque la projection des noms dans un modèle de police particulier produit un nom de sous-famille ne contenant que des éléments élidables. | +| [getOffset()](#getOffset--) | Obtient le décalage depuis le début du sfnt. | +| [getTag()](#getTag--) | Obtient le tag de la table. | +| [getTtfTables()](#getTtfTables--) | Référence au référentiel de tables TTF. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### addAxisRecord(AxisRecord axisRecord) {#addAxisRecord-com.aspose.font.AxisRecord-} +``` +public void addAxisRecord(AxisRecord axisRecord) +``` + + +Ajoute une structure Axis Record à la table. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| axisRecord | [AxisRecord](../../com.aspose.font/axisrecord) | Structure AxisRecord | + +### addAxisValueTable(AxisValueTableBase axisValueTable) {#addAxisValueTable-com.aspose.font.AxisValueTableBase-} +``` +public void addAxisValueTable(AxisValueTableBase axisValueTable) +``` + + +Ajoute une structure Axis Value Table à la table. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| axisValueTable | [AxisValueTableBase](../../com.aspose.font/axisvaluetablebase) | Structure Axis value table | + +### clearAxisRecords() {#clearAxisRecords--} +``` +public void clearAxisRecords() +``` + + +Supprime tous les enregistrements d'axe de la table. + +### clearAxisValueTables() {#clearAxisValueTables--} +``` +public void clearAxisValueTables() +``` + + +Supprime toutes les tables de valeurs d'axe de la table. + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getAxisRecords() {#getAxisRecords--} +``` +public AxisRecord[] getAxisRecords() +``` + + +Renvoie le tableau des axes de conception. Le tableau des axes est un tableau de structures de type Axis Record. Spec: l'enregistrement d'axe fournit des informations sur un seul axe de conception. + +**Returns:** +com.aspose.font.AxisRecord[] - Le tableau des axes de conception. +### getAxisValueCount() {#getAxisValueCount--} +``` +public int getAxisValueCount() +``` + + +Renvoie le nombre de tables de valeurs d'axe. + +**Returns:** +int - Le nombre de tables de valeurs d'axe. +### getAxisValueTables() {#getAxisValueTables--} +``` +public AxisValueTableBase[] getAxisValueTables() +``` + + +Renvoie le tableau des tables de valeurs d'axe. Spec: Les tables de valeurs d'axe fournissent des détails concernant une valeur d'attribut de style spécifique sur un axe particulier de variation de conception, ou une combinaison de valeurs d'axes de variation de conception, ainsi que la relation de ces valeurs avec les libellés utilisés comme éléments dans les noms de sous-famille. + +**Returns:** +com.aspose.font.AxisValueTableBase[] - Le tableau des tables de valeurs d'axe. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDesignAxisCount() {#getDesignAxisCount--} +``` +public int getDesignAxisCount() +``` + + +Renvoie le nombre d'enregistrements d'axe. Spéc: dans une police contenant une table 'fvar', cette valeur doit être supérieure ou égale à la valeur axisCount dans la table 'fvar'. Dans toutes les polices, elle doit être supérieure à zéro si axisValueCount est supérieur à zéro. + +**Returns:** +int - Le nombre d'enregistrements d'axe. +### getElidedFallbackName() {#getElidedFallbackName--} +``` +public String getElidedFallbackName() +``` + + +Spec: Nom utilisé comme solution de repli lorsque la projection des noms dans un modèle de police particulier produit un nom de sous-famille ne contenant que des éléments élidables. + +**Returns:** +java.lang.String - Le nom utilisé comme valeur de secours lorsque la projection des noms dans un modèle de police particulier produit un nom de sous-famille ne contenant que des éléments éliminables. +### getElidedFallbackNameId() {#getElidedFallbackNameId--} +``` +public int getElidedFallbackNameId() +``` + + +Spec: ID de nom utilisé comme solution de repli lorsque la projection des noms dans un modèle de police particulier produit un nom de sous-famille ne contenant que des éléments élidables. + +**Returns:** +int - L'ID du nom. +### getOffset() {#getOffset--} +``` +public long getOffset() +``` + + +Obtient le décalage depuis le début du sfnt. + +**Returns:** +long - Décalage depuis le début du sfnt. +### getTag() {#getTag--} +``` +public static String getTag() +``` + + +Obtient le tag de la table. + +**Returns:** +java.lang.String - Tag de la table. +### getTtfTables() {#getTtfTables--} +``` +public TtfTableRepository getTtfTables() +``` + + +Référence au référentiel de tables TTF. + +**Returns:** +[TtfTableRepository](../../com.aspose.font/ttftablerepository) - Reference to TTF table repository. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/ttftablebase/_index.md b/french/java/com.aspose.font/ttftablebase/_index.md new file mode 100644 index 0000000000..9f168a3cdd --- /dev/null +++ b/french/java/com.aspose.font/ttftablebase/_index.md @@ -0,0 +1,146 @@ +--- +title: "TtfTableBase" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente la définition de la table TTF." +type: docs +weight: 110 +url: /fr/java/com.aspose.font/ttftablebase/ +--- +**Inheritance:** +java.lang.Object +``` +public class TtfTableBase +``` + +Représente la définition de la table TTF. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getOffset()](#getOffset--) | Obtient le décalage depuis le début du sfnt. | +| [getTtfTables()](#getTtfTables--) | Référence au référentiel de tables TTF. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getOffset() {#getOffset--} +``` +public long getOffset() +``` + + +Obtient le décalage depuis le début du sfnt. + +**Returns:** +long - Décalage depuis le début du sfnt. +### getTtfTables() {#getTtfTables--} +``` +public TtfTableRepository getTtfTables() +``` + + +Référence au référentiel de tables TTF. + +**Returns:** +[TtfTableRepository](../../com.aspose.font/ttftablerepository) - Reference to TTF table repository. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/ttftablerepository/_index.md b/french/java/com.aspose.font/ttftablerepository/_index.md new file mode 100644 index 0000000000..27618148d1 --- /dev/null +++ b/french/java/com.aspose.font/ttftablerepository/_index.md @@ -0,0 +1,333 @@ +--- +title: "TtfTableRepository" +second_title: "Référence API d'Aspose.Font pour Java" +description: "dépôt des tables TTF" +type: docs +weight: 111 +url: /fr/java/com.aspose.font/ttftablerepository/ +--- +**Inheritance:** +java.lang.Object +``` +public class TtfTableRepository +``` + +dépôt des tables TTF +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getCMapTable()](#getCMapTable--) | Obtient la table cmap. | +| [getCffTable()](#getCffTable--) | Obtient la table cff. | +| [getClass()](#getClass--) | | +| [getCvtTable()](#getCvtTable--) | Obtient la table cvt. | +| [getFpgmTable()](#getFpgmTable--) | Obtient la table fpgm. | +| [getGaspTable()](#getGaspTable--) | Obtient la table GASP. | +| [getGlyfTable()](#getGlyfTable--) | Obtient la table glyf. | +| [getHeadTable()](#getHeadTable--) | Obtient la table head. | +| [getHheaTable()](#getHheaTable--) | Obtient la table hhea. | +| [getHmtxTable()](#getHmtxTable--) | Obtient la table hmtx. | +| [getLocaTable()](#getLocaTable--) | Obtient la table loca. | +| [getLtshTable()](#getLtshTable--) | Obtient la table LTSH. | +| [getMaxpTable()](#getMaxpTable--) | Obtient la table maxp. | +| [getNameTable()](#getNameTable--) | Obtient la table name. | +| [getOs2Table()](#getOs2Table--) | Obtient la table OS/2. | +| [getPostTable()](#getPostTable--) | Obtient la table post. | +| [getPrepTable()](#getPrepTable--) | Obtient la table prep. | +| [getStatTable()](#getStatTable--) | Obtient la table STAT. | +| [getVheaTable()](#getVheaTable--) | Obtient la table vhea. | +| [getVmtxTable()](#getVmtxTable--) | Obtient la table vmtx. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getCMapTable() {#getCMapTable--} +``` +public TtfCMapTable getCMapTable() +``` + + +Obtient la table cmap. + +**Returns:** +[TtfCMapTable](../../com.aspose.font/ttfcmaptable) - Cmap table. +### getCffTable() {#getCffTable--} +``` +public TtfCffTable getCffTable() +``` + + +Obtient la table cff. + +**Returns:** +[TtfCffTable](../../com.aspose.font/ttfcfftable) - Cff table. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getCvtTable() {#getCvtTable--} +``` +public TtfCvtTable getCvtTable() +``` + + +Obtient la table cvt. + +**Returns:** +[TtfCvtTable](../../com.aspose.font/ttfcvttable) - Cvt table. +### getFpgmTable() {#getFpgmTable--} +``` +public TtfFpgmTable getFpgmTable() +``` + + +Obtient la table fpgm. + +**Returns:** +[TtfFpgmTable](../../com.aspose.font/ttffpgmtable) - Fpgm table. +### getGaspTable() {#getGaspTable--} +``` +public TtfGaspTable getGaspTable() +``` + + +Obtient la table GASP. + +**Returns:** +[TtfGaspTable](../../com.aspose.font/ttfgasptable) - The GASP table. +### getGlyfTable() {#getGlyfTable--} +``` +public TtfGlyfTable getGlyfTable() +``` + + +Obtient la table glyf. + +**Returns:** +[TtfGlyfTable](../../com.aspose.font/ttfglyftable) - Glyf table. +### getHeadTable() {#getHeadTable--} +``` +public TtfHeadTable getHeadTable() +``` + + +Obtient la table head. + +**Returns:** +[TtfHeadTable](../../com.aspose.font/ttfheadtable) - Head table. +### getHheaTable() {#getHheaTable--} +``` +public TtfHheaTable getHheaTable() +``` + + +Obtient la table hhea. + +**Returns:** +[TtfHheaTable](../../com.aspose.font/ttfhheatable) - Hhea table. +### getHmtxTable() {#getHmtxTable--} +``` +public TtfHmtxTable getHmtxTable() +``` + + +Obtient la table hmtx. + +**Returns:** +[TtfHmtxTable](../../com.aspose.font/ttfhmtxtable) - Hmtx table. +### getLocaTable() {#getLocaTable--} +``` +public TtfLocaTable getLocaTable() +``` + + +Obtient la table loca. + +**Returns:** +[TtfLocaTable](../../com.aspose.font/ttflocatable) - Loca table. +### getLtshTable() {#getLtshTable--} +``` +public TtfLtshTable getLtshTable() +``` + + +Obtient la table LTSH. + +**Returns:** +[TtfLtshTable](../../com.aspose.font/ttfltshtable) - The LTSH table. +### getMaxpTable() {#getMaxpTable--} +``` +public TtfMaxpTable getMaxpTable() +``` + + +Obtient la table maxp. + +**Returns:** +[TtfMaxpTable](../../com.aspose.font/ttfmaxptable) - Maxp table. +### getNameTable() {#getNameTable--} +``` +public TtfNameTable getNameTable() +``` + + +Obtient la table name. + +**Returns:** +[TtfNameTable](../../com.aspose.font/ttfnametable) - Name table. +### getOs2Table() {#getOs2Table--} +``` +public TtfOs2Table getOs2Table() +``` + + +Obtient la table OS/2. + +**Returns:** +[TtfOs2Table](../../com.aspose.font/ttfos2table) - OS/2 table. +### getPostTable() {#getPostTable--} +``` +public TtfPostTable getPostTable() +``` + + +Obtient la table post. + +**Returns:** +[TtfPostTable](../../com.aspose.font/ttfposttable) - Post table. +### getPrepTable() {#getPrepTable--} +``` +public TtfPrepTable getPrepTable() +``` + + +Obtient la table prep. + +**Returns:** +[TtfPrepTable](../../com.aspose.font/ttfpreptable) - Prep table. +### getStatTable() {#getStatTable--} +``` +public TtfStatTable getStatTable() +``` + + +Obtient la table STAT. + +**Returns:** +[TtfStatTable](../../com.aspose.font/ttfstattable) - The STAT table. +### getVheaTable() {#getVheaTable--} +``` +public TtfVheaTable getVheaTable() +``` + + +Obtient la table vhea. + +**Returns:** +[TtfVheaTable](../../com.aspose.font/ttfvheatable) - Vhea table. +### getVmtxTable() {#getVmtxTable--} +``` +public TtfVmtxTable getVmtxTable() +``` + + +Obtient la table vmtx. + +**Returns:** +[TtfVmtxTable](../../com.aspose.font/ttfvmtxtable) - Vmtx table. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/ttfvheatable/_index.md b/french/java/com.aspose.font/ttfvheatable/_index.md new file mode 100644 index 0000000000..628e18f0f6 --- /dev/null +++ b/french/java/com.aspose.font/ttfvheatable/_index.md @@ -0,0 +1,300 @@ +--- +title: "TtfVheaTable" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente la table hhea du fichier de police TTF." +type: docs +weight: 112 +url: /fr/java/com.aspose.font/ttfvheatable/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.font.TtfTableBase](../../com.aspose.font/ttftablebase) +``` +public class TtfVheaTable extends TtfTableBase +``` + +Représente la table "hhea" du fichier de police TTF. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getAdvanceHeightMax()](#getAdvanceHeightMax--) | Obtient AdvanceHeightMax. | +| [getAscent()](#getAscent--) | Obtient Ascent. | +| [getCaretOffset()](#getCaretOffset--) | Obtient CaretOffset. | +| [getCaretSlopeRise()](#getCaretSlopeRise--) | Obtient CaretSlopeRise. | +| [getCaretSlopeRun()](#getCaretSlopeRun--) | Obtient CaretSlopeRun. | +| [getClass()](#getClass--) | | +| [getDescent()](#getDescent--) | Obtient Descent. | +| [getLineGap()](#getLineGap--) | Obtient LineGap. | +| [getMetricDataFormat()](#getMetricDataFormat--) | Obtient MetricDataFormat. | +| [getMinBottomSideBearing()](#getMinBottomSideBearing--) | Obtient MinBottomSideBearing. | +| [getMinTopSideBearing()](#getMinTopSideBearing--) | Obtient MinTopSideBearing. | +| [getNumOfLongVerMetrics()](#getNumOfLongVerMetrics--) | Obtient MetricDataFormat. | +| [getOffset()](#getOffset--) | Obtient le décalage depuis le début du sfnt. | +| [getTag()](#getTag--) | Obtient le tag de la table. | +| [getTtfTables()](#getTtfTables--) | Référence au référentiel de tables TTF. | +| [getVersion()](#getVersion--) | Obtient le numéro de version de la table d’en-tête verticale. | +| [getYMaxExtent()](#getYMaxExtent--) | Obtient \_yMaxExtent. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getAdvanceHeightMax() {#getAdvanceHeightMax--} +``` +public short getAdvanceHeightMax() +``` + + +Obtient AdvanceHeightMax. La mesure maximale de la hauteur d’avance en FUnits trouvée dans la police. + +**Returns:** +short - Le AdvanceHeightMax. +### getAscent() {#getAscent--} +``` +public short getAscent() +``` + + +Obtient Ascent. Distance en FUnits de la ligne centrale à la \_descent de la ligne précédente\\u2019s. + +**Returns:** +short - Le Ascent. +### getCaretOffset() {#getCaretOffset--} +``` +public short getCaretOffset() +``` + + +Obtient CaretOffset. + +**Returns:** +short - Le CaretOffset. +### getCaretSlopeRise() {#getCaretSlopeRise--} +``` +public short getCaretSlopeRise() +``` + + +Obtient CaretSlopeRise. + +**Returns:** +short - Le CaretSlopeRise. +### getCaretSlopeRun() {#getCaretSlopeRun--} +``` +public short getCaretSlopeRun() +``` + + +Obtient CaretSlopeRun. + +**Returns:** +short - Le CaretSlopeRun. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDescent() {#getDescent--} +``` +public short getDescent() +``` + + +Obtient Descent. Distance en FUnits de la ligne centrale à la \_ascent de la ligne suivante\\u2019s. + +**Returns:** +short - Le Descent. +### getLineGap() {#getLineGap--} +``` +public short getLineGap() +``` + + +Obtient LineGap. L’écart typographique vertical pour cette police. + +**Returns:** +short - Le LineGap. +### getMetricDataFormat() {#getMetricDataFormat--} +``` +public short getMetricDataFormat() +``` + + +Obtient MetricDataFormat. + +**Returns:** +short - Le MetricDataFormat. +### getMinBottomSideBearing() {#getMinBottomSideBearing--} +``` +public short getMinBottomSideBearing() +``` + + +Obtient MinBottomSideBearing. La mesure minimale du sidebearing inférieur trouvée dans la police, en FUnits. + +**Returns:** +short - Le MinBottomSideBearing. +### getMinTopSideBearing() {#getMinTopSideBearing--} +``` +public short getMinTopSideBearing() +``` + + +Obtient MinTopSideBearing. La mesure minimale du sidebearing supérieur trouvée dans la police, en FUnits. + +**Returns:** +short - Le MinTopSideBearing. +### getNumOfLongVerMetrics() {#getNumOfLongVerMetrics--} +``` +public int getNumOfLongVerMetrics() +``` + + +Obtient MetricDataFormat. Nombre de hauteurs d'avance dans la table des métriques verticales. + +**Returns:** +int - Le MetricDataFormat. +### getOffset() {#getOffset--} +``` +public long getOffset() +``` + + +Obtient le décalage depuis le début du sfnt. + +**Returns:** +long - Décalage depuis le début du sfnt. +### getTag() {#getTag--} +``` +public static String getTag() +``` + + +Obtient le tag de la table. + +**Returns:** +java.lang.String - Le tag. +### getTtfTables() {#getTtfTables--} +``` +public TtfTableRepository getTtfTables() +``` + + +Référence au référentiel de tables TTF. + +**Returns:** +[TtfTableRepository](../../com.aspose.font/ttftablerepository) - Reference to TTF table repository. +### getVersion() {#getVersion--} +``` +public Version16Dot16 getVersion() +``` + + +Obtient le numéro de version de la table d’en-tête verticale. + +**Returns:** +[Version16Dot16](../../com.aspose.font/version16dot16) - The Version number of the vertical header table. +### getYMaxExtent() {#getYMaxExtent--} +``` +public short getYMaxExtent() +``` + + +Obtient \_yMaxExtent. + +**Returns:** +short - Le \_yMaxExtent. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/ttfvmtxtable/_index.md b/french/java/com.aspose.font/ttfvmtxtable/_index.md new file mode 100644 index 0000000000..b45b70e9d6 --- /dev/null +++ b/french/java/com.aspose.font/ttfvmtxtable/_index.md @@ -0,0 +1,179 @@ +--- +title: "TtfVmtxTable" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente la table vmtx du fichier de police TTF." +type: docs +weight: 113 +url: /fr/java/com.aspose.font/ttfvmtxtable/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.font.TtfTableBase](../../com.aspose.font/ttftablebase) +``` +public class TtfVmtxTable extends TtfTableBase +``` + +Représente la table "vmtx" du fichier de police TTF. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getOffset()](#getOffset--) | Obtient le décalage depuis le début du sfnt. | +| [getTag()](#getTag--) | Obtient le tag de la table. | +| [getTopSideBearings()](#getTopSideBearings--) | Obtient les marges supérieures latérales. | +| [getTtfTables()](#getTtfTables--) | Référence au référentiel de tables TTF. | +| [getVMetrics()](#getVMetrics--) | Obtient les métriques verticales. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getOffset() {#getOffset--} +``` +public long getOffset() +``` + + +Obtient le décalage depuis le début du sfnt. + +**Returns:** +long - Décalage depuis le début du sfnt. +### getTag() {#getTag--} +``` +public static String getTag() +``` + + +Obtient le tag de la table. + +**Returns:** +java.lang.String - Le tag de la table. +### getTopSideBearings() {#getTopSideBearings--} +``` +public short[] getTopSideBearings() +``` + + +Obtient les marges supérieures latérales. Tableau des marges supérieures latérales du glyphe. + +**Returns:** +short[] - Les roulements supérieurs. +### getTtfTables() {#getTtfTables--} +``` +public TtfTableRepository getTtfTables() +``` + + +Référence au référentiel de tables TTF. + +**Returns:** +[TtfTableRepository](../../com.aspose.font/ttftablerepository) - Reference to TTF table repository. +### getVMetrics() {#getVMetrics--} +``` +public TtfVmtxTable.LongVerMetric[] getVMetrics() +``` + + +Obtient les métriques verticales. + +**Returns:** +com.aspose.font.TtfVmtxTable.LongVerMetric[] - Les métriques verticales. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/type1encoding/_index.md b/french/java/com.aspose.font/type1encoding/_index.md new file mode 100644 index 0000000000..0b792a32c4 --- /dev/null +++ b/french/java/com.aspose.font/type1encoding/_index.md @@ -0,0 +1,218 @@ +--- +title: "Type1Encoding" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente l'encodage de police Type1." +type: docs +weight: 114 +url: /fr/java/com.aspose.font/type1encoding/ +--- +**Inheritance:** +java.lang.Object + +**All Implemented Interfaces:** +[com.aspose.font.IFontEncoding](../../com.aspose.font/ifontencoding), [com.aspose.font.ISupportsNameAddressing](../../com.aspose.font/isupportsnameaddressing) +``` +public class Type1Encoding implements IFontEncoding, ISupportsNameAddressing +``` + +Représente l'encodage de police Type1. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [decodeToGid(long charCode)](#decodeToGid-long-) | Décode Gid en unicode. | +| [decodeToGidParameterized(IEncodingParameters parameters, long charCode)](#decodeToGidParameterized-com.aspose.font.IEncodingParameters-long-) | Méthode de décodage paramétrée. | +| [encode(long gid, long charCode)](#encode-long-long-) | Encode le glyphe. | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getNameToCharCodeIndex()](#getNameToCharCodeIndex--) | Renvoie la table de correspondance du nom au code de caractère. | +| [gidToUnicode(GlyphId gid)](#gidToUnicode-com.aspose.font.GlyphId-) | Décode Gid en Unicode. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | | +| [unicodeToGid(long unicode)](#unicodeToGid-long-) | Renvoie le GlyphId pour unicode. | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### decodeToGid(long charCode) {#decodeToGid-long-} +``` +public GlyphId decodeToGid(long charCode) +``` + + +Décode Gid en unicode. Glyph id est un numéro unique pour un glyphe, qui dépend du type de police. Par exemple : l'identifiant de Type1 est un nom de glyphe, instance de la classe ( GlyphStringId ). L'identifiant de TTF est un indice entier, instance de la classe ( GlyphUInt32Id ). + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| charCode | long | Code de caractère pour obtenir l'identifiant du glyphe. | + +**Returns:** +[GlyphId](../../com.aspose.font/glyphid) - Glyph identifier related to character code passed. +### decodeToGidParameterized(IEncodingParameters parameters, long charCode) {#decodeToGidParameterized-com.aspose.font.IEncodingParameters-long-} +``` +public GlyphId decodeToGidParameterized(IEncodingParameters parameters, long charCode) +``` + + +Méthode de décodage paramétrée. Non pris en charge pour le type de police Type1. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| parameters | [IEncodingParameters](../../com.aspose.font/iencodingparameters) | Non pris en charge pour le type de police Type1. | +| charCode | long | Non pris en charge pour le type de police Type1. | + +**Returns:** +[GlyphId](../../com.aspose.font/glyphid) - Not supported for Type1 Font type. +### encode(long gid, long charCode) {#encode-long-long-} +``` +public void encode(long gid, long charCode) +``` + + +Encode le glyphe. Pour les polices TTF, le code de caractère est unicode. Non pris en charge pour les types de police Type1. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| gid | long | Identifiant de glyphe. | +| charCode | long | Code de caractère associé à l'identifiant du glyphe. | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getNameToCharCodeIndex() {#getNameToCharCodeIndex--} +``` +public NameToCodeMap getNameToCharCodeIndex() +``` + + +Renvoie la table de correspondance du nom au code de caractère. Remarque : le code de caractère n'est pas un unicode. Le code de caractère est un indice de caractère dans la "table" d'encodage de la police. + +**Returns:** +[NameToCodeMap](../../com.aspose.font/nametocodemap) - Name to character code encoding map. +### gidToUnicode(GlyphId gid) {#gidToUnicode-com.aspose.font.GlyphId-} +``` +public long gidToUnicode(GlyphId gid) +``` + + +Décode Gid en Unicode. Glyph id est un numéro unique pour un glyphe, qui dépend du type de police. Par exemple : l'identifiant de Type1 est un nom de glyphe, instance de la classe ( GlyphStringId ). L'identifiant de TTF est un indice entier, instance de la classe ( GlyphUInt32Id ). + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| gid | [GlyphId](../../com.aspose.font/glyphid) | Identifiant du glyphe du symbole à décoder. | + +**Returns:** +long - Valeur Unicode liée à l'identifiant du glyphe fourni. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### unicodeToGid(long unicode) {#unicodeToGid-long-} +``` +public GlyphId unicodeToGid(long unicode) +``` + + +Renvoie le GlyphId pour unicode. Ou notdef si la police ne contient pas de glyphe pour l'unicode. Glyph id est un numéro unique pour un glyphe, qui dépend du type de police. Par exemple : l'identifiant de Type1 est un nom de glyphe, instance de la classe ( GlyphStringId ). L'identifiant de TTF est un indice entier, instance de la classe ( GlyphUInt32Id ). + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| unicode | long | Unicode pour obtenir l'identifiant du glyphe. | + +**Returns:** +[GlyphId](../../com.aspose.font/glyphid) - Glyph identifier related to unicode passed. +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/type1font/_index.md b/french/java/com.aspose.font/type1font/_index.md new file mode 100644 index 0000000000..02d8167b9c --- /dev/null +++ b/french/java/com.aspose.font/type1font/_index.md @@ -0,0 +1,545 @@ +--- +title: "Type1Font" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente la police Type1." +type: docs +weight: 115 +url: /fr/java/com.aspose.font/type1font/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.font.Font](../../com.aspose.font/font) +``` +public class Type1Font extends Font +``` + +Représente la police Type1. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [convert(FontType fontType)](#convert-com.aspose.font.FontType-) | Convertit la police en un autre format. | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getAllGlyphIds()](#getAllGlyphIds--) | Renvoie un tableau de tous les identifiants de glyphes disponibles dans la police. | +| [getClass()](#getClass--) | | +| [getEncoding()](#getEncoding--) | Obtient l'encodage de la police. | +| [getFontDefinition()](#getFontDefinition--) | Obtient la définition de la police. | +| [getFontFamily()](#getFontFamily--) | Obtient la famille de la police. | +| [getFontName()](#getFontName--) | Obtient le nom de la face de la police. | +| [getFontNames()](#getFontNames--) | Obtient les noms de la police. | +| [getFontSaver()](#getFontSaver--) | Obtient la fonctionnalité d'enregistrement de la police. | +| [getFontStyle()](#getFontStyle--) | Obtient le style de la police. | +| [getFontType()](#getFontType--) | Obtient le type de la police. | +| [getGlyphAccessor()](#getGlyphAccessor--) | Accesseur de glyphes de la police. | +| [getGlyphById(GlyphId id)](#getGlyphById-com.aspose.font.GlyphId-) | Renvoie le glyphe par identifiant de glyphe. | +| [getGlyphById(String id)](#getGlyphById-java.lang.String-) | Renvoie le glyphe par identifiant de glyphe. | +| [getGlyphById(long id)](#getGlyphById-long-) | Renvoie le glyphe par identifiant de glyphe. | +| [getGlyphIdType()](#getGlyphIdType--) | Spécification du type d'ID de glyphe. | +| [getGlyphsForText(String text)](#getGlyphsForText-java.lang.String-) | Obtient la représentation des glyphes pour le texte. | +| [getMetrics()](#getMetrics--) | Obtient les métriques de la police. | +| [getNumGlyphs()](#getNumGlyphs--) | Obtient le nombre de glyphes dans la police. | +| [getPostscriptNames()](#getPostscriptNames--) | Obtient les noms de police PostScript. | +| [getStyle()](#getStyle--) | Obtient le style de la police. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [open(FontDefinition fontDefinition)](#open-com.aspose.font.FontDefinition-) | Ouvre une police en utilisant l'objet FontDefinition. | +| [open(FontType fontType, byte[] fontData)](#open-com.aspose.font.FontType-byte---) | Ouvre une police en utilisant le type de police et le tableau d'octets des données de police. | +| [open(FontType fontType, StreamSource fontStreamSource)](#open-com.aspose.font.FontType-com.aspose.font.StreamSource-) | Ouvre une police en utilisant le type de police et la source du flux. | +| [open(FontType fontType, String fileName)](#open-com.aspose.font.FontType-java.lang.String-) | Ouvre une police en utilisant le type de police et le nom du fichier de police. | +| [save(OutputStream stream)](#save-java.io.OutputStream-) | Enregistre la police au format original. | +| [save(String fileName)](#save-java.lang.String-) | Enregistre la police au format original. | +| [saveToFormat(OutputStream stream, FontSavingFormats outFormat)](#saveToFormat-java.io.OutputStream-com.aspose.font.FontSavingFormats-) | Enregistre la police au format spécifié. | +| [setFontFamily(String value)](#setFontFamily-java.lang.String-) | Le setter de la famille de police n'est pas encore implémenté. | +| [setFontName(String value)](#setFontName-java.lang.String-) | Le setter du nom de la police n'est pas encore implémenté. | +| [setStyle(String value)](#setStyle-java.lang.String-) | Le setter du style n'est pas encore implémenté. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### convert(FontType fontType) {#convert-com.aspose.font.FontType-} +``` +public Font convert(FontType fontType) +``` + + +Convertit la police en un autre format. + +> ``` +> Note: TTF Font type is now supported only. +> ``` + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontType | [FontType](../../com.aspose.font/fonttype) | Type de format de police dans lequel convertir. | + +**Returns:** +[Font](../../com.aspose.font/font) - Font converted into new format. +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getAllGlyphIds() {#getAllGlyphIds--} +``` +public GlyphId[] getAllGlyphIds() +``` + + +Renvoie un tableau de tous les IDs de glyphes, disponibles dans la Police. L'ID de glyphe est un numéro unique pour un glyphe, dépendant du type de police. L'ID de glyphe de la police Type1 peut être une instance de la classe ( GlyphStringId ) ou de la classe ( GlyphUInt32Id ). + +**Returns:** +com.aspose.font.GlyphId[] +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getEncoding() {#getEncoding--} +``` +public IFontEncoding getEncoding() +``` + + +Obtient l'encodage de la police. + +**Returns:** +[IFontEncoding](../../com.aspose.font/ifontencoding) - Font encoding. +### getFontDefinition() {#getFontDefinition--} +``` +public FontDefinition getFontDefinition() +``` + + +Obtient la définition de la police. + +**Returns:** +[FontDefinition](../../com.aspose.font/fontdefinition) - Font definition. +### getFontFamily() {#getFontFamily--} +``` +public String getFontFamily() +``` + + +Obtient la famille de la police. + +**Returns:** +java.lang.String - Famille de police. +### getFontName() {#getFontName--} +``` +public String getFontName() +``` + + +Obtient le nom de la face de la police. + +**Returns:** +java.lang.String - Nom de la face de police. +### getFontNames() {#getFontNames--} +``` +public MultiLanguageString getFontNames() +``` + + +Obtient les noms de la police. + +**Returns:** +[MultiLanguageString](../../com.aspose.font/multilanguagestring) - Font names. +### getFontSaver() {#getFontSaver--} +``` +public IFontSaver getFontSaver() +``` + + +Obtient la fonctionnalité d'enregistrement de la police. + +**Returns:** +[IFontSaver](../../com.aspose.font/ifontsaver) - Font save functionality. +### getFontStyle() {#getFontStyle--} +``` +public int getFontStyle() +``` + + +Obtient le style de la police. Il s'agit d'une valeur calculée et représentée dans un type généralisé. + +**Returns:** +int - Style de police. Généralement, une combinaison de valeurs de drapeaux constants de la classe FontStyle ou 0. +### getFontType() {#getFontType--} +``` +public FontType getFontType() +``` + + +Obtient le type de Police. Renvoie la valeur FontType.Type1. + +**Returns:** +[FontType](../../com.aspose.font/fonttype) - Font type. +### getGlyphAccessor() {#getGlyphAccessor--} +``` +public IGlyphAccessor getGlyphAccessor() +``` + + +Accesseur de glyphes de police. Récupère les glyphes et les identifiants de glyphes. + +**Returns:** +[IGlyphAccessor](../../com.aspose.font/iglyphaccessor) - Font glyph accessor. +### getGlyphById(GlyphId id) {#getGlyphById-com.aspose.font.GlyphId-} +``` +public Glyph getGlyphById(GlyphId id) +``` + + +Renvoie le glyphe par son ID de glyphe. L'ID de glyphe est un numéro unique pour un glyphe, dépendant du type de police. L'ID de glyphe de la police Type1 peut être une instance de la classe ( GlyphStringId ) ou de la classe ( GlyphUInt32Id ). + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| id | [GlyphId](../../com.aspose.font/glyphid) | | + +**Returns:** +[Glyph](../../com.aspose.font/glyph) +### getGlyphById(String id) {#getGlyphById-java.lang.String-} +``` +public Glyph getGlyphById(String id) +``` + + +Renvoie le glyphe par identifiant de glyphe. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| id | java.lang.String | Identifiant de glyphe. | + +**Returns:** +[Glyph](../../com.aspose.font/glyph) - Glyph. +### getGlyphById(long id) {#getGlyphById-long-} +``` +public Glyph getGlyphById(long id) +``` + + +Renvoie le glyphe par identifiant de glyphe. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| id | long | Identifiant de glyphe. | + +**Returns:** +[Glyph](../../com.aspose.font/glyph) - Glyph. +### getGlyphIdType() {#getGlyphIdType--} +``` +public GlyphIdType getGlyphIdType() +``` + + +Spécification du type d'ID de glyphe. + +**Returns:** +[GlyphIdType](../../com.aspose.font/glyphidtype) +### getGlyphsForText(String text) {#getGlyphsForText-java.lang.String-} +``` +public GlyphId[] getGlyphsForText(String text) +``` + + +Obtient la représentation des glyphes pour le texte. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| text | java.lang.String | Texte d'entrée. | + +**Returns:** +com.aspose.font.GlyphId[] - tableau GlyphId. +### getMetrics() {#getMetrics--} +``` +public IFontMetrics getMetrics() +``` + + +Obtient les métriques de la police. + +**Returns:** +[IFontMetrics](../../com.aspose.font/ifontmetrics) - Font metrics. +### getNumGlyphs() {#getNumGlyphs--} +``` +public int getNumGlyphs() +``` + + +Obtient le nombre de glyphes dans la police. + +**Returns:** +int - Nombre de glyphes dans la police. +### getPostscriptNames() {#getPostscriptNames--} +``` +public MultiLanguageString getPostscriptNames() +``` + + +Obtient les noms de police PostScript. + +**Returns:** +[MultiLanguageString](../../com.aspose.font/multilanguagestring) - Postscript Font names +### getStyle() {#getStyle--} +``` +public String getStyle() +``` + + +Obtient le style de la police. Il s'agit d'une valeur de chaîne brute fournie par le fichier de police. + +**Returns:** +java.lang.String - Style de police. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### open(FontDefinition fontDefinition) {#open-com.aspose.font.FontDefinition-} +``` +public static Font open(FontDefinition fontDefinition) +``` + + +Ouvre une police en utilisant l'objet FontDefinition. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontDefinition | [FontDefinition](../../com.aspose.font/fontdefinition) | Objet de définition de police. | + +**Returns:** +[Font](../../com.aspose.font/font) - Font loaded. +### open(FontType fontType, byte[] fontData) {#open-com.aspose.font.FontType-byte---} +``` +public static Font open(FontType fontType, byte[] fontData) +``` + + +Ouvre une police en utilisant le type de police et le tableau d'octets des données de police. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontType | [FontType](../../com.aspose.font/fonttype) | Type de police. | +| fontData | byte[] | Tableau d'octets pour charger la police. | + +**Returns:** +[Font](../../com.aspose.font/font) - Font loaded. +### open(FontType fontType, StreamSource fontStreamSource) {#open-com.aspose.font.FontType-com.aspose.font.StreamSource-} +``` +public static Font open(FontType fontType, StreamSource fontStreamSource) +``` + + +Ouvre une police en utilisant le type de police et la source du flux. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontType | [FontType](../../com.aspose.font/fonttype) | Type de police. | +| fontStreamSource | [StreamSource](../../com.aspose.font/streamsource) | Source de flux pour la police. | + +**Returns:** +[Font](../../com.aspose.font/font) - Font loaded. +### open(FontType fontType, String fileName) {#open-com.aspose.font.FontType-java.lang.String-} +``` +public static Font open(FontType fontType, String fileName) +``` + + +Ouvre une police en utilisant le type de police et le nom du fichier de police. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontType | [FontType](../../com.aspose.font/fonttype) | Type de police. | +| fileName | java.lang.String | Nom du fichier de police. | + +**Returns:** +[Font](../../com.aspose.font/font) - Font loaded. +### save(OutputStream stream) {#save-java.io.OutputStream-} +``` +public void save(OutputStream stream) +``` + + +Enregistre la police au format original. + +-------------------- + +> ``` +> Note: following Font types are supported for saving: +> New TTF fonts; +> TTF Font subsets; +> CFF Font subsets; +> Type1 Font subsets. +> ``` + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| flux | java.io.OutputStream | Flux pour enregistrer la police. | + +### save(String fileName) {#save-java.lang.String-} +``` +public void save(String fileName) +``` + + +Enregistre la police au format original. + +-------------------- + +> ``` +> Note: following Font types are supported for saving: +> New TTF fonts; +> TTF Font subsets; +> CFF Font subsets; +> Type1 Font subsets. +> ``` + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fileName | java.lang.String | Fichier pour enregistrer la police. | + +### saveToFormat(OutputStream stream, FontSavingFormats outFormat) {#saveToFormat-java.io.OutputStream-com.aspose.font.FontSavingFormats-} +``` +public void saveToFormat(OutputStream stream, FontSavingFormats outFormat) +``` + + +Enregistre la police au format spécifié. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| flux | java.io.OutputStream | flux pour enregistrer la police | +| outFormat | [FontSavingFormats](../../com.aspose.font/fontsavingformats) | format souhaité | + +### setFontFamily(String value) {#setFontFamily-java.lang.String-} +``` +public void setFontFamily(String value) +``` + + +Le setter de la famille de police n'est pas encore implémenté. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | Nouvelle famille de police. | + +### setFontName(String value) {#setFontName-java.lang.String-} +``` +public void setFontName(String value) +``` + + +Le setter du nom de la police n'est pas encore implémenté. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | Nouveau nom de face de police. | + +### setStyle(String value) {#setStyle-java.lang.String-} +``` +public void setStyle(String value) +``` + + +Le setter Style n'est pas encore implémenté. Il s'agit d'une valeur de chaîne brute fournie par le fichier de Police. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | Nouveau style de police. | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/type1fontmetrics/_index.md b/french/java/com.aspose.font/type1fontmetrics/_index.md new file mode 100644 index 0000000000..7b29d2672f --- /dev/null +++ b/french/java/com.aspose.font/type1fontmetrics/_index.md @@ -0,0 +1,555 @@ +--- +title: "Type1FontMetrics" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente les métriques de police Type1." +type: docs +weight: 116 +url: /fr/java/com.aspose.font/type1fontmetrics/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.font.FontMetrics](../../com.aspose.font/fontmetrics) +``` +public class Type1FontMetrics extends FontMetrics +``` + +Représente les métriques de police Type1. +## Méthodes + +| Méthode | Description | +| --- | --- | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getAscender()](#getAscender--) | Obtient la valeur de l'ascender. | +| [getAscender(double fontSize)](#getAscender-double-) | Renvoie l'ascender pour une taille de police spécifique. | +| [getCapHeight()](#getCapHeight--) | Obtient la valeur de la hauteur des capitales. | +| [getClass()](#getClass--) | | +| [getDescender()](#getDescender--) | Obtient la valeur du descender. | +| [getDescender(double fontSize)](#getDescender-double-) | Renvoie le descender pour une taille de police spécifique. | +| [getFontBBox()](#getFontBBox--) | Obtient la valeur FontBBox. | +| [getFontMatrix()](#getFontMatrix--) | Obtient la matrice de transformation de la Font. | +| [getGlyphBBox(GlyphId glyphId)](#getGlyphBBox-com.aspose.font.GlyphId-) | Renvoie le glyph Bbox. | +| [getGlyphWidth(GlyphId glyphId)](#getGlyphWidth-com.aspose.font.GlyphId-) | Renvoie la largeur du glyph. | +| [getItalicAngle()](#getItalicAngle--) | Obtient la valeur de l'angle italique. | +| [getKerningValue(GlyphId prevGlyphId, GlyphId nextGlyphId)](#getKerningValue-com.aspose.font.GlyphId-com.aspose.font.GlyphId-) | Renvoie la valeur de crénage pour la paire de glyphes. | +| [getLineGap()](#getLineGap--) | Obtient la valeur LineGap. | +| [getStdHW()](#getStdHW--) | Obtient la valeur de StdHW. | +| [getStdVW()](#getStdVW--) | Obtient la valeur de StdVW. | +| [getTypoAscender()](#getTypoAscender--) | Obtient la valeur TypoAscender. | +| [getTypoAscender(double fontSize)](#getTypoAscender-double-) | Renvoie l'ascendant typographique pour une taille de Font size spécifique. | +| [getTypoDescender()](#getTypoDescender--) | Obtient la valeur TypoDescender. | +| [getTypoDescender(double fontSize)](#getTypoDescender-double-) | Renvoie le descendant typographique pour une taille de font size spécifique. | +| [getTypoLineGap()](#getTypoLineGap--) | Obtient la valeur TypoLineGap. | +| [getTypoLineGap(double fontSize)](#getTypoLineGap-double-) | Renvoie l'écart de ligne pour une taille de Font size spécifique. | +| [getUnderlinePosition()](#getUnderlinePosition--) | Obtient la valeur de la position du soulignement. | +| [getUnderlineThickness()](#getUnderlineThickness--) | Obtient la valeur de l'épaisseur du soulignement. | +| [getUnitsPerEM()](#getUnitsPerEM--) | Obtient la valeur de UnitsPerEM du soulignement. | +| [getWeight()](#getWeight--) | Obtient le poids. | +| [getXHeight()](#getXHeight--) | Obtient la valeur de XHeight. | +| [hashCode()](#hashCode--) | | +| [isFixedPitch()](#isFixedPitch--) | Obtient la valeur IsFixedPitch. | +| [measureString(String unicode, double fontSize)](#measureString-java.lang.String-double-) | Mesure la chaîne et renvoie la largeur de la chaîne. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setAscender(double value)](#setAscender-double-) | Définit la valeur Ascender. | +| [setDescender(double value)](#setDescender-double-) | Définit la valeur Descender. | +| [setGlyphWidth(GlyphId glyphId, double value)](#setGlyphWidth-com.aspose.font.GlyphId-double-) | Définit la largeur du glyph. | +| [setTypoAscender(double value)](#setTypoAscender-double-) | Définit la valeur TypoAscender. | +| [setTypoDescender(double value)](#setTypoDescender-double-) | Définit la valeur TypoDescender. | +| [setUnitsPerEM(long value)](#setUnitsPerEM-long-) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getAscender() {#getAscender--} +``` +public double getAscender() +``` + + +Obtient la valeur de l'ascender. + +**Returns:** +double - valeur Ascender. +### getAscender(double fontSize) {#getAscender-double-} +``` +public double getAscender(double fontSize) +``` + + +Renvoie l'ascender pour une taille de police spécifique. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontSize | double | Taille de police. | + +**Returns:** +double - valeur Ascender. +### getCapHeight() {#getCapHeight--} +``` +public double getCapHeight() +``` + + +Obtient la valeur de la hauteur des capitales. + +**Returns:** +double - valeur de Cap height. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDescender() {#getDescender--} +``` +public double getDescender() +``` + + +Obtient la valeur du descender. + +**Returns:** +double - valeur Descender. +### getDescender(double fontSize) {#getDescender-double-} +``` +public double getDescender(double fontSize) +``` + + +Renvoie le descender pour une taille de police spécifique. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontSize | double | Taille de police. | + +**Returns:** +double - valeur Descender. +### getFontBBox() {#getFontBBox--} +``` +public FontBBox getFontBBox() +``` + + +Obtient la valeur FontBBox. + +**Returns:** +[FontBBox](../../com.aspose.font/fontbbox) - FontBBox value. +### getFontMatrix() {#getFontMatrix--} +``` +public TransformationMatrix getFontMatrix() +``` + + +Obtient la matrice de transformation de la Font. + +**Returns:** +[TransformationMatrix](../../com.aspose.font/transformationmatrix) - Font transformation matrix. +### getGlyphBBox(GlyphId glyphId) {#getGlyphBBox-com.aspose.font.GlyphId-} +``` +public FontBBox getGlyphBBox(GlyphId glyphId) +``` + + +Renvoie le glyph Bbox. Renvoie FontBBox si le BBox n'était pas défini pour le glyph. Peut être remplacé par des héritiers d'encodage de police spécifiques. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| glyphId | [GlyphId](../../com.aspose.font/glyphid) | Identifiant du glyph. | + +**Returns:** +[FontBBox](../../com.aspose.font/fontbbox) - Glyph BBox. +### getGlyphWidth(GlyphId glyphId) {#getGlyphWidth-com.aspose.font.GlyphId-} +``` +public double getGlyphWidth(GlyphId glyphId) +``` + + +Renvoie la largeur du glyph. Peut être remplacé par des héritiers d'encodage de police spécifiques. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| glyphId | [GlyphId](../../com.aspose.font/glyphid) | Identifiant du glyph. | + +**Returns:** +double - Largeur du glyphe. +### getItalicAngle() {#getItalicAngle--} +``` +public double getItalicAngle() +``` + + +Obtient la valeur de l'angle italique. + +**Returns:** +double - valeur de l'angle italique. +### getKerningValue(GlyphId prevGlyphId, GlyphId nextGlyphId) {#getKerningValue-com.aspose.font.GlyphId-com.aspose.font.GlyphId-} +``` +public double getKerningValue(GlyphId prevGlyphId, GlyphId nextGlyphId) +``` + + +Renvoie la valeur de crénage pour la paire de glyphes. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| prevGlyphId | [GlyphId](../../com.aspose.font/glyphid) | Premier glyphe de la paire. | +| nextGlyphId | [GlyphId](../../com.aspose.font/glyphid) | Taille de police. | + +**Returns:** +double - Valeur du crénage. +### getLineGap() {#getLineGap--} +``` +public double getLineGap() +``` + + +Obtient la valeur LineGap. + +**Returns:** +double - Valeur du LineGap. +### getStdHW() {#getStdHW--} +``` +public double getStdHW() +``` + + +Obtient la valeur de StdHW. + +**Returns:** +double - valeur de StdHW. +### getStdVW() {#getStdVW--} +``` +public double getStdVW() +``` + + +Obtient la valeur de StdVW. + +**Returns:** +double - valeur de StdVW. +### getTypoAscender() {#getTypoAscender--} +``` +public double getTypoAscender() +``` + + +Obtient la valeur TypoAscender. + +**Returns:** +double - Valeur de TypoAscender. +### getTypoAscender(double fontSize) {#getTypoAscender-double-} +``` +public double getTypoAscender(double fontSize) +``` + + +Renvoie l'ascendant typographique pour une taille de Font size spécifique. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontSize | double | Taille de police. | + +**Returns:** +double - Valeur de l'ascendant typographique. +### getTypoDescender() {#getTypoDescender--} +``` +public double getTypoDescender() +``` + + +Obtient la valeur TypoDescender. + +**Returns:** +double - Valeur de TypoDescender. +### getTypoDescender(double fontSize) {#getTypoDescender-double-} +``` +public double getTypoDescender(double fontSize) +``` + + +Renvoie le descendant typographique pour une taille de font size spécifique. + +param fontSize Taille de la police. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontSize | double | | + +**Returns:** +double - Valeur du descendant typographique. +### getTypoLineGap() {#getTypoLineGap--} +``` +public double getTypoLineGap() +``` + + +Obtient la valeur TypoLineGap. + +**Returns:** +double - Valeur de TypoLineGap. +### getTypoLineGap(double fontSize) {#getTypoLineGap-double-} +``` +public double getTypoLineGap(double fontSize) +``` + + +Renvoie l'écart de ligne pour une taille de Font size spécifique. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontSize | double | Taille de police. | + +**Returns:** +double - Valeur de l'écart de ligne. +### getUnderlinePosition() {#getUnderlinePosition--} +``` +public double getUnderlinePosition() +``` + + +Obtient la valeur de la position du soulignement. + +**Returns:** +double - valeur de la position du soulignement. +### getUnderlineThickness() {#getUnderlineThickness--} +``` +public double getUnderlineThickness() +``` + + +Obtient la valeur de l'épaisseur du soulignement. + +**Returns:** +double - valeur de l'épaisseur du soulignement. +### getUnitsPerEM() {#getUnitsPerEM--} +``` +public long getUnitsPerEM() +``` + + +Obtient la valeur de UnitsPerEM du soulignement. + +**Returns:** +long - valeur de UnitsPerEM du soulignement. +### getWeight() {#getWeight--} +``` +public String getWeight() +``` + + +Obtient le poids. + +**Returns:** +java.lang.String - Poids. +### getXHeight() {#getXHeight--} +``` +public double getXHeight() +``` + + +Obtient la valeur de XHeight. + +**Returns:** +double - valeur de XHeight. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### isFixedPitch() {#isFixedPitch--} +``` +public boolean isFixedPitch() +``` + + +Obtient la valeur IsFixedPitch. + +**Returns:** +boolean - Valeur de IsFixedPitch. +### measureString(String unicode, double fontSize) {#measureString-java.lang.String-double-} +``` +public double measureString(String unicode, double fontSize) +``` + + +Mesure la chaîne et renvoie la largeur de la chaîne. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| unicode | java.lang.String | Chaîne Unicode. | +| fontSize | double | Taille de police. | + +**Returns:** +double - Largeur de la chaîne. +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setAscender(double value) {#setAscender-double-} +``` +public void setAscender(double value) +``` + + +Définit la valeur Ascender. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | double | Valeur de l'ascendant. | + +### setDescender(double value) {#setDescender-double-} +``` +public void setDescender(double value) +``` + + +Définit la valeur Descender. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | double | Valeur du descendant. | + +### setGlyphWidth(GlyphId glyphId, double value) {#setGlyphWidth-com.aspose.font.GlyphId-double-} +``` +public void setGlyphWidth(GlyphId glyphId, double value) +``` + + +Définit la largeur du glyph. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| glyphId | [GlyphId](../../com.aspose.font/glyphid) | Identifiant du glyph. | +| valeur | double | Nouvelle largeur. | + +### setTypoAscender(double value) {#setTypoAscender-double-} +``` +public void setTypoAscender(double value) +``` + + +Définit la valeur TypoAscender. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | double | Valeur de TypoAscender. | + +### setTypoDescender(double value) {#setTypoDescender-double-} +``` +public void setTypoDescender(double value) +``` + + +Définit la valeur TypoDescender. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | double | Valeur de TypoDescender. | + +### setUnitsPerEM(long value) {#setUnitsPerEM-long-} +``` +public void setUnitsPerEM(long value) +``` + + +Définit la valeur UnitsPerEM. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | long | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/type1metricfont/_index.md b/french/java/com.aspose.font/type1metricfont/_index.md new file mode 100644 index 0000000000..b0a52d0715 --- /dev/null +++ b/french/java/com.aspose.font/type1metricfont/_index.md @@ -0,0 +1,574 @@ +--- +title: "Type1MetricFont" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Implémentation de police métrique Type1." +type: docs +weight: 117 +url: /fr/java/com.aspose.font/type1metricfont/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.font.Font](../../com.aspose.font/font), [com.aspose.font.Type1Font](../../com.aspose.font/type1font) +``` +public class Type1MetricFont extends Type1Font +``` + +Implémentation de police métrique Type1. Cette police type1 est créée uniquement à partir des métriques. Les fonctions de récupération des glyphes et certaines autres qui nécessitent une vraie police ne sont pas autorisées, les fonctions non autorisées lèvent l’exception Type1NotSupportedException. Les autres propriétés (FontName, Weight, Metrics et Encoding) sont utilisées à partir du fichier de métriques. + +-------------------- + +> ``` +> Note: If metrics file defines Encoding as "FontSpecific", user should provide the specific encoding with following way: +> string[] zapfDingbatsEncoding = new string[256] {null, null, ... , "space", "a1", ...}; +> FontEnvironment.Current.FontSpecificEncodings.RegisterEncoding("ZapfDingbats", zapfDingbatsEncoding); +> ``` +> +> System::ArrayPtr zapfDingbatsEncoding = System::MakeArray({nullptr, nullptr, ..., u"space", u"a1", ...}); +> FontEnvironment::get_Current()->get_FontSpecificEncodings()->RegisterEncoding(u"ZapfDingbats", zapfDingbatsEncoding); +> +> ``` +> ``` +## Méthodes + +| Méthode | Description | +| --- | --- | +| [convert(FontType fontType)](#convert-com.aspose.font.FontType-) | Convertit la police en un autre format. | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getAllGlyphIds()](#getAllGlyphIds--) | Renvoie tous les ID de glyphes disponibles dans la police. | +| [getClass()](#getClass--) | | +| [getEncoding()](#getEncoding--) | L’encodage est défini dans le fichier de métriques. | +| [getFontDefinition()](#getFontDefinition--) | Obtient la définition de la police. | +| [getFontFamily()](#getFontFamily--) | Obtient la famille de la police. | +| [getFontName()](#getFontName--) | Obtient le nom de la police. | +| [getFontNames()](#getFontNames--) | Obtient les noms de la police. | +| [getFontSaver()](#getFontSaver--) | Obtient la fonctionnalité d'enregistrement de la police. | +| [getFontStyle()](#getFontStyle--) | Obtient le style de la police. | +| [getFontType()](#getFontType--) | Obtient le type de la police. | +| [getGlyphAccessor()](#getGlyphAccessor--) | Accesseur de glyphes de la police. | +| [getGlyphById(GlyphId id)](#getGlyphById-com.aspose.font.GlyphId-) | Renvoie le glyphe par ID de glyphe. | +| [getGlyphById(String id)](#getGlyphById-java.lang.String-) | Renvoie le glyphe par ID de glyphe. | +| [getGlyphById(long id)](#getGlyphById-long-) | Renvoie le glyphe par identifiant de glyphe. | +| [getGlyphIdType()](#getGlyphIdType--) | Spécification du type d'ID de glyphe. | +| [getGlyphsForText(String text)](#getGlyphsForText-java.lang.String-) | Obtient la représentation des glyphes pour le texte. | +| [getMetrics()](#getMetrics--) | Obtient les métriques de la police. | +| [getNumGlyphs()](#getNumGlyphs--) | Obtient le nombre de glyphes dans la police. | +| [getPostscriptNames()](#getPostscriptNames--) | Obtient les noms de police PostScript. | +| [getStyle()](#getStyle--) | Obtient le style de la police. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [open(FontDefinition fontDefinition)](#open-com.aspose.font.FontDefinition-) | Ouvre une police en utilisant l'objet FontDefinition. | +| [open(FontType fontType, byte[] fontData)](#open-com.aspose.font.FontType-byte---) | Ouvre une police en utilisant le type de police et le tableau d'octets des données de police. | +| [open(FontType fontType, StreamSource fontStreamSource)](#open-com.aspose.font.FontType-com.aspose.font.StreamSource-) | Ouvre une police en utilisant le type de police et la source du flux. | +| [open(FontType fontType, String fileName)](#open-com.aspose.font.FontType-java.lang.String-) | Ouvre une police en utilisant le type de police et le nom du fichier de police. | +| [save(OutputStream stream)](#save-java.io.OutputStream-) | Enregistre la police au format original. | +| [save(String fileName)](#save-java.lang.String-) | Enregistre la police au format original. | +| [saveToFormat(OutputStream stream, FontSavingFormats outFormat)](#saveToFormat-java.io.OutputStream-com.aspose.font.FontSavingFormats-) | Enregistre la police au format spécifié. | +| [setFontFamily(String value)](#setFontFamily-java.lang.String-) | Le setter de la famille de police n'est pas encore implémenté. | +| [setFontName(String value)](#setFontName-java.lang.String-) | Le setter du nom de la police n'est pas encore implémenté. | +| [setStyle(String value)](#setStyle-java.lang.String-) | Le setter du style n'est pas encore implémenté. | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### convert(FontType fontType) {#convert-com.aspose.font.FontType-} +``` +public Font convert(FontType fontType) +``` + + +Convertit la police en un autre format. + +> ``` +> Note: TTF Font type is now supported only. +> ``` + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontType | [FontType](../../com.aspose.font/fonttype) | Type de format de police dans lequel convertir. | + +**Returns:** +[Font](../../com.aspose.font/font) - Font converted into new format. +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getAllGlyphIds() {#getAllGlyphIds--} +``` +public GlyphId[] getAllGlyphIds() +``` + + +Renvoie tous les ID de glyphes disponibles dans la police. Non pris en charge pour le type Type1MetricFont. + +**Returns:** +com.aspose.font.GlyphId[] - Tous les identifiants de glyphes disponibles dans la police. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getEncoding() {#getEncoding--} +``` +public IFontEncoding getEncoding() +``` + + +L’encodage est défini dans le fichier de métriques. StandardAdobeEncoding : l’encodage est rempli automatiquement + +-------------------- + +> ``` +> FontSpecific: +> user should provide the specific encoding with following way: +> string[] zapfDingbatsEncoding = new string[256] {null, null, ... , "space", "a1", ...}; +> FontEnvironment.Current.FontSpecificEncodings.RegisterEncoding("ZapfDingbats", zapfDingbatsEncoding); +> ``` +> +> System::ArrayPtr zapfDingbatsEncoding = System::MakeArray({nullptr, nullptr, ..., u"space", u"a1", ...}); +> FontEnvironment::get_Current()->get_FontSpecificEncodings()->RegisterEncoding(u"ZapfDingbats", zapfDingbatsEncoding); +> +> ``` +> ``` + +**Returns:** +[IFontEncoding](../../com.aspose.font/ifontencoding) +### getFontDefinition() {#getFontDefinition--} +``` +public FontDefinition getFontDefinition() +``` + + +Obtient la définition de la police. + +**Returns:** +[FontDefinition](../../com.aspose.font/fontdefinition) - Font definition. +### getFontFamily() {#getFontFamily--} +``` +public String getFontFamily() +``` + + +Obtient la famille de la police. + +**Returns:** +java.lang.String - Famille de police. +### getFontName() {#getFontName--} +``` +public String getFontName() +``` + + +Obtient le nom de la police. + +**Returns:** +java.lang.String - Nom de police. +### getFontNames() {#getFontNames--} +``` +public MultiLanguageString getFontNames() +``` + + +Obtient les noms de la police. + +**Returns:** +[MultiLanguageString](../../com.aspose.font/multilanguagestring) - Font names. +### getFontSaver() {#getFontSaver--} +``` +public IFontSaver getFontSaver() +``` + + +Obtient la fonctionnalité d'enregistrement de la police. + +**Returns:** +[IFontSaver](../../com.aspose.font/ifontsaver) - Font save functionality. +### getFontStyle() {#getFontStyle--} +``` +public int getFontStyle() +``` + + +Obtient le style de la police. Il s'agit d'une valeur calculée et représentée dans un type généralisé. + +**Returns:** +int - Obtient le style de la police. Habituellement, une combinaison de valeurs de drapeaux constants de la classe FontStyle ou 0. +### getFontType() {#getFontType--} +``` +public FontType getFontType() +``` + + +Obtient le type de Police. Renvoie la valeur FontType.Type1. + +**Returns:** +[FontType](../../com.aspose.font/fonttype) - Font type. +### getGlyphAccessor() {#getGlyphAccessor--} +``` +public IGlyphAccessor getGlyphAccessor() +``` + + +Accesseur de glyphes de police. Récupère les glyphes et les identifiants de glyphes. + +**Returns:** +[IGlyphAccessor](../../com.aspose.font/iglyphaccessor) - Font glyph accessor. +### getGlyphById(GlyphId id) {#getGlyphById-com.aspose.font.GlyphId-} +``` +public Glyph getGlyphById(GlyphId id) +``` + + +Renvoie le glyphe par ID de glyphe. Non pris en charge pour le type (@code Type1MetricFont\}. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| id | [GlyphId](../../com.aspose.font/glyphid) | Identifiant du glyph. | + +**Returns:** +[Glyph](../../com.aspose.font/glyph) - Glyph. +### getGlyphById(String id) {#getGlyphById-java.lang.String-} +``` +public Glyph getGlyphById(String id) +``` + + +Renvoie le glyphe par ID de glyphe. Non pris en charge pour le type (@code Type1MetricFont\}. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| id | java.lang.String | Identifiant du glyph. | + +**Returns:** +[Glyph](../../com.aspose.font/glyph) - Glyph. +### getGlyphById(long id) {#getGlyphById-long-} +``` +public Glyph getGlyphById(long id) +``` + + +Renvoie le glyphe par identifiant de glyphe. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| id | long | Identifiant de glyphe. | + +**Returns:** +[Glyph](../../com.aspose.font/glyph) - Glyph. +### getGlyphIdType() {#getGlyphIdType--} +``` +public GlyphIdType getGlyphIdType() +``` + + +Spécification du type d'ID de glyphe. + +**Returns:** +[GlyphIdType](../../com.aspose.font/glyphidtype) +### getGlyphsForText(String text) {#getGlyphsForText-java.lang.String-} +``` +public GlyphId[] getGlyphsForText(String text) +``` + + +Obtient la représentation des glyphes pour le texte. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| text | java.lang.String | Texte d'entrée. | + +**Returns:** +com.aspose.font.GlyphId[] - tableau GlyphId. +### getMetrics() {#getMetrics--} +``` +public IFontMetrics getMetrics() +``` + + +Obtient les métriques de la police. + +**Returns:** +[IFontMetrics](../../com.aspose.font/ifontmetrics) - Font metrics. +### getNumGlyphs() {#getNumGlyphs--} +``` +public int getNumGlyphs() +``` + + +Obtient le nombre de glyphes dans la police. + +**Returns:** +int - Nombre de glyphes dans la police. +### getPostscriptNames() {#getPostscriptNames--} +``` +public MultiLanguageString getPostscriptNames() +``` + + +Obtient les noms de police PostScript. + +**Returns:** +[MultiLanguageString](../../com.aspose.font/multilanguagestring) - Postscript Font names +### getStyle() {#getStyle--} +``` +public String getStyle() +``` + + +Obtient le style de la police. + +**Returns:** +java.lang.String - Style de police. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### open(FontDefinition fontDefinition) {#open-com.aspose.font.FontDefinition-} +``` +public static Font open(FontDefinition fontDefinition) +``` + + +Ouvre une police en utilisant l'objet FontDefinition. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontDefinition | [FontDefinition](../../com.aspose.font/fontdefinition) | Objet de définition de police. | + +**Returns:** +[Font](../../com.aspose.font/font) - Font loaded. +### open(FontType fontType, byte[] fontData) {#open-com.aspose.font.FontType-byte---} +``` +public static Font open(FontType fontType, byte[] fontData) +``` + + +Ouvre une police en utilisant le type de police et le tableau d'octets des données de police. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontType | [FontType](../../com.aspose.font/fonttype) | Type de police. | +| fontData | byte[] | Tableau d'octets pour charger la police. | + +**Returns:** +[Font](../../com.aspose.font/font) - Font loaded. +### open(FontType fontType, StreamSource fontStreamSource) {#open-com.aspose.font.FontType-com.aspose.font.StreamSource-} +``` +public static Font open(FontType fontType, StreamSource fontStreamSource) +``` + + +Ouvre une police en utilisant le type de police et la source du flux. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontType | [FontType](../../com.aspose.font/fonttype) | Type de police. | +| fontStreamSource | [StreamSource](../../com.aspose.font/streamsource) | Source de flux pour la police. | + +**Returns:** +[Font](../../com.aspose.font/font) - Font loaded. +### open(FontType fontType, String fileName) {#open-com.aspose.font.FontType-java.lang.String-} +``` +public static Font open(FontType fontType, String fileName) +``` + + +Ouvre une police en utilisant le type de police et le nom du fichier de police. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fontType | [FontType](../../com.aspose.font/fonttype) | Type de police. | +| fileName | java.lang.String | Nom du fichier de police. | + +**Returns:** +[Font](../../com.aspose.font/font) - Font loaded. +### save(OutputStream stream) {#save-java.io.OutputStream-} +``` +public void save(OutputStream stream) +``` + + +Enregistre la police au format original. + +-------------------- + +> ``` +> Note: following Font types are supported for saving: +> New TTF fonts; +> TTF Font subsets; +> CFF Font subsets; +> Type1 Font subsets. +> ``` + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| flux | java.io.OutputStream | Flux pour enregistrer la police. | + +### save(String fileName) {#save-java.lang.String-} +``` +public void save(String fileName) +``` + + +Enregistre la police au format original. + +-------------------- + +> ``` +> Note: following Font types are supported for saving: +> New TTF fonts; +> TTF Font subsets; +> CFF Font subsets; +> Type1 Font subsets. +> ``` + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| fileName | java.lang.String | Fichier pour enregistrer la police. | + +### saveToFormat(OutputStream stream, FontSavingFormats outFormat) {#saveToFormat-java.io.OutputStream-com.aspose.font.FontSavingFormats-} +``` +public void saveToFormat(OutputStream stream, FontSavingFormats outFormat) +``` + + +Enregistre la police au format spécifié. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| flux | java.io.OutputStream | flux pour enregistrer la police | +| outFormat | [FontSavingFormats](../../com.aspose.font/fontsavingformats) | format souhaité | + +### setFontFamily(String value) {#setFontFamily-java.lang.String-} +``` +public void setFontFamily(String value) +``` + + +Le setter de la famille de police n'est pas encore implémenté. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | Nouvelle famille de police. | + +### setFontName(String value) {#setFontName-java.lang.String-} +``` +public void setFontName(String value) +``` + + +Le setter du nom de la police n'est pas encore implémenté. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | Nouveau nom de face de police. | + +### setStyle(String value) {#setStyle-java.lang.String-} +``` +public void setStyle(String value) +``` + + +Le setter Style n'est pas encore implémenté. Il s'agit d'une valeur de chaîne brute fournie par le fichier de Police. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | java.lang.String | Nouveau style de police. | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/unicodeplatformspecificid/_index.md b/french/java/com.aspose.font/unicodeplatformspecificid/_index.md new file mode 100644 index 0000000000..3c23407800 --- /dev/null +++ b/french/java/com.aspose.font/unicodeplatformspecificid/_index.md @@ -0,0 +1,277 @@ +--- +title: "UnicodePlatformSpecificId" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente l'énumération spécifique à la plateforme Unicode." +type: docs +weight: 143 +url: /fr/java/com.aspose.font/unicodeplatformspecificid/ +--- +**Inheritance:** +java.lang.Object, java.lang.Enum +``` +public enum UnicodePlatformSpecificId extends Enum +``` + +Représente l'énumération spécifique à la plateforme Unicode. +## Champs + +| Champ | Description | +| --- | --- | +| [Default](#Default) | Valeur 0 sémantique par défaut (Unicode 1.0). | +| [ISO10646_1993](#ISO10646-1993) | Valeur 2 sémantique ISO 10646 1993 (obsolète). | +| [Unicode1_1](#Unicode1-1) | Valeur 1 sémantique Unicode 1.1. | +| [Unicode2_0](#Unicode2-0) | Valeur 3 sémantique Unicode 2.0 ou ultérieure. | +| [Unicode2_0_Full](#Unicode2-0-Full) | Valeur 4 sémantique Unicode 2.0 et suivantes (caractères non BMP autorisés), répertoire complet Unicode. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [valueOf(Class arg0, String arg1)](#-T-valueOf-java.lang.Class-T--java.lang.String-) | | +| [compareTo(E arg0)](#compareTo-E-) | | +| [describeConstable()](#describeConstable--) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getDeclaringClass()](#getDeclaringClass--) | | +| [hashCode()](#hashCode--) | | +| [name()](#name--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [ordinal()](#ordinal--) | | +| [toString()](#toString--) | | +| [valueOf(String name)](#valueOf-java.lang.String-) | | +| [values()](#values--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### Default {#Default} +``` +public static final UnicodePlatformSpecificId Default +``` + + +Valeur 0 sémantique par défaut (Unicode 1.0). + +### ISO10646_1993 {#ISO10646-1993} +``` +public static final UnicodePlatformSpecificId ISO10646_1993 +``` + + +Valeur 2 sémantique ISO 10646 1993 (obsolète). + +### Unicode1_1 {#Unicode1-1} +``` +public static final UnicodePlatformSpecificId Unicode1_1 +``` + + +Valeur 1 sémantique Unicode 1.1. + +### Unicode2_0 {#Unicode2-0} +``` +public static final UnicodePlatformSpecificId Unicode2_0 +``` + + +Valeur 3 sémantique Unicode 2.0 ou ultérieure. BMP Unicode uniquement. + +### Unicode2_0_Full {#Unicode2-0-Full} +``` +public static final UnicodePlatformSpecificId Unicode2_0_Full +``` + + +Valeur 4 sémantique Unicode 2.0 et suivantes (caractères non BMP autorisés), répertoire complet Unicode. + +### valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-} +``` +public static T valueOf(Class arg0, String arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Class | | +| arg1 | java.lang.String | | + +**Returns:** +T +### compareTo(E arg0) {#compareTo-E-} +``` +public final int compareTo(E arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | E | | + +**Returns:** +int +### describeConstable() {#describeConstable--} +``` +public final Optional> describeConstable() +``` + + + + +**Returns:** +java.util.Optional> +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public final boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getDeclaringClass() {#getDeclaringClass--} +``` +public final Class getDeclaringClass() +``` + + + + +**Returns:** +java.lang.Class +### hashCode() {#hashCode--} +``` +public final int hashCode() +``` + + + + +**Returns:** +int +### name() {#name--} +``` +public final String name() +``` + + + + +**Returns:** +java.lang.String +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### ordinal() {#ordinal--} +``` +public final int ordinal() +``` + + + + +**Returns:** +int +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### valueOf(String name) {#valueOf-java.lang.String-} +``` +public static UnicodePlatformSpecificId valueOf(String name) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| nom | java.lang.String | | + +**Returns:** +[UnicodePlatformSpecificId](../../com.aspose.font/unicodeplatformspecificid) +### values() {#values--} +``` +public static UnicodePlatformSpecificId[] values() +``` + + + + +**Returns:** +com.aspose.font.UnicodePlatformSpecificId[] +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/version16dot16/_index.md b/french/java/com.aspose.font/version16dot16/_index.md new file mode 100644 index 0000000000..4eda7eaf71 --- /dev/null +++ b/french/java/com.aspose.font/version16dot16/_index.md @@ -0,0 +1,227 @@ +--- +title: "Version16Dot16" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente le type de données Version16Dot16" +type: docs +weight: 118 +url: /fr/java/com.aspose.font/version16dot16/ +--- +**Inheritance:** +java.lang.Object + +**All Implemented Interfaces:** +java.lang.Cloneable +``` +public class Version16Dot16 implements Cloneable +``` + +Représente le type de données Version16Dot16 +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [Version16Dot16()](#Version16Dot16--) | Constructeur | +| [Version16Dot16(int majorNumber, int minorNumber)](#Version16Dot16-int-int-) | Constructeur | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [clone()](#clone--) | Créer une copie de l'objet Version16Dot16. | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getClass()](#getClass--) | | +| [getMajorNumber()](#getMajorNumber--) | Obtient le numéro de version majeur. | +| [getMinorNumber()](#getMinorNumber--) | Obtient le numéro de version mineur. | +| [getRawBytes()](#getRawBytes--) | Obtient tous les bits bruts du numéro de version Version16Dot16 sous forme de tableau d'octets de taille 4 octets. | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setMajorNumber(int value)](#setMajorNumber-int-) | Définit le numéro de version majeur. | +| [setMinorNumber(int value)](#setMinorNumber-int-) | Définit le numéro de version mineur. | +| [toString()](#toString--) | Renvoie la valeur de version sous forme de chaîne formatée. Par exemple "0.5", "1.1", "3.0", etc. | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### Version16Dot16() {#Version16Dot16--} +``` +public Version16Dot16() +``` + + +Constructeur + +### Version16Dot16(int majorNumber, int minorNumber) {#Version16Dot16-int-int-} +``` +public Version16Dot16(int majorNumber, int minorNumber) +``` + + +Constructeur + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| majorNumber | int | Numéro de version majeur | +| minorNumber | int | Numéro de version mineur | + +### clone() {#clone--} +``` +public Object clone() +``` + + +Créer une copie de l'objet Version16Dot16. + +**Returns:** +java.lang.Object - Objet de type Version16Dot16 +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getMajorNumber() {#getMajorNumber--} +``` +public int getMajorNumber() +``` + + +Obtient le numéro de version majeur. La valeur n'a de sens que dans une notation hexadécimale, par exemple la version 0,5 pour 'maxp' dans les fichiers de police réels est de 4 octets : \{0, 0, 80, 0\}, qui a la représentation hexadécimale 0x00005000. Après avoir lu cette version depuis le fichier de police, les numéros majeur et mineur pour l'objet Version16Dot16 seront respectivement 0 et 20480. Et ces valeurs sous forme hexadécimale sont 0x0000 et 0x5000. + +**Returns:** +int - Numéro de version majeur. +### getMinorNumber() {#getMinorNumber--} +``` +public int getMinorNumber() +``` + + +Obtient le numéro de version mineur. La valeur n'a de sens que dans une notation hexadécimale, par exemple la version 0,5 pour 'maxp' dans les fichiers de police réels est de 4 octets : \{0, 0, 80, 0\}, qui a la représentation hexadécimale 0x00005000. Après avoir lire cette version depuis le fichier de police, les numéros majeur et mineur pour l'objet Version16Dot16 seront respectivement 0 et 20480. Et ces valeurs sous forme hexadécimale sont 0x0000 et 0x5000. + +**Returns:** +int - Numéro de version mineur. +### getRawBytes() {#getRawBytes--} +``` +public byte[] getRawBytes() +``` + + +Obtient tous les bits bruts du numéro de version Version16Dot16 sous forme de tableau d'octets de taille 4 octets. + +**Returns:** +byte[] - Tous les bits bruts du numéro de version Version16Dot16 sous forme de tableau d'octets de taille 4 octets. +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setMajorNumber(int value) {#setMajorNumber-int-} +``` +public void setMajorNumber(int value) +``` + + +Définit le numéro de version majeur. La valeur n'a de sens que dans une notation hexadécimale, par exemple la version 0,5 pour 'maxp' dans les fichiers de police réels est de 4 octets : \{0, 0, 80, 0\}, qui a la représentation hexadécimale 0x00005000. Après avoir lu cette version depuis le fichier de police, les numéros majeur et mineur pour l'objet Version16Dot16 seront respectivement 0 et 20480. Et ces valeurs sous forme hexadécimale sont 0x0000 et 0x5000. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | Numéro de version majeur. | + +### setMinorNumber(int value) {#setMinorNumber-int-} +``` +public void setMinorNumber(int value) +``` + + +Définit le numéro de version mineur. La valeur n'a de sens que dans une notation hexadécimale, par exemple la version 0,5 pour 'maxp' dans les fichiers de police réels est de 4 octets : \{0, 0, 80, 0\}, qui a la représentation hexadécimale 0x00005000. Après avoir lu cette version depuis le fichier de police, les numéros majeur et mineur pour l'objet Version16Dot16 seront respectivement 0 et 20480. Et ces valeurs sous forme hexadécimale sont 0x0000 et 0x5000. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| valeur | int | Numéro de version mineur. | + +### toString() {#toString--} +``` +public String toString() +``` + + +Renvoie la valeur de version sous forme de chaîne formatée. Par exemple "0.5", "1.1", "3.0", etc. + +**Returns:** +java.lang.String - Objet de type String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/french/java/com.aspose.font/woffformatexception/_index.md b/french/java/com.aspose.font/woffformatexception/_index.md new file mode 100644 index 0000000000..19d0e38a97 --- /dev/null +++ b/french/java/com.aspose.font/woffformatexception/_index.md @@ -0,0 +1,313 @@ +--- +title: "WoffFormatException" +second_title: "Référence API d'Aspose.Font pour Java" +description: "Représente l'exception liée au traitement des polices WOFF." +type: docs +weight: 119 +url: /fr/java/com.aspose.font/woffformatexception/ +--- +**Inheritance:** +java.lang.Object, java.lang.Throwable, java.lang.Exception, java.lang.RuntimeException, java.lang.IllegalStateException +``` +public class WoffFormatException extends IllegalStateException +``` + +Représente l'exception liée au traitement des polices WOFF. +## Constructeurs + +| Constructeur | Description | +| --- | --- | +| [WoffFormatException()](#WoffFormatException--) | Initialise un nouvel objet WoffFormatException. | +| [WoffFormatException(String message)](#WoffFormatException-java.lang.String-) | Initialise un nouvel objet WoffFormatException. | +| [WoffFormatException(String message, RuntimeException innerException)](#WoffFormatException-java.lang.String-java.lang.RuntimeException-) | Initialise un nouvel objet WoffFormatException. | +## Méthodes + +| Méthode | Description | +| --- | --- | +| [addSuppressed(Throwable arg0)](#addSuppressed-java.lang.Throwable-) | | +| [equals(Object arg0)](#equals-java.lang.Object-) | | +| [fillInStackTrace()](#fillInStackTrace--) | | +| [getCause()](#getCause--) | | +| [getClass()](#getClass--) | | +| [getLocalizedMessage()](#getLocalizedMessage--) | | +| [getMessage()](#getMessage--) | | +| [getStackTrace()](#getStackTrace--) | | +| [getSuppressed()](#getSuppressed--) | | +| [hashCode()](#hashCode--) | | +| [initCause(Throwable arg0)](#initCause-java.lang.Throwable-) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [printStackTrace()](#printStackTrace--) | | +| [printStackTrace(PrintStream arg0)](#printStackTrace-java.io.PrintStream-) | | +| [printStackTrace(PrintWriter arg0)](#printStackTrace-java.io.PrintWriter-) | | +| [setStackTrace(StackTraceElement[] arg0)](#setStackTrace-java.lang.StackTraceElement---) | | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### WoffFormatException() {#WoffFormatException--} +``` +public WoffFormatException() +``` + + +Initialise un nouvel objet WoffFormatException. + +### WoffFormatException(String message) {#WoffFormatException-java.lang.String-} +``` +public WoffFormatException(String message) +``` + + +Initialise un nouvel objet WoffFormatException. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| message | java.lang.String | Un message qui décrit l'erreur. | + +### WoffFormatException(String message, RuntimeException innerException) {#WoffFormatException-java.lang.String-java.lang.RuntimeException-} +``` +public WoffFormatException(String message, RuntimeException innerException) +``` + + +Initialise un nouvel objet WoffFormatException. + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| message | java.lang.String | Un message qui décrit l'erreur. | +| innerException | java.lang.RuntimeException | L'exception qui est la cause de l'exception actuelle. | + +### addSuppressed(Throwable arg0) {#addSuppressed-java.lang.Throwable-} +``` +public final synchronized void addSuppressed(Throwable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Throwable | | + +### equals(Object arg0) {#equals-java.lang.Object-} +``` +public boolean equals(Object arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Object | | + +**Returns:** +boolean +### fillInStackTrace() {#fillInStackTrace--} +``` +public synchronized Throwable fillInStackTrace() +``` + + + + +**Returns:** +java.lang.Throwable +### getCause() {#getCause--} +``` +public synchronized Throwable getCause() +``` + + + + +**Returns:** +java.lang.Throwable +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getLocalizedMessage() {#getLocalizedMessage--} +``` +public String getLocalizedMessage() +``` + + + + +**Returns:** +java.lang.String +### getMessage() {#getMessage--} +``` +public String getMessage() +``` + + + + +**Returns:** +java.lang.String +### getStackTrace() {#getStackTrace--} +``` +public StackTraceElement[] getStackTrace() +``` + + + + +**Returns:** +java.lang.StackTraceElement[] +### getSuppressed() {#getSuppressed--} +``` +public final synchronized Throwable[] getSuppressed() +``` + + + + +**Returns:** +java.lang.Throwable[] +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### initCause(Throwable arg0) {#initCause-java.lang.Throwable-} +``` +public synchronized Throwable initCause(Throwable arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.Throwable | | + +**Returns:** +java.lang.Throwable +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### printStackTrace() {#printStackTrace--} +``` +public void printStackTrace() +``` + + + + +### printStackTrace(PrintStream arg0) {#printStackTrace-java.io.PrintStream-} +``` +public void printStackTrace(PrintStream arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.io.PrintStream | | + +### printStackTrace(PrintWriter arg0) {#printStackTrace-java.io.PrintWriter-} +``` +public void printStackTrace(PrintWriter arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.io.PrintWriter | | + +### setStackTrace(StackTraceElement[] arg0) {#setStackTrace-java.lang.StackTraceElement---} +``` +public void setStackTrace(StackTraceElement[] arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | java.lang.StackTraceElement[] | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final native void wait(long arg0) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Paramètre | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | +