- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我想保存整个框架的屏幕截图,但我的问题是当我尝试使用当前代码执行此操作时,如果我将框架的尺寸缩小,那么我只能保存框架的一部分可见的。
BufferedImage myImage = new BufferedImage(1250, 950,BufferedImage.TYPE_INT_RGB );
frame.paintAll(myImage.createGraphics());
try{
ImageIO.write(myImage, "jpg", new File(fileChooser.getSelectedFile().toString() + ".jpg"));
}catch (IOException exception){
exception.printStackTrace();
}
最佳答案
Java GUI 组件的绘制方法仅在屏幕上可见或需要重新绘制的裁剪区域进行绘制。
试试这个 hack:创建 Graphics2D
包装器对象,将其所有方法调用转发到实际的 Graphics2D
实例,但不允许更改剪辑区域。
你需要做的是:
import java.awt.Color;
import java.awt.Composite;
import java.awt.Font;
import java.awt.FontMetrics;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.GraphicsConfiguration;
import java.awt.Image;
import java.awt.Paint;
import java.awt.Polygon;
import java.awt.Rectangle;
import java.awt.RenderingHints;
import java.awt.RenderingHints.Key;
import java.awt.Shape;
import java.awt.Stroke;
import java.awt.font.FontRenderContext;
import java.awt.font.GlyphVector;
import java.awt.geom.AffineTransform;
import java.awt.image.BufferedImage;
import java.awt.image.BufferedImageOp;
import java.awt.image.ImageObserver;
import java.awt.image.RenderedImage;
import java.awt.image.renderable.RenderableImage;
import java.text.AttributedCharacterIterator;
import java.util.Map;
/**
*
* @author fortran
*/
public class Graphics2DWrapper extends Graphics2D {
private final Graphics2D delegate;
public Graphics2DWrapper(Graphics2D delegate) {
this.delegate = delegate;
}
public String toString() {
return delegate.toString();
}
public void setXORMode(Color c1) {
delegate.setXORMode(c1);
}
public void setPaintMode() {
delegate.setPaintMode();
}
public void setFont(Font font) {
delegate.setFont(font);
}
public void setColor(Color c) {
delegate.setColor(c);
}
public void setClip(Shape clip) {
//ignore
}
public void setClip(int x, int y, int width, int height) {
//ignore
}
public boolean hitClip(int x, int y, int width, int height) {
return delegate.hitClip(x, y, width, height);
}
public FontMetrics getFontMetrics(Font f) {
return delegate.getFontMetrics(f);
}
public FontMetrics getFontMetrics() {
return delegate.getFontMetrics();
}
public Font getFont() {
return delegate.getFont();
}
public Color getColor() {
return delegate.getColor();
}
public Rectangle getClipRect() {
return delegate.getClipRect();
}
public Rectangle getClipBounds(Rectangle r) {
return delegate.getClipBounds(r);
}
public Rectangle getClipBounds() {
return delegate.getClipBounds();
}
public Shape getClip() {
return delegate.getClip();
}
public void finalize() {
delegate.finalize();
}
public void fillRoundRect(int x, int y, int width, int height, int arcWidth, int arcHeight) {
delegate.fillRoundRect(x, y, width, height, arcWidth, arcHeight);
}
public void fillRect(int x, int y, int width, int height) {
delegate.fillRect(x, y, width, height);
}
public void fillPolygon(Polygon p) {
delegate.fillPolygon(p);
}
public void fillPolygon(int[] xPoints, int[] yPoints, int nPoints) {
delegate.fillPolygon(xPoints, yPoints, nPoints);
}
public void fillOval(int x, int y, int width, int height) {
delegate.fillOval(x, y, width, height);
}
public void fillArc(int x, int y, int width, int height, int startAngle, int arcAngle) {
delegate.fillArc(x, y, width, height, startAngle, arcAngle);
}
public void drawRoundRect(int x, int y, int width, int height, int arcWidth, int arcHeight) {
delegate.drawRoundRect(x, y, width, height, arcWidth, arcHeight);
}
public void drawRect(int x, int y, int width, int height) {
delegate.drawRect(x, y, width, height);
}
public void drawPolyline(int[] xPoints, int[] yPoints, int nPoints) {
delegate.drawPolyline(xPoints, yPoints, nPoints);
}
public void drawPolygon(Polygon p) {
delegate.drawPolygon(p);
}
public void drawPolygon(int[] xPoints, int[] yPoints, int nPoints) {
delegate.drawPolygon(xPoints, yPoints, nPoints);
}
public void drawOval(int x, int y, int width, int height) {
delegate.drawOval(x, y, width, height);
}
public void drawLine(int x1, int y1, int x2, int y2) {
delegate.drawLine(x1, y1, x2, y2);
}
public boolean drawImage(Image img, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2, int sy2, Color bgcolor, ImageObserver observer) {
return delegate.drawImage(img, dx1, dy1, dx2, dy2, sx1, sy1, sx2, sy2, bgcolor, observer);
}
public boolean drawImage(Image img, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2, int sy2, ImageObserver observer) {
return delegate.drawImage(img, dx1, dy1, dx2, dy2, sx1, sy1, sx2, sy2, observer);
}
public boolean drawImage(Image img, int x, int y, int width, int height, Color bgcolor, ImageObserver observer) {
return delegate.drawImage(img, x, y, width, height, bgcolor, observer);
}
public boolean drawImage(Image img, int x, int y, Color bgcolor, ImageObserver observer) {
return delegate.drawImage(img, x, y, bgcolor, observer);
}
public boolean drawImage(Image img, int x, int y, int width, int height, ImageObserver observer) {
return delegate.drawImage(img, x, y, width, height, observer);
}
public boolean drawImage(Image img, int x, int y, ImageObserver observer) {
return delegate.drawImage(img, x, y, observer);
}
public void drawChars(char[] data, int offset, int length, int x, int y) {
delegate.drawChars(data, offset, length, x, y);
}
public void drawBytes(byte[] data, int offset, int length, int x, int y) {
delegate.drawBytes(data, offset, length, x, y);
}
public void drawArc(int x, int y, int width, int height, int startAngle, int arcAngle) {
delegate.drawArc(x, y, width, height, startAngle, arcAngle);
}
public void dispose() {
delegate.dispose();
}
public Graphics create(int x, int y, int width, int height) {
return delegate.create(x, y, width, height);
}
public Graphics create() {
return delegate.create();
}
public void copyArea(int x, int y, int width, int height, int dx, int dy) {
delegate.copyArea(x, y, width, height, dx, dy);
}
public void clipRect(int x, int y, int width, int height) {
//ignore
}
public void clearRect(int x, int y, int width, int height) {
delegate.clearRect(x, y, width, height);
}
public void translate(double tx, double ty) {
delegate.translate(tx, ty);
}
public void translate(int x, int y) {
delegate.translate(x, y);
}
public void transform(AffineTransform Tx) {
delegate.transform(Tx);
}
public void shear(double shx, double shy) {
delegate.shear(shx, shy);
}
public void setTransform(AffineTransform Tx) {
delegate.setTransform(Tx);
}
public void setStroke(Stroke s) {
delegate.setStroke(s);
}
public void setRenderingHints(Map<?, ?> hints) {
delegate.setRenderingHints(hints);
}
public void setRenderingHint(Key hintKey, Object hintValue) {
delegate.setRenderingHint(hintKey, hintValue);
}
public void setPaint(Paint paint) {
delegate.setPaint(paint);
}
public void setComposite(Composite comp) {
delegate.setComposite(comp);
}
public void setBackground(Color color) {
delegate.setBackground(color);
}
public void scale(double sx, double sy) {
delegate.scale(sx, sy);
}
public void rotate(double theta, double x, double y) {
delegate.rotate(theta, x, y);
}
public void rotate(double theta) {
delegate.rotate(theta);
}
public boolean hit(Rectangle rect, Shape s, boolean onStroke) {
return delegate.hit(rect, s, onStroke);
}
public AffineTransform getTransform() {
return delegate.getTransform();
}
public Stroke getStroke() {
return delegate.getStroke();
}
public RenderingHints getRenderingHints() {
return delegate.getRenderingHints();
}
public Object getRenderingHint(Key hintKey) {
return delegate.getRenderingHint(hintKey);
}
public Paint getPaint() {
return delegate.getPaint();
}
public FontRenderContext getFontRenderContext() {
return delegate.getFontRenderContext();
}
public GraphicsConfiguration getDeviceConfiguration() {
return delegate.getDeviceConfiguration();
}
public Composite getComposite() {
return delegate.getComposite();
}
public Color getBackground() {
return delegate.getBackground();
}
public void fill3DRect(int x, int y, int width, int height, boolean raised) {
delegate.fill3DRect(x, y, width, height, raised);
}
public void fill(Shape s) {
delegate.fill(s);
}
public void drawString(AttributedCharacterIterator iterator, float x, float y) {
delegate.drawString(iterator, x, y);
}
public void drawString(AttributedCharacterIterator iterator, int x, int y) {
delegate.drawString(iterator, x, y);
}
public void drawString(String str, float x, float y) {
delegate.drawString(str, x, y);
}
public void drawString(String str, int x, int y) {
delegate.drawString(str, x, y);
}
public void drawRenderedImage(RenderedImage img, AffineTransform xform) {
delegate.drawRenderedImage(img, xform);
}
public void drawRenderableImage(RenderableImage img, AffineTransform xform) {
delegate.drawRenderableImage(img, xform);
}
public void drawImage(BufferedImage img, BufferedImageOp op, int x, int y) {
delegate.drawImage(img, op, x, y);
}
public boolean drawImage(Image img, AffineTransform xform, ImageObserver obs) {
return delegate.drawImage(img, xform, obs);
}
public void drawGlyphVector(GlyphVector g, float x, float y) {
delegate.drawGlyphVector(g, x, y);
}
public void draw3DRect(int x, int y, int width, int height, boolean raised) {
delegate.draw3DRect(x, y, width, height, raised);
}
public void draw(Shape s) {
delegate.draw(s);
}
public void clip(Shape s) {
//ignore
}
public void addRenderingHints(Map<?, ?> hints) {
delegate.addRenderingHints(hints);
}
}
然后在您的代码中:
BufferedImage myImage = new BufferedImage(1250, 950,BufferedImage.TYPE_INT_RGB );
Graphics2D delegate = myImage.createGraphics();
delegate.setClip(0,0,1250,950);
Graphics2D graphics = new Graphics2DWrapper(delegate);
frame.paintAll(graphics);
try{
ImageIO.write(myImage, "jpg", new File(fileChooser.getSelectedFile().toString() + ".jpg"));
}catch (IOException exception){
exception.printStackTrace();
}
尝试一下,然后告诉我们它是否有效。
关于java - 如何获取整个帧的屏幕截图(包括剪掉的部分),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8124075/
图像采集源除了显示控件(上一篇《.NET 控件转图片》有介绍从界面控件转图片),更多的是窗口以及屏幕。 窗口截图最常用的方法是GDI,直接上Demo吧: 1 private
我正在尝试编写一个程序来使用全局热键获取屏幕截图。下面是相应的代码: from datetime import datetime import os from pynput import keyboa
我正在构建一个应用程序,它应该为任何具有 Android 4 及更高版本的无根设备实现屏幕~镜像~,2 帧/秒就足够了。 我正在尝试使用 ADB“framebuffer:”命令来抓取设备屏幕截图 AD
如何使用 C++ 捕获屏幕截图?我将使用 Win32。 请不要使用 MFC 代码。 最佳答案 #include "windows.h" // should be less than and great
代码如下: import java.awt.Dimension; import java.awt.Rectangle; import java.awt.Robot; import java.aw
我目前正在构建一个 Google Chrome 扩展程序,该扩展程序可以从不同页面获取多个屏幕截图并将其发布到端点上。我遇到的问题是时间不对。我的意思是,在页面停止加载之前就太早截取屏幕截图了。其次,
我有一个 View Controller ,其中导航栏是透明的。我的下一个 View 是表格 View ,其中导航栏是白色的。 为了停止不需要的动画,我在表格 View 的“viewDidDissap
我正在尝试从多个 URL 制作屏幕截图。我的代码工作正常,但结果我得到了事件窗口的图像。但我需要带有浏览器顶部的完整屏幕截图(URL) file = open('links.txt', 'r', en
我正在尝试(并实现)获取屏幕截图: robot = new Robot(); BufferedImage biScreen = robot.createScreenCapture(rectScreen
是否有任何应用程序可以拍摄 android 设备的视频/屏幕截图。我知道在桌面上捕获屏幕视频/图像的软件很少,例如 camtasia、snagit。 Android 设备有类似的东西吗? 我知道使用
想要捕获可能处于非事件状态的选项卡的图像。 问题是,当使用此处显示的方法时,选项卡通常在捕获完成之前没有时间加载,从而导致失败。 chrome.tabs.update() 回调在标签页被捕获之前执行。
我想在新的 tkinter 窗口 (TopLevel) 中显示我的屏幕截图,但我不想将其保存在电脑上。当我保存它时它工作正常但是当我尝试从内存加载屏幕截图时出现错误:图像不存在。 我的主窗口是root
我正在 try catch 我当前所在的屏幕,因此当我覆盖下一个 View Controller 时,我可以使它成为它后面的 ImageView 并使其显示为半透明。这是有效的,但现在它在中间产生了一
我正在寻找将 docx(以及后来的 excel 和 powerpoint)文档的第一页转换为图像的方法。我宁愿不手动解析文档的整个 xml,因为这看起来工作量很大;) 所以我想我只是想收集一些关于如何
好吧,碰巧我正在编写一个程序来截取一些屏幕截图,并且在处理另一个进程已经在使用的文件时遇到了一些困难,希望有人能帮助我找到一种方法来“关闭”这个进程或启发我如何继续. //Create a new b
我即将在 App Store 上发布我的应用程序,我想截取我的应用程序的屏幕截图,但状态栏中没有所有信息,例如运营商和 Debug模式等。 我知道 Marshmallow 有一个 System UI
UIGraphicsBeginImageContext(self.reportList.frame.size); CGRect tableViewFrame = self.reportList.fra
是否有任何简洁的方法来访问 android 设备的屏幕截图以编程方式。我正在寻找大约 15-20fps。 我找到了一个代码android\generic\frameworks\base\service
好的,我正在尝试为多个网站运行多个屏幕截图!我已经获得了多个站点的一个屏幕截图,我还可以获得一个站点的多个 Viewport 屏幕截图,但我有 34 个站点需要这样做!那么有人知道用 casperjs
我正在为 iOS 制作一个贴纸包,在将其提交到 App Store 之前,我需要包含至少一张来自 5.5 英寸 iPhone 和 12.9 英寸 iPad Pro 的应用截图。这些都是我没有的设备。
我是一名优秀的程序员,十分优秀!