делфи картинка

Discussion in 'С/С++, C#, Rust, Swift, Go, Java, Perl, Ruby' started by mazaxaka, 11 Aug 2013.

  1. mazaxaka

    mazaxaka Elder - Старейшина

    Joined:
    15 Feb 2008
    Messages:
    268
    Likes Received:
    35
    Reputations:
    0
    сообствено вопрос
    как в делфи создать картинку с текстом
     
  2. qw1mb1

    qw1mb1 Member

    Joined:
    8 Feb 2013
    Messages:
    113
    Likes Received:
    16
    Reputations:
    8
    как-то так:
    Code:
    var bmp : TBitmap;
    begin
      bmp := TBitmap.Create;
      bmp.Width := 260;
      bmp.Height := 70;
      bmp.Canvas.Font.Size := 32;
      bmp.Canvas.Font.Color := clRed;
      bmp.Canvas.TextOut(10, 10, 'Hello, World!');
      bmp.SaveToFile('c:\file.bmp');
      bmp.Free;