본문 바로가기
Application/Delphi Lecture

이미지에 텍스트 배경 투명 처리

by 현이빈이 2008. 8. 13.
반응형

with Image1 do
  begin
    Canvas.Brush.Style := bsClear;
    Canvas.Font.Color := clWhite;
    Canvas.Font.Size:=12;
    Canvas.Font.Style :=[fsBold];
    Canvas.TextOut(10, 10,'fdafstest');

  end;    // with

반응형