* @throws IOException
public static void saveAs(BufferedImage image, String formatName, File outFile) throws IOException {
if (formatName.equalsIgnoreCase("jpg") || formatName.equalsIgnoreCase("jpeg")) { //重画一下,要么会变色
BufferedImage tag;
tag = new BufferedImage(image.getWidth(), image.getHeight(), BufferedImage.TYPE_INT_BGR);
Graphics g = tag.getGraphics();
g.drawImage(image, 0, 0, null); // 绘制缩小后的图
g.dispose();
image = tag;
ImageIO.write(image, formatName, outFile);
最近在做的项目由windows系统迁移到麒麟系统上,在麒麟系统上
变色
的图片是预览不出来的,而windows上确实可以的。所以就在网上找了一下解决方案并将解决方案记录一下。
Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@6bef3b3]
18:35:48.398 [schedule-pool-2] INFO c.r.f.s.w.s.OnlineWebSessionManager - [validateSessions,159] - Finished
invalid
ation session. No sessions were sto
在docker容器中读写图片出现
Invalid
argument
to
native
write
Image
异常
异常出现环境:
在docker容器中部署的jar项目,在windows中测试ok,在linux系统的docker容器中,写图片时遇到的异常问题
* @param portraitURL 图片网络URL连接地址
* @return
private String
upload
(String portraitURL){
内存不够或者磁盘空间不足
163.Unresolvable Operation:mobile in class ReportDispatcher
排除jar包和插件影响的话,可能是LIC里面没有决策平台功能点
162.客户嵌入我们的url时出现报错Refused to display 'URL' in a frame because it set 'X-Fr...
在读取给定路径图片的时候报OSError,怀疑是\xx被识别为转义字符。
将代码 img =
Image
.open("E:\pythonproject\bobby.jpg") 改为
img =
Image
.open(r"E:\pythonproject\bobby.jpg")
同时建议:路径尽量直接手敲,复制粘贴文件属性中的路径也可能会出现在代码运行时,路径中多了一个隐含符 \u202a,但是在编辑代码过程中
报错信息:2018-05-24 15:32:25 -899885 [http-bio-80-exec-7] DEBUG - Found 'shiro.sesssion' cookie value [85a3a505-eed2-412e-9e0c-e23626e62bdb]
javax.
image
io.IIOException:
Invalid
JPEG file structure: two ...
在对图片进行处理过程中,发现java 不支持 某些图片的操作(放大,缩小)
Image
IO.read()报:javax.
image
io.IIOException:
Invalid
icc profile: bad
sequence number
一般这些图片,是由扫描仪扫描,或者数码相机拍摄,并且处理时,图片的颜色空间(colorspace)为CMYK模式。 导致了
Image
IO.read(