Главная страница
Top.Mail.Ru    Яндекс.Метрика
Текущий архив: 2002.12.30;
Скачать: CL | DM;

Вниз

Не подскажете,а?   Найти похожие ветки 

 
The_Vizit0r   (2002-12-19 19:31) [0]

Не подскажете,а? Как прорисовать в имайдже текст по окружности?


 
Сатир ©   (2002-12-19 21:36) [1]

Как вывести на Canvas надпись под углом?
function CreateRotatedFont(F : TFont; Angle : Integer) : hFont;

{-create a rotated font based on the font object F}
var

LF : TLogFont;
begin

FillChar(LF, SizeOf(LF), #0);
with LF do begin
lfHeight := F.Height;
lfWidth := 0;
lfEscapement := Angle*10;
lfOrientation := 0;
if fsBold in F.Style then
lfWeight := FW_BOLD
else
lfWeight := FW_NORMAL;
lfItalic := Byte(fsItalic in F.Style);
lfUnderline := Byte(fsUnderline in F.Style);
lfStrikeOut := Byte(fsStrikeOut in F.Style);
lfCharSet := DEFAULT_CHARSET;
StrPCopy(lfFaceName, F.Name);
lfQuality := DEFAULT_QUALITY;
{everything else as default}
lfOutPrecision := OUT_DEFAULT_PRECIS;
lfClipPrecision := CLIP_DEFAULT_PRECIS;
case F.Pitch of
fpVariable : lfPitchAndFamily := VARIABLE_PITCH;
fpFixed : lfPitchAndFamily := FIXED_PITCH;
else
lfPitchAndFamily := DEFAULT_PITCH;
end;
end;
Result := CreateFontIndirect(LF);
end;

...


{create the rotated font}
if FontAngle <&tg; 0 then
Canvas.Font.Handle := CreateRotatedFont(Font, FontAngle);
...
Вращаются только векторные шрифты.



Страницы: 1 вся ветка

Текущий архив: 2002.12.30;
Скачать: CL | DM;

Наверх




Память: 0.46 MB
Время: 0.017 c
1-99098
Older
2002-12-19 04:19
2002.12.30
подавление сообщения wm_Destroy


14-99243
MaximatorVeter
2002-12-06 16:29
2002.12.30
Памяти больше - работает медленее.


14-99316
Dyha
2002-12-10 12:13
2002.12.30
BiOS


1-99114
GIL
2002-12-13 06:11
2002.12.30
Проблемы с Listbox


6-99216
kerrik
2002-11-02 00:31
2002.12.30
Как сделать пинг компьютера?