其实用lazarus切图很简单

    有问怎样切图的,这里解释一下。首先需要在lazarus中装一下控件:RGBA controls,忘记连接了,自己去搜。

var
  BGRABmpPart, BGRAStretch: TBGRABitmap;
  i,j: Integer;
  fn,fnJpg,fnPng: string;
  Rect:TRect;
begin
  // 加载完整图片
  BGRABmpAll := TBGRABitmap.Create(utf8ToSys(EditSrcPic.Text));
  ImageAll.Picture.LoadFromFile((EditSrcPic.Text));

  // 显示打开图片的宽度及高度
  memo1.Lines.Add('图片宽度:' + intToStr(BGRABmpAll.Width) + '; 图片高度:' + intToStr(BGRABmpAll.Height));

  // 完整预览选择的图片
  BGRAStretch := BGRABmpAll.Resample(Panel1.Width, Panel1.Height) as TBGRABitmap;


  BGRABmpPart := TBGRABitmap.Create(256, 256);
  for i := 0 to 1 do
    for j := 0 to 1 do
      begin
        Rect.TopLeft:=Point(256 * i, 256 * j);
        Rect.BottomRight:=Point(256 * (i + 1), 256 * (j + 1));
        BGRABmpAll.DrawPart(Rect, BGRABmpPart.Canvas, 0, 0, true);
        if (i = 0) and (j = 0) then
        begin
          BGRABmpAll.DrawPart(Rect, Image0.Canvas, 0, 0, true);
          memo1.Lines.Add('第1样张图片显示完毕,图片加黑边为正常。');
        end;

        fnJpg := extractFilePath(paramStr(0)) + intToStr(i) + '_' + intToStr(j) + '.jpg';
        BGRABmpPart.SaveToFile(fnJpg);
        memo1.Lines.Add('测试图片存储为:' + sysToUtf8(fnJpg));

      end;

  memo1.Lines.Add('测试图片处理完毕。');

  BGRABmpPart.Free;
  BGRAStretch.Free;  


    http://www.lazarus.freepascal.org/

    这里资源非常多,需要什么自己去找。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值