Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
6answers
4k views

JPG to PDF Convertor in C#

I would like to convert from JPG to PDF, I've checked out ImageMagickNET, but it is far too complex for what I am after doing, it needs to be simple. Any pointers would be welcomed
5
votes
3answers
5k views

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.
4
votes
3answers
316 views

Is using the .NET Image Conversion enough?

I've seen a lot of people try to code their own image conversion techniques. It often seems to be very complicated, and ends up using GDI+ function calls, and manipulating bits of the image. This ...
3
votes
0answers
63 views

Quick, multi-OS, command line conversion of JPEG-2000 to JPEG

I am working on a web script that handles image processing using ImageMagick. It takes relevant parameters, executes an ImageMagick command at the command line or shell depending on OS, and passes the ...
3
votes
2answers
97 views

Dynamic PHP image with a PNG extention

I'm trying to make an image similar to one of these: http://www.danasoft.com/vipersig.jpg Not really content wise (displaying IP addresses and headers), but more so a PHP image displayed in a PNG ...
3
votes
2answers
619 views

How to convert an image file to BMP programmatically using native Windows XP capabilities?

Is it possible to convert an image file to BMP format using WindowsXP's native libraries and scripting capabilities? I'm talking about WSH, JScript, VBS, etc... C++ is also good for what I need if it ...
2
votes
1answer
193 views

ImageMagick: convert.exe crashes sporadically

I have a few problems while processing my images in my java program. For the processing, i use ImageMagick version 6.7.2-Q16 under Windows Vista. Problem I was able to isolate the problem to ...
2
votes
2answers
220 views

How do I convert images (PSD, AI and EPS) to PDF?

Customers of my Django site can upload a print design in: PDF, PSD, AI and EPS. If the filetype they upload is not PDF I want to convert it to PDF. So my question is: How do I convert Photoshop, ...
2
votes
2answers
279 views

Converting between multiple image formats in Objective-C

I want to be able to, being given a path to an image, convert that image into another image, but with a different format. By format I mean .png, .bmp .jpg .tiff, etc. In pseudocode, this is really ...
2
votes
2answers
688 views

C# converting transparent png to jpg black background

