java常用的几个图片处理工具对Tiff文件的支持

ImageMagick

官网 https://imagemagick.org/, 支持多种格式。命令行工具很适合调试。功能很强大. 还有一款工具GraphicsMagick 是从ImageMagick的基础上研发出来的。

OpenCV

官网 https://opencv.org/ , github地址https://github.com/opencv/opencv,非常活跃的一个开源工具,原来免费的教程,现在已经开始包装成视频,进行收费了,我买了教程,看了下,和以前官网看过的文字版教程没多大差别。github关注已经达到了72.3k。

ImageJ

官网 https://imagej.net/ij/

ImageJ is open source software for processing and analyzing scientific images.

基于ImageJ已经又研发了ImageJ2(目前github关注量1k)和Fiji的产品。

java 复制代码
// Open the TIFF image
ImagePlus imagePlus = new ImagePlus(f);

// Get the image processor
ImageProcessor imageProcessor = imagePlus.getProcessor();

// Add text to the image
int x = 0; // X-coordinate of text
int y = 0; // Y-coordinate of text

String   textToAdd = "These three lines of\ntext will be overlayed on\nthe current image";

Font font = new Font("SansSerif", Font.PLAIN, 56);
imageProcessor.setFont(font);
imageProcessor.setColor(Color.RED);
imageProcessor.drawString(textToAdd, x, y); // Draw the text

// Display the modified image (optional)
//        imagePlus.show();

// Save the modified image
ImagePlus outputImage = new ImagePlus("Modified Image", imageProcessor);
IJ.saveAs(outputImage,"jpeg", f31);
IJ.saveAsTiff(outputImage, f41);
final ImagePlus imagePlus1 = IJ.openImage(f41);
IJ.save(imagePlus1, fpng);

commons-imaging

Apache维护的产品,目前github关注量381

java 复制代码
final File file = new File(f);
final BufferedImage overlay = Imaging.getBufferedImage(file);
// Add text to the image
int x = 0; // X-coordinate of text
int y = 0; // Y-coordinate of text

Font font = new Font("SansSerif", Font.PLAIN, 56);
String   textToAdd = "These three lines of\ntext will be overlayed on\nthe current image";
addTextToImage(overlay, textToAdd, x, y, Color.RED, font);

ImageIO.write(overlay, "JPEG", new File(fa1));
//        ImageIO.write(overlay, "TIFF", new File(fa2));
saveImageWithText(overlay, fa2);
Imaging.writeImage(overlay, Files.newOutputStream(Paths.get(fa4png)), ImageFormats.PNG);
java 复制代码
    // Method to add text to the image
    private static void addTextToImage(BufferedImage image, String text, int x, int y, Color color, Font font) {
        Graphics2D g2d = image.createGraphics();
        g2d.setColor(color);
        g2d.setFont(font);
//        g2d.drawString(text, x, y);
        drawString(g2d, text, x, y);
        g2d.dispose();
    }
   private static void drawString(Graphics g, String text, int x, int y) {
        for (String line : text.split("\n"))
            g.drawString(line, x, y += g.getFontMetrics().getHeight());
    }

//    // Method to save the modified image with text using Common Imaging
    private static void saveImageWithText(BufferedImage image, String outputPath) throws IOException, ImageWriteException {
        // Create a new instance of ImageWriteParam for TIFF format
        final TiffImagingParameters params = new TiffImagingParameters();
        params.setCompression(TiffConstants.TIFF_COMPRESSION_UNCOMPRESSED);

        // Write the BufferedImage with text to a TIFF file
//        Imaging.writeImage(image, new File(outputPath), ImageFormat.IMAGE_FORMAT_TIFF, params);
         new TiffImageParser().writeImage(image, Files.newOutputStream(Paths.get(outputPath)), params);
    }

TwelveMonkeys

目前github关注量1.7k

JDeli 是一个付费软件

如下是测试结果

photoshop可以看到通道增加了专色通道。

ImageMagick opencv imagej commons-imaging TwelveMonkeys JDeli(付费软件)
带有2 个专色通道的tiff图片 不支持 不支持 支持 支持 不支持 支持
将文字写入到图片中 / / 支持 支持
文字写入保存为jpg格式 / / 写入红色的字体变成了黑红 写入红色的字体变成了黑红
文字写入保存为tiff格式 / / 写入红色的字体正常 写入红色的字体正常 写入红色的字体正常
支持Tiff 格式alpha通道 / / 不支持 不支持 不支持 不支持
相关推荐
普密斯科技1 小时前
齿轮平面度与正反面智能检测方案:3D视觉技术破解精密制造品控难题
人工智能·计算机视觉·平面·3d·自动化·视觉检测
纤纡.7 小时前
基于 PyQt5 的桌面应用开发实战:登录、预测、计算器、摄像头多功能系统
开发语言·人工智能·qt·计算机视觉
格林威8 小时前
AI视觉检测:模型量化后漏检率上升怎么办?
人工智能·windows·深度学习·数码相机·计算机视觉·视觉检测·工业相机
模拟器连接器曾工8 小时前
CCD图像视觉检测纸张表面缺陷检测设备
人工智能·计算机视觉·视觉检测·ccd视觉·ccd图像视觉检测
模拟器连接器曾工8 小时前
RV绝缘圆形端子铜鼻子AI视觉检测参数
人工智能·计算机视觉·视觉检测·ai视觉检测·rv绝缘圆形端子
z6494315089 小时前
【Python开源-单目测距】单目无人机多视角测距:DJI RTK图像 → 地面目标3D坐标与距离,平均RE仅2.12%
python·计算机视觉·开源·无人机
螺丝钉的扭矩一瞬间产生高能蛋白11 小时前
opencv基础用法
人工智能·opencv·计算机视觉
石榴树下的七彩鱼12 小时前
OCR 识别接口哪个好?2026 年主流 OCR API 对比评测(附免费在线体验)
图像处理·人工智能·后端·计算机视觉·ocr·api·文字识别
AI人工智能+12 小时前
表格识别技术通过深度学习与计算机视觉,实现复杂表格的自动化解析与结构化输出
深度学习·计算机视觉·ocr·表格识别