jjzjj

java - 在java中动态调整缓冲图像的大小

coder 2024-04-01 原文

我尝试使用 AffineTransform 和 Scalr.resize 调整缓冲图像的大小

这是我的代码。

使用 Scalr.resize:

    BufferedImage buff = robot.createScreenCapture(new Rectangle(bufx,bufy,bufwidth,bufheight)); // x-coord, y-coord, width, height

    BufferedImage scrCapt = Scalr.resize(buff, Method.BALANCED, scrwidth, scrheight);

使用仿射变换:

BufferedImage buff = robot.createScreenCapture(new Rectangle(bufx,bufy,bufwidth,bufheight)); // x-coord, y-coord, width, height

BufferedImage scrCapt = new BufferedImage(bufwidth,bufheight,BufferedImage.TYPE_INT_ARGB);
AffineTransform atscr = new AffineTransform();


atscr.scale(aspectRatioWidth,aspectRatioHeight);
AffineTransformOp scaleOp = new AffineTransformOp(atscr, AffineTransformOp.TYPE_BILINEAR);
scrCapt = scaleOp.filter(buff, scrCapt);

变量已经在类的开头声明了:

static int bufx = 0;
static int bufy = 0;
static int bufwidth = 1;
static int bufheight = 1;
static int scrwidth = 0;
static int scrheight = 0;
static float aspectRatioWidth = 0;
static float aspectRatioHeight = 0;

我在不同的方法中动态获取所有变量的值:

aspectRatioWidth = bufwidth/scrwidth;
aspectRatioHeight = bufheight/scrheight;

但是,当我运行这段代码时,我在函数 AffineTransform 和 Scalr.resize 中都遇到了错误:

缩放器.resize:

Exception in thread "Thread-2" java.lang.IllegalArgumentException: Width (0) and height (0) cannot be <= 0
at java.awt.image.DirectColorModel.createCompatibleWritableRaster(DirectColorModel.java:1016)
at java.awt.image.BufferedImage.<init>(BufferedImage.java:331)
at org.imgscalr.Scalr.createOptimalImage(Scalr.java:2006)
at org.imgscalr.Scalr.scaleImage(Scalr.java:2133)
at org.imgscalr.Scalr.resize(Scalr.java:1667)
at org.imgscalr.Scalr.resize(Scalr.java:1415)

仿射变换:

Exception in thread "Thread-2" java.awt.image.ImagingOpException: Unable to invert transform AffineTransform[[0.0, 0.0, 0.0], [0.0, 1.0, 0.0]]
at java.awt.image.AffineTransformOp.validateTransform(AffineTransformOp.java:558)
at java.awt.image.AffineTransformOp.<init>(AffineTransformOp.java:151)

我该怎么做? 我知道发生这种情况是因为我正在以不同的方法更改变量并以另一种方法访问它们。 但是这两种方法不能结合使用。 有什么办法可以使这项工作吗?

编辑:

我改变了调整大小的方法 这是我现在所做的

public static BufferedImage resizeImage(BufferedImage image, double scalewidth, double scaleheight){

    BufferedImage img = new BufferedImage(image.getWidth(), image.getHeight(),BufferedImage.SCALE_FAST);
    Graphics2D g = img.createGraphics();
    g.scale(scalewidth, scaleheight);
    g.drawImage(image, null, 0, 0);
    g.dispose();
    return image;
}

编辑(2):

为了更清楚地了解到底发生了什么:

这是一个返回 scrwidth 和 scrheight 的方法

public static void showOnScreen( int screen, JFrame framenew )
   {
    GraphicsEnvironment ge = GraphicsEnvironment
      .getLocalGraphicsEnvironment();
    GraphicsDevice[] gs = ge.getScreenDevices();

  for (int i = 0; i < gs.length; i++) {
      screenwidth.add(gs[i].getDisplayMode().getWidth());
      screenheight.add(gs[i].getDisplayMode().getHeight());
}

scrwidth = screenwidth.get(screenwidth.size()-1);
scrheight = screenheight.get(screenheight.size()-1);




  System.out.print(ge);
  System.out.print(gs);
  if( screen > -1 && screen < gs.length )
  {gs[screen].setFullScreenWindow( framenew );}
  else if( gs.length > 0 )
  {gs[0].setFullScreenWindow( framenew );}
  else
  {throw new RuntimeException( "No Screens Found" );}}

