精确缩放图片 Resize Picture

2024-02-29 17:18

本文主要是介绍精确缩放图片 Resize Picture,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

这个方法比 Canvas.StretchDraw 要精确,故名。
经整理更具可读性。源:http://www.andyz.go.ro/ (andyz@go.ro)

procedure ResizeBitmap(AInImg, AOutImg: TBitmap;
  const ATgtWid, ATgtHgt: Integer);
const
  n_MaxPixCnt = 32768;
type
  PRGBArray = ^TRGBArray;
  TRGBArray = array[0..n_MaxPixCnt-1] of TRGBTriple;
var
  DrawedX, DrawingX, DrawedY, DrawingY, DeltaX, DeltaY: Double;
  x, y, px, py, pCnt: Integer;
  r, g, b: Longint;
  Row1, Row2: PRGBArray;
  PixFmt: TPixelFormat;

  function TruncRound(const AVal: Double): Integer;
  begin
    if AVal <= 0 then
    begin
      Result := Trunc(AVal);
    end else begin
      Result := Round(AVal);
    end;
  end;
begin
  AOutImg.Width := ATgtWid;
  AOutImg.Height := ATgtHgt;

  PixFmt := AInImg.PixelFormat;
  AInImg.PixelFormat := pf24bit;
  AOutImg.PixelFormat := pf24bit;

  DeltaX := AInImg.Width / ATgtWid;
  DeltaY := AInImg.Height / ATgtHgt;

  DrawingY := 0;
  for y := 0 to ATgtHgt - 1 do
  begin
    // Sets the initial and final Y coordinate of a pixel area.
    Row1 := AOutImg.ScanLine[y];
    DrawedY := DrawingY;
    DrawingY  := DrawedY + DeltaY;
    if DrawingY >= AInImg.Height then
      DrawingY := AInImg.Height - 1;

    DrawingX := 0;
    for x := 0 to ATgtWid - 1 do
    begin
      DrawedX := DrawingX;
      DrawingX  := DrawedX + DeltaX;
      if DrawingX >= AInImg.Width then
        DrawingX := AInImg.Width - 1;

      r := 0;
      g := 0;
      b := 0;
      pCnt := 0;

      // Gets the RGB values of all points. 
      for py := TruncRound(DrawedY) to TruncRound(DrawingY) do
      begin
        Row2 := AInImg.ScanLine[py];
        for px := TruncRound(DrawedX) to TruncRound(DrawingX) do
        begin
          Inc(pCnt);
          if px <= TruncRound(DrawingX) then
          begin
           if px < AInImg.Width  then
           begin
             if py < AInImg.Height then
             begin
               r := r + Row2[px].rgbtRed;
               g := g + Row2[px].rgbtGreen;
               b := b + Row2[px].rgbtBlue;
             end;
           end;
          end;
        end;
      end;

      // Calculates the average value of the delta area and paints.
      if (r = 0) or (pCnt = 0) then
      begin
        Row1[x].rgbtRed := 0;
      end else begin
        Row1[x].rgbtRed := TruncRound(r / pCnt);
      end;

      if (g = 0) or (pCnt = 0) then
      begin
        Row1[x].rgbtGreen := 0;
      end else begin
        Row1[x].rgbtGreen := TruncRound(g / pCnt);
      end;

      if (b = 0) or (pCnt = 0) then
      begin
        Row1[x].rgbtBlue:=0
      end else begin
        Row1[x].rgbtBlue := TruncRound(b / pCnt);
      end;
    end;
  end;
  AOutImg.PixelFormat := PixFmt;
end;

通过TImage,支持JPEG, BITMAP,调用:
var
  tmpBitmap: TBitmap;
  Wid, Hgt: Integer;
  Zoom: Double;
begin
  if OpenDialog1.Execute then
  begin
    tmpBitmap := TBitmap.Create;
    try
      Image1.Picture.LoadFromFile(OpenDialog1.FileName);
      tmpBitmap.Assign(Image1.Picture.Graphic);

      if (tmpBitmap.Width < 160) and (tmpBitmap.Height < 120) then
      begin
        Wid := tmpBitmap.Width;
        Hgt := tmpBitmap.Height;
      end else begin
        Zoom := Max(tmpBitmap.Width / 160, tmpBitmap.Height / 120);
        Zoom := Max(Zoom, 1);

        Wid := Trunc(tmpBitmap.Width / Zoom);
        Hgt := Trunc(tmpBitmap.Height / Zoom);
      end;

      ResizeBitmap(tmpBitmap, Image1.Picture.Bitmap, Wid, Hgt);
    finally
      tmpBitmap.Free;
    end;
  end;
