问题标签 [tiff]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
.net - Windows 7 上使用 Image.FromStream 打开 cmyk+alpha tiff 文件的问题
从 lzw 编码的 cmyk + alpha TIFF 文件创建图像时,我在运行 Windows 7 x86 的以下代码时遇到问题。
FromStream 调用引发 System.ArgumentException: Parameter is not validRunning 当我在 Vista 或 Server 2008(x86 和 x64 位)上运行代码时,它可以正常工作。
apache-flex - 在 Flex 中渲染 TIFF 图像?
我在数据库中有 TIFF 图像,我需要在 Flex 中渲染它们。
请考虑服务器端转换选项超出此问题的范围。客户端转换选项让我感兴趣,如果有人有的话。
java - 任何人都有用 Java 编写一个非常快速的 tiff 查看器/编辑器的运气吗?
我在 JAI/ImageIO 领域探索了几个潜在客户(示例应用程序),但到目前为止都缺乏性能。
可能只是 Java 不是快速查看/缩放/编辑 tiff 文件的平台。
我正在寻找类似于 Irfanview 的性能,但到目前为止还没有找到我想要的东西。
JAI\ImageIO 似乎是可能的 - 但在如何加载/缩放/显示图像方面似乎有很多变化(就性能而言)。
任何人有任何运气或建议转交其他岩石(其他库,甚至 JNI c 扩展路线)都会很乐意听到他们的声音!
c++ - 如何从 MagickWand 对象(在 C 中)获取 libtiff TIFF 对象?
如何从 MagickWand 对象(在 C 中)获取 libtiff TIFF 对象?
我想用 ImageMagick 打开任何给定的图像类型并在其上运行 tesseract。Tesseract 似乎使用 libtiff 作为它的 IO,ImageMagick 似乎使用 libtiff 作为它的 tiff 处理,所以我想我应该能够以某种方式将 ImageMagick 与 tesseract 一起使用,而无需干预文件系统和额外的不必要的磁盘 IO。
谢谢,陈兹
java - 将 JComponent 中的绘图保存到 Tiff 文件中
如何将 JComponent 中的绘图保存为 tiff 格式?我只知道如何保存整个 Java 文件,但我不知道如何保存特定的 Jcomponent。帮我 :-(
已编辑:谢谢大家,现在我可以将我的绘图保存到 Jpeg。
但是我只想保存其中一个组件?c.paintAll(bufferedImage.getGraphics());
似乎可以保存整个组件。但是,我只想保存这个组件, c.add(new PaintSurface(), BorderLayout.CENTER);
我该panel.add(saveBtn);
怎么做?谢谢。
image - 我如何知道 TIFF 图像的格式是否为 CCITT T.6(第 4 组)?
我如何知道 TIFF 图像的格式是否为 CCITT T.6(第 4 组)?
.net - 在.Net中将TIFF文件转换为PNG
我必须在 .Net (3.5) 中构建一个应用程序来获取从另一个软件保存的 TIFF 文件并将其转换为 PNG,以便可以在 Internet Explorer 中轻松呈现。有谁知道可以为我进行这种转换的任何库(最好是免费软件/开源)?
如果没有任何简单的方法可以将其转换为 PNG,是否有任何库可用于将其转换为另一种 IE 友好的图像格式?
我知道我可以将 TIFF 传递给浏览器并使用插件来渲染它,但是针对的 PC 被锁定并且无法安装插件。
java - 在 Java 中显示 TIFF 图像
有人可以告诉我如何在 Java 中加载多页 TIFF 图像并在 JScrollPane 中显示它?我可以使用哪个类?
format - TIFF Group 5 压缩
TIFF Group 5 压缩和 LZW 压缩是一回事吗?
c++ - efficient TIFF tile extraction C++
I am working with 1gb large tiff images of around 20000 x 20000 pixels. I need to extract several tiles (of about 300x300 pixels) out of the images, in random positions.
I tried the following solutions:
Libtiff (the only low level library I could find) offers TIFFReadline() but that means reading in around 19700 unnecesary pixels.
I implemented my own tiff reader which extracts a tile out of the image without reading in unnecesary pixels. I expected it to be faster, but doing a seekg for every line of the tile makes it very slow. I also tried reading to a buffer all the lines of the file that include my tile, and then extracting the tile from the buffer, but results are more or less the same.
I'd like to receive suggestions that would improve my tile extraction tool!
Everything is welcome, maybe you can propose a more efficient library I could use, some tips about C/C++ I/O, some higher level strategy for my needs, etc.
Regards, Juan