这是返回 bufwidth 和 bufheight 的 actionlistener:

  btnNewButton.addActionListener(new ActionListener() {      
  public void actionPerformed(ActionEvent e)
  {
      //Execute when button is pressed
      System.out.println("You clicked the button");

      int ind = c.getSelectedIndex();
        bufx = capx.get(ind);
        bufy = capy.get(ind);
        bufwidth = capwidth.get(ind);
        bufheight = capheight.get(ind);
        frame.setVisible(false);
        framenew.setVisible(true);
        showOnScreen(1,framenew);

        aspectRatioWidth = (double) bufwidth/scrwidth;
        aspectRatioHeight = (double) bufheight/scrheight;   

            System.out.print("aspectRatioWidth:  ");
            System.out.println(aspectRatioWidth);

            System.out.print("aspectRatioHeight:  ");
            System.out.println(aspectRatioHeight);          
  }
  });      

并且 aspectRatios 在运行中使用:

public void run() {
System.out.print("aspectRatioWidth:  ");
System.out.println(aspectRatioWidth);

System.out.print("aspectRatioHeight:  ");
System.out.println(aspectRatioHeight);

while(true){
    BufferedImage buff = robot.createScreenCapture(new Rectangle(bufx,bufy,bufwidth,bufheight)); // x-coord, y-coord, width, height

    BufferedImage resizedbuff = resizeImage(buff, aspectRatioWidth, aspectRatioHeight);}

最佳答案

你正在做整数除法,它总是返回一个整数,这里是 0,因为你的屏幕尺寸可能会大于你的图像尺寸:

aspectRatioWidth = bufwidth/scrwidth;
aspectRatioHeight = bufheight/scrheight;

解决方案:将数字转换为 double ,然后进行双除。

aspectRatioWidth = (double) bufwidth/scrwidth;
aspectRatioHeight = (double) bufheight/scrheight;

编辑

不确定您最终要做什么 - 在您的 GUI 中发布计算机屏幕图像?如果是这样,也许像...

import java.awt.AWTException;
import java.awt.Dimension;
import java.awt.Graphics;
import java.awt.Rectangle;
import java.awt.Robot;
import java.awt.Toolkit;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.awt.geom.AffineTransform;
import java.awt.image.AffineTransformOp;
import java.awt.image.BufferedImage;
import java.util.List;

import javax.swing.*;

public class ChangeVars extends JPanel {
   private static final int PREF_W = 400;
   private static final int PREF_H = PREF_W;
   private static final int DELAY = 20;
   public BufferedImage displayImage;
   private MyWorker myWorker;

   public ChangeVars() {
      try {
         myWorker = new MyWorker(DELAY);
         myWorker.execute();
      } catch (AWTException e) {
         e.printStackTrace();
      }
   }

   @Override
   // to initialize the panel to something
   public Dimension getPreferredSize() {
      if (isPreferredSizeSet()) {
         return super.getPreferredSize();
      }
      return new Dimension(PREF_W, PREF_H);
   }

   @Override
   protected void paintComponent(Graphics g) {
      super.paintComponent(g);
      if (displayImage != null) {
         g.drawImage(displayImage, 0, 0, null);
      }
   }

   public void stopWorker() {
      if (myWorker != null && !myWorker.isDone()) {
         myWorker.setRunning(false);
         myWorker.cancel(true);
      }
   }

   private class MyWorker extends SwingWorker<Void, BufferedImage> {

      private volatile boolean running = true;
      private Robot robot;
      private int delay;

      public MyWorker(int delay) throws AWTException {
         this.delay = delay;
         robot = new Robot();
      }

      @Override
      protected Void doInBackground() throws Exception {
         while (running) {
            Dimension d = Toolkit.getDefaultToolkit().getScreenSize();
            Rectangle screenRect = new Rectangle(0, 0, d.width, d.height);
            BufferedImage img = robot.createScreenCapture(screenRect);
            publish(img);
            Thread.sleep(delay);
         }
         return null;
      }

      @Override
      protected void process(List<BufferedImage> chunks) {
         for (BufferedImage image : chunks) {
            Dimension sz = getSize();
            double scaleX = (double) sz.width / image.getWidth();
            double scaleY = (double) sz.height / image.getHeight();
            AffineTransform transform = AffineTransform.getScaleInstance(
                  scaleX, scaleY);
            AffineTransformOp transformOp = new AffineTransformOp(transform,
                  AffineTransformOp.TYPE_BILINEAR);
            displayImage = new BufferedImage(sz.width, sz.height,
                  BufferedImage.TYPE_INT_ARGB);
            displayImage = transformOp.filter(image, displayImage);
            repaint();
         }
      }

      public void setRunning(boolean running) {
         this.running = running;
      }

      public boolean getRunning() {
         return running;
      }

   }

   private static void createAndShowGui() {
      final ChangeVars changeVars = new ChangeVars();

      JFrame frame = new JFrame("ChangeVars");
      frame.setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
      frame.addWindowListener(new WindowAdapter() {

         @Override
         public void windowClosing(WindowEvent e) {
            if (changeVars != null) {
               changeVars.stopWorker();
            }
            System.exit(0);
         }

      });
      frame.getContentPane().add(changeVars);
      frame.pack();
      frame.setLocationByPlatform(true);
      frame.setVisible(true);
   }

   public static void main(String[] args) {
      SwingUtilities.invokeLater(new Runnable() {
         public void run() {
            createAndShowGui();
         }
      });
   }
}

虽然更简单的方法是让 paintComponent 进行缩放:

@Override
protected void paintComponent(Graphics g) {
  super.paintComponent(g);
  if (displayImage != null) {
     int width = getWidth();
     int height = getHeight();
     g.drawImage(displayImage, 0, 0, width, height, null);
  }
}

// ....

  @Override
  protected void process(List<BufferedImage> chunks) {
     for (BufferedImage image : chunks) {
        displayImage = image;
        repaint();
     }
  }

关于java - 在java中动态调整缓冲图像的大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30546950/

有关java - 在java中动态调整缓冲图像的大小的更多相关文章

  1. ruby-on-rails - 在 Rails 中将文件大小字符串转换为等效千字节 - 2

    我的目标是转换表单输入,例如“100兆字节”或“1GB”,并将其转换为我可以存储在数据库中的文件大小(以千字节为单位)。目前,我有这个:defquota_convert@regex=/([0-9]+)(.*)s/@sizes=%w{kilobytemegabytegigabyte}m=self.quota.match(@regex)if@sizes.include?m[2]eval("self.quota=#{m[1]}.#{m[2]}")endend这有效,但前提是输入是倍数(“gigabytes”,而不是“gigabyte”)并且由于使用了eval看起来疯狂不安全。所以,功能正常,

  2. java - 等价于 Java 中的 Ruby Hash - 2

    我真的很习惯使用Ruby编写以下代码:my_hash={}my_hash['test']=1Java中对应的数据结构是什么? 最佳答案 HashMapmap=newHashMap();map.put("test",1);我假设? 关于java-等价于Java中的RubyHash,我们在StackOverflow上找到一个类似的问题: https://stackoverflow.com/questions/22737685/

  3. java - 从 JRuby 调用 Java 类的问题 - 2

    我正在尝试使用boilerpipe来自JRuby。我看过guide从JRuby调用Java,并成功地将它与另一个Java包一起使用,但无法弄清楚为什么同样的东西不能用于boilerpipe。我正在尝试基本上从JRuby中执行与此Java等效的操作:URLurl=newURL("http://www.example.com/some-location/index.html");Stringtext=ArticleExtractor.INSTANCE.getText(url);在JRuby中试过这个:require'java'url=java.net.URL.new("http://www

  4. ruby-on-rails - 添加回形针新样式不影响旧上传的图像 - 2

    我有带有Logo图像的公司模型has_attached_file:logo我用他们的Logo创建了许多公司。现在,我需要添加新样式has_attached_file:logo,:styles=>{:small=>"30x15>",:medium=>"155x85>"}我是否应该重新上传所有旧数据以重新生成新样式?我不这么认为……或者有什么rake任务可以重新生成样式吗? 最佳答案 参见Thumbnail-Generation.如果rake任务不适合你,你应该能够在控制台中使用一个片段来调用重新处理!关于相关公司

  5. java - 我的模型类或其他类中应该有逻辑吗 - 2

    我只想对我一直在思考的这个问题有其他意见,例如我有classuser_controller和classuserclassUserattr_accessor:name,:usernameendclassUserController//dosomethingaboutanythingaboutusersend问题是我的User类中是否应该有逻辑user=User.newuser.do_something(user1)oritshouldbeuser_controller=UserController.newuser_controller.do_something(user1,user2)我

  6. java - 什么相当于 ruby​​ 的 rack 或 python 的 Java wsgi? - 2

    什么是ruby​​的rack或python的Java的wsgi?还有一个路由库。 最佳答案 来自Python标准PEP333:Bycontrast,althoughJavahasjustasmanywebapplicationframeworksavailable,Java's"servlet"APImakesitpossibleforapplicationswrittenwithanyJavawebapplicationframeworktoruninanywebserverthatsupportstheservletAPI.ht

  7. Observability:从零开始创建 Java 微服务并监控它 (二) - 2

    这篇文章是继上一篇文章“Observability:从零开始创建Java微服务并监控它(一)”的续篇。在上一篇文章中,我们讲述了如何创建一个Javaweb应用,并使用Filebeat来收集应用所生成的日志。在今天的文章中,我来详述如何收集应用的指标,使用APM来监控应用并监督web服务的在线情况。源码可以在地址 https://github.com/liu-xiao-guo/java_observability 进行下载。摄入指标指标被视为可以随时更改的时间点值。当前请求的数量可以改变任何毫秒。你可能有1000个请求的峰值,然后一切都回到一个请求。这也意味着这些指标可能不准确,你还想提取最小/

  8. 【Java 面试合集】HashMap中为什么引入红黑树,而不是AVL树呢 - 2

    HashMap中为什么引入红黑树,而不是AVL树呢1.概述开始学习这个知识点之前我们需要知道,在JDK1.8以及之前,针对HashMap有什么不同。JDK1.7的时候,HashMap的底层实现是数组+链表JDK1.8的时候,HashMap的底层实现是数组+链表+红黑树我们要思考一个问题,为什么要从链表转为红黑树呢。首先先让我们了解下链表有什么不好???2.链表上述的截图其实就是链表的结构,我们来看下链表的增删改查的时间复杂度增:因为链表不是线性结构,所以每次添加的时候,只需要移动一个节点,所以可以理解为复杂度是N(1)删:算法时间复杂度跟增保持一致查:既然是非线性结构,所以查询某一个节点的时候

  9. ruby-on-rails - 在 Ruby (on Rails) 中使用 imgur API 获取图像 - 2

    我正在尝试使用Ruby2.0.0和Rails4.0.0提供的API从imgur中提取图像。我已尝试按照Ruby2.0.0文档中列出的各种方式构建http请求,但均无济于事。代码如下:require'net/http'require'net/https'defimgurheaders={"Authorization"=>"Client-ID"+my_client_id}path="/3/gallery/image/#{img_id}.json"uri=URI("https://api.imgur.com"+path)request,data=Net::HTTP::Get.new(path

  10. python ffmpeg 使用 pyav 转换 一组图像 到 视频 - 2

    2022/8/4更新支持加入水印水印必须包含透明图像,并且水印图像大小要等于原图像的大小pythonconvert_image_to_video.py-f30-mwatermark.pngim_dirout.mkv2022/6/21更新让命令行参数更加易用新的命令行使用方法pythonconvert_image_to_video.py-f30im_dirout.mkvFFMPEG命令行转换一组JPG图像到视频时,是将这组图像视为MJPG流。我需要转换一组PNG图像到视频,FFMPEG就不认了。pyav内置了ffmpeg库,不需要系统带有ffmpeg工具因此我使用ffmpeg的python包装p

随机推荐