作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用此代码拍摄照片
m_photoFile = Capture.capturePhoto(1920, -1);
CN1 不强制使用 1920 宽度,至少在 Android 手机中是这样。因此,我需要手动调整图像大小并存储图像以满足我的 1920x1080 要求。
如果我尝试这样做,我的照片就会变得乱七八糟。
photoFileImage = photoFileImage.subImage(0, 0, 1920, 1080, false);
OutputStream fos = fss.openOutputStream(m_photoFile );
imageIO.save(photoFileImage, fos, ImageIO.FORMAT_JPEG, 1);
我希望调整我的图片大小并裁剪多余部分...因此,如果我的宽度为 1920x1100 那些额外的 20 像素高度,我希望它们被裁剪...如果顶部有 10 个像素,底部有 10 个像素...
我不确定我该怎么做......
请帮忙谢谢!
最佳答案
试试这个:
String m_photoFile = Capture.capturePhoto();
Image image = Image.createImage(m_photoFile);
if (image.getWidth() > image.getHeight()) {
image = image.scaledLargerRatio(1920, 1080);
photoFileImage = image.subImage((int) (image.getWidth() - 1080) / 2, 0, image.getHeight(), image.getHeight(), true);
} else {
image = image.scaledLargerRatio(1080, 1920);
photoFileImage = image.subImage(0, (int) (image.getHeight() - 1080) / 2, image.getWidth(), image.getWidth(), true);
}
关于codenameone - 在 CodenameOne 中调整照片大小而不会丢失正确的大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35417007/
我是一名优秀的程序员,十分优秀!