end;

这篇关于精确缩放图片 Resize Picture的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/759465

相关文章

使用opencv优化图片(画面变清晰)

文章目录 需求影响照片清晰度的因素 实现降噪测试代码 锐化空间锐化Unsharp Masking频率域锐化对比测试 对比度增强常用算法对比测试 需求 对图像进行优化,使其看起来更清晰,同时保持尺寸不变,通常涉及到图像处理技术如锐化、降噪、对比度增强等 影响照片清晰度的因素 影响照片清晰度的因素有很多,主要可以从以下几个方面来分析 1. 拍摄设备 相机传感器:相机传

Android 10.0 mtk平板camera2横屏预览旋转90度横屏拍照图片旋转90度功能实现

1.前言 在10.0的系统rom定制化开发中,在进行一些平板等默认横屏的设备开发的过程中,需要在进入camera2的 时候,默认预览图像也是需要横屏显示的,在上一篇已经实现了横屏预览功能,然后发现横屏预览后,拍照保存的图片 依然是竖屏的,所以说同样需要将图片也保存为横屏图标了,所以就需要看下mtk的camera2的相关横屏保存图片功能, 如何实现实现横屏保存图片功能 如图所示: 2.mtk

Spring MVC 图片上传

引入需要的包 <dependency><groupId>commons-logging</groupId><artifactId>commons-logging</artifactId><version>1.1</version></dependency><dependency><groupId>commons-io</groupId><artifactId>commons-

Prompt - 将图片的表格转换成Markdown

Prompt - 将图片的表格转换成Markdown 0. 引言1. 提示词2. 原始版本 0. 引言 最近尝试将图片中的表格转换成Markdown格式,需要不断条件和优化提示词。记录一下调整好的提示词,以后在继续优化迭代。 1. 提示词 英文版本: You are an AI assistant tasked with extracting the content of

研究人员在RSA大会上演示利用恶意JPEG图片入侵企业内网

安全研究人员Marcus Murray在正在旧金山举行的RSA大会上公布了一种利用恶意JPEG图片入侵企业网络内部Windows服务器的新方法。  攻击流程及漏洞分析 最近,安全专家兼渗透测试员Marcus Murray发现了一种利用恶意JPEG图片来攻击Windows服务器的新方法,利用该方法还可以在目标网络中进行特权提升。几天前,在旧金山举行的RSA大会上,该Marcus现场展示了攻击流程,

恶意PNG:隐藏在图片中的“恶魔”

&lt;img src=&quot;https://i-blog.csdnimg.cn/blog_migrate/bffb187dc3546c6c5c6b8aa18b34b962.jpeg&quot; title=&quot;214201hhuuhubsuyuukbfy_meitu_1_meitu_2.jpg&quot;/&gt;&lt;/strong&gt;&lt;/span&gt;&lt;

PHP抓取网站图片脚本

方法一: <?phpheader("Content-type:image/jpeg"); class download_image{function read_url($str) { $file=fopen($str,"r");$result = ''; while(!feof($file)) { $result.=fgets($file,9999); } fclose($file); re

(入门篇)JavaScript 网页设计案例浅析-简单的交互式图片轮播

网页设计已经成为了每个前端开发者的必备技能,而 JavaScript 作为前端三大基础之一,更是为网页赋予了互动性和动态效果。本篇文章将通过一个简单的 JavaScript 案例,带你了解网页设计中的一些常见技巧和技术原理。今天就说一说一个常见的图片轮播效果。相信大家在各类电商网站、个人博客或者展示页面中,都看到过这种轮播图。它的核心功能是展示多张图片,并且用户可以通过点击按钮,左右切换图片。

matplotlib绘图中插入图片

在使用matplotlib下的pyplot绘图时,有时处于各种原因,需要采用类似贴图的方式,插入外部的图片,例如添加自己的logo,或者其他的图形水印等。 一开始,查找到的资料都是使用imshow,但是这会有带来几个问题,一个是图形的原点发生了变化,另外一个问题就是图形比例也产生了变化,当然最大的问题是图形占据了整个绘图区域,完全喧宾夺主了,与我们设想的只在绘图区域中占据很小的一块不相符。 经

react笔记 8-17 属性绑定 class绑定 引入图片 循环遍历

1、绑定属性 constructor(){super()this.state={name:"张三",title:'我是一个title'}}render() {return (<div><div>aaaaaaa{this.state.name}<div title={this.state.title}>我是一个title</div></div></div>)} 绑定属性直接使用花括号{}   注