zoukankan      html  css  js  c++  java
  • CaptureComponentToBmp

    CaptureComponentToBmp

    代码
    {*******************************************************}
    { }
    { Created By: Ming.z }
    { Creation Date 2010-12-28 }
    { }
    {*******************************************************}

    unit Unit1;

    interface

    uses
    Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
    Dialogs, StdCtrls, ExtCtrls;

    type
    TForm1
    = class(TForm)
    Memo1: TMemo;
    Button1: TButton;
    Button2: TButton;
    Panel1: TPanel;
    Edit1: TEdit;
    procedure Button1Click(Sender: TObject);
    procedure Button2Click(Sender: TObject);
    private
    { Private declarations }
    public
    { Public declarations }
    end;

    var
    Form1: TForm1;

    implementation

    {$R *.dfm}

    procedure CaptureComponentToBmp(aControl:TWinControl;const savePath:String);
    var
    can: TCanvas;
    bmp: TBitmap;
    begin
    can :
    = TCanvas.Create;
    bmp :
    = TBitmap.Create;
    try
    bmp.Width :
    = aControl.Width;
    bmp.Height :
    = aControl.Height;
    can.Handle :
    = GetDC(aControl.Handle);
    bmp.Canvas.CopyRect(aControl.ClientRect,can,aControl.ClientRect);
    bmp.SaveToFile(savePath);
    finally
    bmp.Free;
    can.Free;
    end;
    end;

    procedure TForm1.Button1Click(Sender: TObject);
    begin
    CaptureComponentToBmp(Memo1,
    'E:\Memo1.bmp');
    ShowMessage(
    'OK');
    end;

    procedure TForm1.Button2Click(Sender: TObject);
    begin
    CaptureComponentToBmp(Panel1,
    'E:\Panel1.bmp');
    ShowMessage(
    'OK');
    end;

    end.

  • 相关阅读:
    display: flex
    TTStand --Variant的应用
    跨域
    HTTP 响应状态代码
    SQL Server 2017 Developer and Express
    WPF 中 通过点击ListBox中的元素自动选中一整项
    C#计算屏幕的物理宽和高
    C#常用设计模式
    EntityFrameworkCore之工作单元的封装
    内存包装类 Memory 和 Span 相关类型
  • 原文地址:https://www.cnblogs.com/Jekhn/p/1918704.html
Copyright © 2011-2022 走看看