2000-08-23 19:32:42 +02:00
|
|
|
/***************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* ftsynth.c */
|
|
|
|
/* */
|
|
|
|
/* FreeType synthesizing code for emboldening and slanting (body). */
|
|
|
|
/* */
|
2004-11-24 08:08:21 +01:00
|
|
|
/* Copyright 2000-2001, 2002, 2003, 2004 by */
|
2000-08-23 19:32:42 +02:00
|
|
|
/* David Turner, Robert Wilhelm, and Werner Lemberg. */
|
|
|
|
/* */
|
|
|
|
/* This file is part of the FreeType project, and may only be used, */
|
|
|
|
/* modified, and distributed under the terms of the FreeType project */
|
|
|
|
/* license, LICENSE.TXT. By continuing to use, modify, or distribute */
|
|
|
|
/* this file you indicate that you have read the license and */
|
|
|
|
/* understand and accept it fully. */
|
|
|
|
/* */
|
|
|
|
/***************************************************************************/
|
|
|
|
|
2000-12-08 17:17:16 +01:00
|
|
|
|
|
|
|
#include <ft2build.h>
|
|
|
|
#include FT_INTERNAL_OBJECTS_H
|
2001-07-13 00:41:08 +02:00
|
|
|
#include FT_INTERNAL_CALC_H
|
2000-12-08 17:17:16 +01:00
|
|
|
#include FT_OUTLINE_H
|
2002-07-01 23:33:48 +02:00
|
|
|
#include FT_TRIGONOMETRY_H
|
2000-12-08 17:17:16 +01:00
|
|
|
#include FT_SYNTHESIS_H
|
2000-08-23 00:53:03 +02:00
|
|
|
|
2000-08-23 19:32:42 +02:00
|
|
|
|
2000-08-23 00:53:03 +02:00
|
|
|
#define FT_BOLD_THRESHOLD 0x0100
|
|
|
|
|
2000-08-23 19:32:42 +02:00
|
|
|
|
2000-08-23 00:53:03 +02:00
|
|
|
/*************************************************************************/
|
|
|
|
/*************************************************************************/
|
|
|
|
/**** ****/
|
|
|
|
/**** EXPERIMENTAL OBLIQUING SUPPORT ****/
|
|
|
|
/**** ****/
|
|
|
|
/*************************************************************************/
|
|
|
|
/*************************************************************************/
|
|
|
|
|
2002-07-01 23:33:48 +02:00
|
|
|
FT_EXPORT_DEF( void )
|
|
|
|
FT_GlyphSlot_Oblique( FT_GlyphSlot slot )
|
2000-08-23 00:53:03 +02:00
|
|
|
{
|
2002-07-01 23:33:48 +02:00
|
|
|
FT_Matrix transform;
|
|
|
|
FT_Outline* outline = &slot->outline;
|
2000-08-23 19:32:42 +02:00
|
|
|
|
2002-07-26 11:09:10 +02:00
|
|
|
|
2002-07-01 23:33:48 +02:00
|
|
|
/* only oblique outline glyphs */
|
* massive re-formatting changes to many, many source files. I don't
want to list them all here. The operations performed were all logical
transformations of the sources:
- trying to convert all enums and constants to CAPITALIZED_STYLE, with
#define definitions like
#define my_old_constants MY_NEW_CONSTANT
- big, big update of the documentation comments
* include/freetype/freetype.h, src/base/ftobjs.c, src/smooth/ftsmooth.c,
include/freetype/ftimage.h: adding support for LCD-optimized rendering
though the new constants/enums:
FT_RENDER_MODE_LCD, FT_RENDER_MODE_LCD_V
FT_PIXEL_MODE_LCD, FT_PIXEL_MODE_LCD_V
this is still work in progress, don't expect everything to work correctly
though most of the features have been implemented.
* adding new FT_LOAD_XXX flags, used to specify both hinting and rendering
targets:
FT_LOAD_TARGET_NORMAL :: anti-aliased hinting & rendering
FT_LOAD_TARGET_MONO :: monochrome bitmaps
FT_LOAD_TARGET_LCD :: horizontal RGB/BGR decimated hinting & rendering
FT_LOAD_TARGET_LCD_V :: vertical RGB/BGR decimated hinting & rendering
note that FT_LOAD_TARGET_NORMAL is 0, which means that the default
behaviour of the font engine is _unchanged_.
2002-08-27 22:20:29 +02:00
|
|
|
if ( slot->format != FT_GLYPH_FORMAT_OUTLINE )
|
2002-07-01 23:33:48 +02:00
|
|
|
return;
|
2000-10-31 21:42:18 +01:00
|
|
|
|
2002-07-01 23:33:48 +02:00
|
|
|
/* we don't touch the advance width */
|
2000-08-23 19:32:42 +02:00
|
|
|
|
2000-08-23 00:53:03 +02:00
|
|
|
/* For italic, simply apply a shear transform, with an angle */
|
2000-08-23 19:32:42 +02:00
|
|
|
/* of about 12 degrees. */
|
2000-10-31 21:42:18 +01:00
|
|
|
|
2000-10-15 23:59:58 +02:00
|
|
|
transform.xx = 0x10000L;
|
|
|
|
transform.yx = 0x00000L;
|
2000-10-31 21:42:18 +01:00
|
|
|
|
2000-10-15 23:59:58 +02:00
|
|
|
transform.xy = 0x06000L;
|
|
|
|
transform.yy = 0x10000L;
|
2000-10-31 21:42:18 +01:00
|
|
|
|
2000-10-15 23:59:58 +02:00
|
|
|
FT_Outline_Transform( outline, &transform );
|
2000-08-23 00:53:03 +02:00
|
|
|
}
|
|
|
|
|
2000-08-23 19:32:42 +02:00
|
|
|
|
2000-08-23 00:53:03 +02:00
|
|
|
/*************************************************************************/
|
|
|
|
/*************************************************************************/
|
|
|
|
/**** ****/
|
|
|
|
/**** EXPERIMENTAL EMBOLDENING/OUTLINING SUPPORT ****/
|
|
|
|
/**** ****/
|
|
|
|
/*************************************************************************/
|
|
|
|
/*************************************************************************/
|
|
|
|
|
2000-08-23 19:32:42 +02:00
|
|
|
|
2000-08-23 00:53:03 +02:00
|
|
|
|
2002-07-01 23:33:48 +02:00
|
|
|
FT_EXPORT_DEF( void )
|
|
|
|
FT_GlyphSlot_Embolden( FT_GlyphSlot slot )
|
2000-08-23 00:53:03 +02:00
|
|
|
{
|
2002-07-01 23:33:48 +02:00
|
|
|
FT_Vector* points;
|
|
|
|
FT_Vector v_prev, v_first, v_next, v_cur;
|
|
|
|
FT_Pos distance;
|
|
|
|
FT_Outline* outline = &slot->outline;
|
|
|
|
FT_Face face = FT_SLOT_FACE( slot );
|
|
|
|
FT_Angle rotate, angle_in, angle_out;
|
2004-11-24 08:08:21 +01:00
|
|
|
FT_Int c, n, first;
|
2002-07-01 23:33:48 +02:00
|
|
|
|
2002-07-26 11:09:10 +02:00
|
|
|
|
2002-07-01 23:33:48 +02:00
|
|
|
/* only embolden outline glyph images */
|
* massive re-formatting changes to many, many source files. I don't
want to list them all here. The operations performed were all logical
transformations of the sources:
- trying to convert all enums and constants to CAPITALIZED_STYLE, with
#define definitions like
#define my_old_constants MY_NEW_CONSTANT
- big, big update of the documentation comments
* include/freetype/freetype.h, src/base/ftobjs.c, src/smooth/ftsmooth.c,
include/freetype/ftimage.h: adding support for LCD-optimized rendering
though the new constants/enums:
FT_RENDER_MODE_LCD, FT_RENDER_MODE_LCD_V
FT_PIXEL_MODE_LCD, FT_PIXEL_MODE_LCD_V
this is still work in progress, don't expect everything to work correctly
though most of the features have been implemented.
* adding new FT_LOAD_XXX flags, used to specify both hinting and rendering
targets:
FT_LOAD_TARGET_NORMAL :: anti-aliased hinting & rendering
FT_LOAD_TARGET_MONO :: monochrome bitmaps
FT_LOAD_TARGET_LCD :: horizontal RGB/BGR decimated hinting & rendering
FT_LOAD_TARGET_LCD_V :: vertical RGB/BGR decimated hinting & rendering
note that FT_LOAD_TARGET_NORMAL is 0, which means that the default
behaviour of the font engine is _unchanged_.
2002-08-27 22:20:29 +02:00
|
|
|
if ( slot->format != FT_GLYPH_FORMAT_OUTLINE )
|
2002-07-01 23:33:48 +02:00
|
|
|
return;
|
2000-08-23 00:53:03 +02:00
|
|
|
|
|
|
|
/* compute control distance */
|
|
|
|
distance = FT_MulFix( face->units_per_EM / 60,
|
|
|
|
face->size->metrics.y_scale );
|
|
|
|
|
2004-11-24 08:08:21 +01:00
|
|
|
if ( FT_Outline_Get_Orientation( outline ) == FT_ORIENTATION_TRUETYPE )
|
|
|
|
rotate = -FT_ANGLE_PI2;
|
|
|
|
else
|
|
|
|
rotate = FT_ANGLE_PI2;
|
2000-08-23 00:53:03 +02:00
|
|
|
|
2002-07-01 23:33:48 +02:00
|
|
|
points = outline->points;
|
2000-08-23 00:53:03 +02:00
|
|
|
|
|
|
|
first = 0;
|
|
|
|
for ( c = 0; c < outline->n_contours; c++ )
|
|
|
|
{
|
|
|
|
int last = outline->contours[c];
|
|
|
|
|
|
|
|
|
2002-07-01 23:33:48 +02:00
|
|
|
v_first = points[first];
|
|
|
|
v_prev = points[last];
|
2002-08-22 22:35:36 +02:00
|
|
|
v_cur = v_first;
|
2000-08-23 00:53:03 +02:00
|
|
|
|
|
|
|
for ( n = first; n <= last; n++ )
|
|
|
|
{
|
2002-07-01 23:33:48 +02:00
|
|
|
FT_Pos d;
|
2000-08-23 00:53:03 +02:00
|
|
|
FT_Vector in, out;
|
2002-07-01 23:33:48 +02:00
|
|
|
FT_Fixed scale;
|
|
|
|
FT_Angle angle_diff;
|
2000-08-23 00:53:03 +02:00
|
|
|
|
|
|
|
|
2002-07-01 23:33:48 +02:00
|
|
|
if ( n < last ) v_next = points[n + 1];
|
|
|
|
else v_next = v_first;
|
2000-08-23 00:53:03 +02:00
|
|
|
|
|
|
|
/* compute the in and out vectors */
|
2002-07-01 23:33:48 +02:00
|
|
|
in.x = v_cur.x - v_prev.x;
|
|
|
|
in.y = v_cur.y - v_prev.y;
|
2000-08-23 00:53:03 +02:00
|
|
|
|
2002-07-01 23:33:48 +02:00
|
|
|
out.x = v_next.x - v_cur.x;
|
|
|
|
out.y = v_next.y - v_cur.y;
|
2000-08-23 00:53:03 +02:00
|
|
|
|
2002-07-01 23:33:48 +02:00
|
|
|
angle_in = FT_Atan2( in.x, in.y );
|
|
|
|
angle_out = FT_Atan2( out.x, out.y );
|
|
|
|
angle_diff = FT_Angle_Diff( angle_in, angle_out );
|
|
|
|
scale = FT_Cos( angle_diff/2 );
|
2000-08-23 00:53:03 +02:00
|
|
|
|
2002-10-31 09:30:19 +01:00
|
|
|
if ( scale < 0x400L && scale > -0x400L )
|
|
|
|
{
|
|
|
|
if ( scale >= 0 )
|
|
|
|
scale = 0x400L;
|
|
|
|
else
|
|
|
|
scale = -0x400L;
|
|
|
|
}
|
2000-08-23 00:53:03 +02:00
|
|
|
|
2002-07-01 23:33:48 +02:00
|
|
|
d = FT_DivFix( distance, scale );
|
2000-08-23 00:53:03 +02:00
|
|
|
|
2002-10-31 09:30:19 +01:00
|
|
|
FT_Vector_From_Polar( &in, d, angle_in + angle_diff/2 - rotate );
|
2000-08-23 00:53:03 +02:00
|
|
|
|
2002-07-01 23:33:48 +02:00
|
|
|
outline->points[n].x = v_cur.x + distance + in.x;
|
|
|
|
outline->points[n].y = v_cur.y + distance + in.y;
|
2000-08-23 00:53:03 +02:00
|
|
|
|
2002-07-01 23:33:48 +02:00
|
|
|
v_prev = v_cur;
|
|
|
|
v_cur = v_next;
|
2000-08-23 00:53:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
first = last + 1;
|
|
|
|
}
|
|
|
|
|
2003-12-24 14:37:58 +01:00
|
|
|
slot->metrics.horiAdvance =
|
|
|
|
( slot->metrics.horiAdvance + distance*4 ) & ~63;
|
2000-08-23 00:53:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-08-23 19:32:42 +02:00
|
|
|
/* END */
|