Class ArabicScriptProcessor
- java.lang.Object
-
- org.apache.fop.complexscripts.scripts.ScriptProcessor
-
- org.apache.fop.complexscripts.scripts.DefaultScriptProcessor
-
- org.apache.fop.complexscripts.scripts.ArabicScriptProcessor
-
public class ArabicScriptProcessor extends DefaultScriptProcessor
The
ArabicScriptProcessorclass implements a script processor for performing glyph substitution and positioning operations on content associated with the Arabic script.This work was originally authored by Glenn Adams (gadams@apache.org).
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ScriptContextTestergetPositioningContextTester()Obtain script specific positioning context tester.java.lang.String[]getPositioningFeatures()Obtain script specific required positioning features.ScriptContextTestergetSubstitutionContextTester()Obtain script specific substitution context tester.java.lang.String[]getSubstitutionFeatures()Obtain script specific required substitution features.GlyphSequencereorderCombiningMarks(GlyphDefinitionTable gdef, GlyphSequence gs, int[] widths, int[][] gpa, java.lang.String script, java.lang.String language)Reorder combining marks in glyph sequence so that they precede (within the sequence) the base character to which they are applied.-
Methods inherited from class org.apache.fop.complexscripts.scripts.DefaultScriptProcessor
isReorderedMark
-
Methods inherited from class org.apache.fop.complexscripts.scripts.ScriptProcessor
assembleLookups, getInstance, getOptionalPositioningFeatures, getOptionalSubstitutionFeatures, getScript, position, position, preProcess, substitute, substitute
-
-
-
-
Method Detail
-
getSubstitutionFeatures
public java.lang.String[] getSubstitutionFeatures()
Obtain script specific required substitution features.- Overrides:
getSubstitutionFeaturesin classDefaultScriptProcessor- Returns:
- array of suppported substitution features or null
-
getSubstitutionContextTester
public ScriptContextTester getSubstitutionContextTester()
Obtain script specific substitution context tester.- Overrides:
getSubstitutionContextTesterin classDefaultScriptProcessor- Returns:
- substitution context tester or null
-
getPositioningFeatures
public java.lang.String[] getPositioningFeatures()
Obtain script specific required positioning features.- Overrides:
getPositioningFeaturesin classDefaultScriptProcessor- Returns:
- array of suppported positioning features or null
-
getPositioningContextTester
public ScriptContextTester getPositioningContextTester()
Obtain script specific positioning context tester.- Overrides:
getPositioningContextTesterin classDefaultScriptProcessor- Returns:
- positioning context tester or null
-
reorderCombiningMarks
public GlyphSequence reorderCombiningMarks(GlyphDefinitionTable gdef, GlyphSequence gs, int[] widths, int[][] gpa, java.lang.String script, java.lang.String language)
Reorder combining marks in glyph sequence so that they precede (within the sequence) the base character to which they are applied. N.B. In the case of RTL segments, marks are not reordered by this, method since when the segment is reversed by BIDI processing, marks are automatically reordered to precede their base glyph.- Overrides:
reorderCombiningMarksin classDefaultScriptProcessor- Parameters:
gdef- the glyph definition table that appliesgs- an input glyph sequencewidths- associated unscaled advance widths (also reordered)gpa- associated glyph position adjustments (also reordered)script- a script identifierlanguage- a language identifier- Returns:
- the reordered (output) glyph sequence
-
-