I'm using System.Drawing.Image in .Net to do a simple conversion from png to jpeg. I'm basically just using these two lines of code: Image img = Image.FromFile(filename); img.Save(newFilename, ...
2
votes
2answers
452 views

How to convert PNG to BMP at runtime?

I need to convert PNG file to BMP file on runtime. I can't do it like Image dummy = Image.FromFile("image.png"); dummy.Save("image.bmp", ImageFormat.Bmp); because i can't save the bmp image on ...
2
votes
1answer
968 views

convert byte[] of jp2 to jpg file

I have a byte array of jp2, how can I convert that to jpg file? Thank you~ Thank all the answers. I made some differences and nearly succeeded. Here is how I do it: `using (var reader = ...
2
votes
2answers
348 views

File Format Conversion to TIFF. Some issues?

I'm having a proprietary image format SNG( a proprietary format) which is having a countinous array of Image data along with Image meta information in seperate HDR file. Now I need to convert this ...
2
votes
3answers
1k views

GDI+ Image Conversion From Metafile to JPEG/GIF Results in Black Background

So i am converting a metafile (EMF to be exact) to a jpeg or gif (doesn't matter as long as it's compatible with browsers) and when I do the conversion, all of the transparent pixels turn black. I ...
1
vote
2answers
37 views

Saving TIFF as PNG

I have such code using (Image image = System.Drawing.Image.FromStream(sourceStream)) { Guid objGuid = image.FrameDimensionsList[0]; FrameDimension objDimension = new FrameDimension(objGuid); ...
1
vote
0answers
65 views

Converting different image types to .png format for a WCF Application

I need to convert different files formats into .png grayscale (8 or 16 bit) format. I have found tools that can convert documents, PDFs and text docs. I was looking into Aspose Imaging for .Net but ...
1
vote
2answers
143 views

Converting byte array to bufferedimage results in null

I am trying to convert a byte array of length 128 to a 32x32 bitmap stored in a BufferedImage. I am using the following code: private BufferedImage fSP; public Pattern( byte[] aBitData ) { if ( ...
1
vote
1answer
58 views

Drupal 7 - 'Text on Image' Conversion

How can we convert the contents of the article into image/pdf format in drupal 7. Suppose, we are viewing a article in some textformat (ie default format of drupal) and if we want to see the contents ...
1
vote
0answers
124 views

Looking for an Image Conversion Library

I am looking for a conversion library that can convert my dds files to tga. I found imagemagick and DevIL. But both come with problems, because my specifications are as follows: The library needs to ...
1
vote
2answers
974 views

YUV420 to RGB conversion

I converted an RGB matrix to YUV matrix using this formula: Y = (0.257 * R) + (0.504 * G) + (0.098 * B) + 16 Cr = V = (0.439 * R) - (0.368 * G) - (0.071 * B) + 128 Cb = U = -(0.148 * R) - ...
1
vote
1answer
192 views

Imagemagick - PDF to Jpeg/Raster texture issue

I am using imagemagick/php to make a jpeg file from a PDF. Input PDF file: PDF-file Output Jpeg file: Jpeg-file The textures on the output file look wrong near the bottom. This is the same result ...
1
vote
0answers
58 views

Sips not working with pict, qtif and sgi files

The terminal command sips -s format pict /path/to/image.ext --out /path/to/output.pict ouputs Error: Unsupported output format com.apple.pict even though if you do man sips and go down to format, ...
1
vote
2answers
258 views

Opera Turbo and background-repeat doesn't work

For example I have such a code: <style> body { background: url('back.png') repeat-y center; } </style> <body> </body> It works fine in all browsers, include Opera. Looks ...
1
vote
3answers
513 views

Convert favicon.ico to png to using ImageMagick Procedurally

It looks like ImageMagick does not always convert a single favicon.ico file to a predictable single png file - for some favicon's, it generates a bunch of other favicon-01.png, favicon-02.png, etc... ...
1
vote
2answers
770 views

Converting .dds to .png: is XNA really this convoluted?

I have a .dds file and I want a .png file. Although I already found out about the DevIL.NET library, the API design there of one static class does not parallelize, so I am hoping to find another ...
1
vote
2answers
78 views

Is there any image converter through which I connect with java?

I asked one question here but I didn't get exactly what I wanted. So, now because of the unsupported image problem in ImageIO, I thought why don't I try another way to use it, by converting ...
1
vote
1answer
845 views

Image Conversion from Bitmap to Icon doesn't seem to work

I have a simple function that takes a bitmap, and converts the bitmap to an ICON format. Below is the function. (I placed literal values in place of the variables) Bitmap tempBmp = new ...
1
vote
2answers
529 views

Easy way to translate a Bitmap & Png to text AND BACK AGAIN in C#

what is the easiest way to translate a Bitmap & Png to string AND BACK AGAIN. Ive been trying to do some saves through memory streams and such but i cant seem to get it to work! Appearently i ...
1
vote
2answers
1k views

How to change background color of an eps file while converting it to jpeg or png

I am converting eps (Encapsulated PostScript) files to jpeg files with ghostscript. A sample command I use is: gswin32.exe -sDEVICE=jpeg -dJPEGQ=100 -dNOPAUSE -dBATCH -dSAFER -r600x600 ...
1
vote
1answer
2k views

How to Get UIImage from a 'Base64String' format raw image data, on iPhone?

In my application, I receive the image data from the server in a XML file. This data is of an image( .jpeg or .png or .tiff etc) which the server, converts into 'Base64String' format bytes to send to ...
1
vote
4answers
917 views

How does PDF's BitsPerComponent translate to Bits Per Pixel for images?

My goal is to convert a PDF into an image (specifically in TIFF). There is a PDF property called BitsPerComponent And According to description on the page, This property can take the value 1, ...
0
votes
0answers
21 views

System.Drawing.Image Save() producing inconsistent file sizes

While converting TIFFs to PDFs, I noticed some of the PDFs were corrupted. After some research, it appears the problem is in the System.Drawing.Image class. To test this, instead of converting to ...
0
votes
2answers
43 views

Is BMP to CSS/HTML conversion possible

It is theoretically possible to have a converter, that scans the color areas of a bitmap image and creates the same looking image, but using the CSS/HTML. CSS could be controlling colours of ...
0
votes
1answer
42 views

How to convert a JPG image to TGA with PHP (preferably in CodeIgniter)?

We're developing a website and for a particular section user is uploading images. User can upload a jpg file, which on upload we need to convert it to TGA format. Is there any PHP or CI library which ...
0
votes
1answer
92 views

Using ImageMagick convert a PSD to various Android density images

I have a PSD that contains the graphics I require split onto various layers and I am wanting to use ImageMagick to convert these into the various png files. I have managed to work this out using. ...
0
votes
0answers
43 views

SVG convert issue with imagemagick (pango modules)

i'm trying to use the convert command of imagemagick to convert an svg image to png image. When i use the command a i got this error: Pango-WARNING **: No builtin or dynamically loaded modules were ...
0
votes
1answer
19 views

How can i get the name of resulting converted images from a pdf using php imagemagick?

Im converting some pdfs to pngs wth exec("convert readme.pdf readme.png") And then i need to store in a mysql database the resulting image filenames from any given pdf. This is because when i ...
0
votes
0answers
31 views

Web API service for EPS image conversions

Does anyone know of any good web services that have an API where a website can send an EPS image file and have it converted to JPG, PNG, or GIF? I have a problem where we are using a cloud host that ...
0
votes
1answer
238 views

How to convert from java.awt.image.BufferedImage/PDXObjectImage to System.Drawing.Image?

I am using IKVM in a C# application so that I can use PDFBox to extract information from PDFs. Using PDFBox, I am able to extract images into PDXObjectImage. I need to get this PDXObjectImage into a ...
0
votes
1answer
356 views

rgb to ycbcr conversion in matlab

I am trying to write a function in Matlab that takes an RGB image of class unit8 and double and converts it to a YCBCR image. The transformation formula is below. I would be really thankful for any ...
0
votes
0answers
351 views

phMagick Pdf to png conversion problem on linux

I am getting this problelm while converting pdf to png using phmagick on linux phMagick: Error executing "/usr/bin/convert -density 200 -quality 100 -scene 1 ...
0
votes
2answers
244 views

Can an SVG vector graphic be converted to a PNG file format for use in Fireworks?

Hopefully this is not going to be flagged as an 'off topic' post... As many of you know, there are quite a few websites that sell royalty free graphics. Some sites sell vector graphics (svg) or give ...
0
votes
3answers
1k views

Save Bitmap with transparency to PNG in Delphi 2007

I have a Delphi bitmap (32Bit) that has transparency information. I need to convert and save it to a PNG file while preserving the transparency. The tools I currently have are the graphics32 Library, ...
0
votes
1answer
449 views

Using pdfcreator to convert tiff files

I am using pdfcreator com sdk to convert files to pdf. Most of the time its htmls or images, so i use the printURL method, but if the file is tiff pdfcreator wont create the file as pdf. When i use ...
0
votes
0answers
176 views

Converting .gif to .png format in Cocoa (OSX) without using representationUsingType:properties:

I need to write a method that takes a .gif image file as input and converts it to a 32x32 .png file. The only way I found to do this in Cocoa would be using the representationUsingType:properties: ...
0
votes
1answer
38 views

converting image extension

Hi need help creating a script to convert the extension of a tif image to a .png and removing the original from the file. This is what I have. @echo off image1.tif >> image1.png when it run it ...
0
votes
1answer
451 views

.cur Image Converting Software

I have an transparent .PNG image that I need to convert into an .CUR file. Does anyone know of good online software for converting .CUR or free-inexpensive downloadable softare? Thanks in advance!
0
votes
2answers
519 views

Convert PDF File to Image - VB/C#

Was just wondering if anyone's written or come across a PDF to Image Conversion App! If so, I need some guidelines or preferably, code. I tried using some cheap s/w's but they all were turned out to ...
0
votes
3answers
725 views

How to convert 32-bit RGBA Image to Grayscale preserving alpha

I'd like to, in code and on demand, convert a 32-bit RGBA Image object (originally a 32-bit PNG) to its 32-bit grayscale counterpart. I've already read several other questions here, as well as many ...
0
votes
1answer
309 views

Read WMF image from SQL Server

I am using a SqlDataReader and I am trying to read from a table I converted from an Access file, and is in SQL Server 2008. The datatype is now a varbinary(max). How do I convert this, so I can have ...

1 2