问题标签 [image-conversion]
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.
vb.net - 将文本输出为 GIF 或 PNG 以用于电子书
我的目标是创建一本电子书,我可以用我的黑莓手机上的 Mobipocket 阅读器阅读它。问题是我的文本包含黑莓不支持的 UTF-8 字符,因此显示为黑框。
该电子书将包含一份英语和旁遮普语单词列表以供参考,例如:
我的一个想法是将列表写入 HTML 表格,并将旁遮普语转换为 GIF 或 PNG 文件。然后将此 HTML 文件包含在电子书中。所有单词当前都存在于一个访问数据库中,但可以很容易地导出到另一种形式以输入到生成例程中。
问题:使用 VB、VBA 或 C#,编写例程创建图像然后在表格中输出包含英文单词和图像的 HTML 文件有多难
java - Scaling images/icons in Java
A project I am working on needs to be resized when the monitor resolution changes. Due to legacy code and other issues, we do it by using a custom library which scales all the components to the appropriate sizes when the resolution changes.
However, when we scale some of the images/icons used in the project, they become blurry/fuzzy/aliased. Mostly because they are all raster gifs.
One solution we thought might work to mitigate this issue is to either use Vector images and convert them into raster images on the fly (and cache them for performance improvements).
What do you all think? Would this be a good way to go? Or are there better alternatives to my chosen method?
If this is a better way, then can someone give pointers to how to go about the svg conversion to say jpg or png(preferably). Available (and commercially usable) libraries?
Thanks
pdf - PDF 的 BitsPerComponent 如何转换为图像的每像素位数?
我的目标是将 PDF 转换为图像(特别是在 TIFF 中)。
并且根据页面上的描述,
此属性可以取值 1、2、4、8 或 16。PDF 规范不支持其他值
这是否意味着1、2、4、8 或 16转换为图像中每像素的位数?
iphone - 如何在 iPhone 上从“Base64String”格式的原始图像数据中获取 UIImage?
在我的应用程序中,我以 XML 文件的形式从服务器接收图像数据。此数据是图像(.jpeg 或 .png 或 .tiff 等),服务器将其转换为“Base64String”格式字节以通过 XML 文件发送到我的应用程序。在我的应用程序端,应用程序将这些字节以“NSData”的形式存储到数据库中。现在,我的应用程序必须在后面部分检索并显示图像。但我一直无法弄清楚如何从这个“Base64String”格式的原始图像数据中获取 UIImage?请在这方面指导我,因为我是 iPhone 应用程序开发领域的“刚加入”开发人员。
感谢您通读,感谢您的帮助。
.net - 从元文件到 JPEG/GIF 的 GDI+ 图像转换导致黑色背景
所以我正在将元文件(确切地说是 EMF)转换为 jpeg 或 gif(只要它与浏览器兼容就没有关系),当我进行转换时,所有透明像素都会变黑。我不知道如何在 GDI+ 中执行此操作,但这是我用来保存文件的方法:
c# - 从 SQL Server 读取 WMF 图像
我正在使用 SqlDataReader,我试图从我从 Access 文件转换的表中读取,并且在 SQL Server 2008 中。
数据类型现在是 varbinary(max)。
如何转换它,以便将其作为 System.Drawing.Image 使用?
它是一个 Windows 元文件,我想将其转换为 PNG 或 GIF 并将其保存到文件系统。
看来这不正确,因为我收到无法转换为 Image 的错误。
谢谢你。
image-manipulation - 如何在将 eps 文件转换为 jpeg 或 png 时更改其背景颜色
我正在使用 ghostscript 将 eps(封装的 PostScript)文件转换为 jpeg 文件。我使用的示例命令是:
输入的 eps 文件带有白色背景(我只有它们的剪切路径)。我需要做的是在输出图像中将此白色背景更改为另一种颜色,或者如果我可以使它们透明(输出文件格式为 png)会更好。我怎样才能做到这一点?
java - How do I convert a TIF to PNG in Java?
Under Java what is the best way to go about converting an TIF file to a PNG?
Simplicity is preferable, but if the simplest way is to use a third party library then I would consider that solution.
c# - 将位图和 PNG 图像转换为文本的简单方法,反之亦然
将位图和 PNG 转换为字符串并再次返回的最简单方法是什么。我一直在尝试通过内存流等进行一些保存,但我似乎无法让它工作!
显然我并不清楚,我想要的是能够将带有图像的位图类翻译成系统字符串。从那里我希望能够将我的字符串扔一下,然后将其转换回位图以显示在 PictureBox 中。