Rendu de texte à l'aide de la police Type1 | Java
Rendu du texte
Afin de restituer le texte, le sous-système de rendu nécessite l’implémentation de l’interface Aspose.Font.Rendering.IGlyphOutlinePainter pour dessiner le glyphe. Ceci peut être réalisé en suivant les étapes suivantes.
- Créez la méthode
DrawText()
qui dessine le texte spécifié dans l’objet System.Drawing.Bitmap et enregistre le bitmap résultant sur le disque. Cela comprendra les étapes suivantes :
Itérer tous les symboles dans la chaîne de texte .
Obtenez l’identifiant de glyphe pour chaque symbole traité - gid .
Créez un objet de type GlyphOutlinePainter qui est requis par le sous-système de rendu pour dessiner le glyphe actuel .
Créez un objet de type Aspose.Font.Renderers.GlyphOutlineRenderer et transmettez l’objet de type GlyphOutlinePainter que vous venez de créer dans le constructeur de GlyphOutlineRenderer. Cet objet GlyphOutlineRenderer était destiné à restituer le glyphe spécifié .
Rendre le glyphe traité actuel à l’aide de la méthode GlyphOutlineRenderer.RenderGlyph(). L’objet Aspose.Fonts.Matrix est utilisé pour spécifier les coordonnées du glyphe. Le glyphe à restituer est spécifié par le paramètre gid.
« Étapes auxiliaires pour cette stratégie »
La coordonnée du glyphe pour l’axe « Y » est constante pour cet extrait de code .
Les coordonnées du glyphe pour l’axe « X » sont calculées pour chaque glyphe traité .
Les coordonnées ‘X’ et ‘Y’ sont transmises à l’objet Aspose.Fonts.Matrix qui est utilisé par GlyphOutlineRenderer pour dessiner un glyphe .
La distance entre les glyphes qui viennent d’être traités et les glyphes précédents est calculée à chaque étape d’itération. Cette distance affecte chaque coordonnée « X » de glyphe .
L’objet de type GlyphOutlinePainter dessine le glyphe à l’aide de GlyphOutlinePainter non pas directement dans Bitmap, mais dans l’objet GraphicsPath, qui a été passé au constructeur pour GlyphOutlinePainter, nous utilisons donc un objet de type System.Drawing.Graphics pour dessiner GraphicsPath dans Bitmap .
Méthode FontWidthToImageWith() qui calcule la largeur du glyphe pour le système de coordonnées bitmap.
La mise en œuvre est comme illustré ci-dessous.
1// For complete examples and data files, please go to https://github.com/aspose-font/Aspose.Font-for-Java
2static void drawText(String text, IFont font, double fontSize,
3 Paint backgroundBrush, Paint textBrush, String outFile) throws Exception
4{
5 //Get glyph identifiers for every symbol in text line
6 GlyphId[] gids = new GlyphId[text.length()];
7 for (int i = 0; i < text.length(); i++)
8 gids[i] = font.getEncoding().decodeToGid(text.charAt(i));
9 // set common drawing settings
10 double dpi = 300;
11
12 double resolutionCorrection = dpi / 72; // 72 is font's internal dpi
13 // prepare output bitmap
14 BufferedImage outBitmap = new BufferedImage(960, 720, BufferedImage.TYPE_INT_BGR);
15 //outBitmap.getRaster().SetResolution((float)dpi, (float)dpi);
16 java.awt.Graphics2D outGraphics = (java.awt.Graphics2D) outBitmap.getGraphics();
17 outGraphics.setPaint(backgroundBrush);
18 outGraphics.fillRect(0, 0, outBitmap.getWidth(), outBitmap.getHeight());
19 outGraphics.setRenderingHint(RenderingHints.KEY_RENDERING, RenderingHints.VALUE_RENDER_QUALITY);
20 //declare coordinate variables and previous gid
21 GlyphId previousGid = null;
22 double glyphXCoordinate = 0;
23 double glyphYCoordinate = fontSize * resolutionCorrection;
24 //loop which paints every glyph in gids
25 for (GlyphId gid : gids)
26 {
27 // if the font contains the gid
28 if (gid != null)
29 {
30 Glyph glyph = font.getGlyphAccessor().getGlyphById(gid);
31 if (glyph == null)
32 continue;
33
34 // path that accepts drawing instructions
35 GeneralPath path = new GeneralPath();
36
37 // Create IGlyphOutlinePainter implementation
38 GlyphOutlinePainter outlinePainter = new GlyphOutlinePainter(path);
39
40 // Create the renderer
41 IGlyphRenderer renderer = new GlyphOutlineRenderer(outlinePainter);
42
43 // get common glyph properties
44 double kerning = 0;
45
46 // get kerning value
47 if (previousGid != null)
48 {
49 kerning = (font.getMetrics().getKerningValue(previousGid, gid) /
50 glyph.getSourceResolution()) * fontSize * resolutionCorrection;
51 kerning += fontWidthToImageWith(font.getMetrics().getGlyphWidth(previousGid),
52 glyph.getSourceResolution(), fontSize, 300);
53 }
54
55 // glyph positioning - increase glyph X coordinate according to kerning distance
56 glyphXCoordinate += kerning;
57
58 // Glyph placement matrix
59 TransformationMatrix glyphMatrix =
60 new TransformationMatrix(
61 new double[]
62 {
63 fontSize*resolutionCorrection,
64 0,
65 0,
66 // negative because of bitmap coordinate system begins from the top
67 - fontSize*resolutionCorrection,
68 glyphXCoordinate,
69 glyphYCoordinate
70 });
71
72 // render current glyph
73 renderer.renderGlyph(font, gid, glyphMatrix);
74 // fill the path
75 path.setWindingRule(GeneralPath.WIND_NON_ZERO);
76 outGraphics.setPaint(textBrush);
77 outGraphics.fill(path);
78 }
79 //set current gid as previous to get correct kerning for next glyph
80 previousGid = gid;
81 }
82 //Save results
83 ImageIO.write(outBitmap, "jpg", new File(outFile));
84}
- Créez une méthode utilitaire pour calculer la largeur de la police par rapport à la largeur de l’image, comme indiqué dans l’exemple de code ci-dessous.
1// For complete examples and data files, please go to https://github.com/aspose-font/Aspose.Font-for-Java
2static double fontWidthToImageWidth(double width, int fontSourceResulution, double fontSize, double dpi)
3{
4 double resolutionCorrection = dpi / 72; // 72 is font's internal dpi
5 return (width / fontSourceResulution) * fontSize * resolutionCorrection;
6}
Appel de la fonctionnalité Rendu du texte
Pour utiliser les implémentations ci-dessus, l’exemple de code suivant peut être exécuté à partir de la méthode Main d’une application basée sur console.
1// For complete examples and data files, please go to https://github.com/aspose-font/Aspose.Font-for-Java
2String fileName = Utils.getDataDir() + "courier.pfb"; //Font file name with full path
3
4FontDefinition fd = new FontDefinition(FontType.Type1, new FontFileDefinition("pfb", new FileSystemStreamSource(fileName)));
5 Type1Font font = (Type1Font) Font.open(fd);
6
7 try {
8 drawText("Hello world", font, 14, java.awt.Color.WHITE, java.awt.Color.BLACK, Utils.getDataDir() + "hello1_type1_out.jpg");
9 drawText("Hello world", font, 14, java.awt.Color.YELLOW, java.awt.Color.RED, Utils.getDataDir() + "hello2_type1_out.jpg");
10 } catch (Exception ex) {
11 ex.printStackTrace();
12 }