0
votes
1answer
24 views

Generating a 16-bits per channel PNG file procedurally

Is there any way to generate a 16-bits per channel(RGBA) PNG file using D3DX11SaveTextureToFile? Or any version of DirectX, any image library(C++), any image format I tried to use the sample code ...
0
votes
1answer
52 views

Looking for good JPEG,PNG,TIFF,PDF etc viewer component for .NET

I want to use Image viewer in my project but I need a good component. It doesn't matter free or licensed. It must support scrolling around multiple TIFF files, PDF, JPEG, PNG, BMP etc. It is optional ...
1
vote
2answers
702 views

OpenCV imwrite saving black png

I'm trying to write a C++ program that applies a flatfield to an image. It's supposed to load an image and divide it by another loaded image, then export it as a PNG. My program compiles correctly, ...
2
votes
3answers
380 views

Matlab: how to save TIFF with transparency or PNG with no compression?

I have to process a lot of images and save results to image files with transparency in Matlab. But PNG compression takes too much time for me. How can I save PNG with no compression or TIFF with ...
1
vote
0answers
42 views

Infrared and Ultraviolet images.! [closed]

I have seen searching for infrared and ultraviolet images of plants eg: grape plants. but i can not find a reasonable images from the search. And also I have tried to buy the camera to take the ...
0
votes
1answer
45 views

Cocoa. Why app's image are changed from png to tiff format in sandbox?

my app's resources are png format,but when I run the app,and open the sandbox's content resources directory,I found that all the images in png format are changed to tiff format,how is it going? ...
3
votes
1answer
329 views

MATLAB tif file format vrs PNG file format. True lossless compression?

I have been working on a problem where I need to save a matrix as an Image and for it to be a truly lossless example of the matrix in MATLAB. I have tried writing the image as a png and tiff both in ...
0
votes
1answer
192 views

Both PNG and multi-representation TIFF in Mac App supporting retina display?

In Xcode, I add both image.png (normal size) and image@2x.png (retina size) for my images as resources. When I build my app and look in the /Contents/Resources/ of the bundle, it shows both an ...
2
votes
2answers
465 views

Better TIF to PNG conversion with Bitmap.Save()?

Update: Tried SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.AntiAlias; and it's noticeable at full zoom, but it doesn't solve the problem, the problem is just anti-aliased now... The TIFs ...
4
votes
4answers
2k views

Image resources for iOS

I'm probably missing something obvious here, yet I've been unable to solve the following problem: I have a project with image resources for both normal and retina screens, like someimage.png and ...
1
vote
1answer
167 views

.tif to .png conversion in Android

As android doesn't support TIIF fromat, so I want to convert a .tif image to .png image in android. Is there any library or code that can help me out? whatever i get is not saufficient for this ...
1
vote
2answers
1k views

Image resizing using C#

The images that are fresh out from digital cameras are often above the size of 2-3 MB making it difficult for it to get transferred over email and other ways. This requires the image to be resized (in ...
0
votes
1answer
274 views

Trying to write 16-bit PNG

I'm capturing images from camera, and I have two function for saving 16-bit(!) image one in PNG and one in TIFF formats, could you please explain why in PNG I got wery nosy image? like this: PNG ...
0
votes
1answer
452 views

How to convert psd(photoshop file) or tiff to PNG using Ghostscript?

I am attempting to use Ghostscript to convert PSD, TIFF, PCX...files to PNG file. Using ghostscript 9.04, EPS or PDF is work that convert to PNG. But failed psd(same tiff, pcx) file. Error message is ...
0
votes
1answer
324 views

Convert Different Format documents into 1 bit png files in .net

Hi I have an initiative of converting bunch of different formats such as Word, PDF, png, jpg, excel files into '1 bit png' files and store them in the database. I need to use .net framework for ...
0
votes
0answers
280 views

Tiff image to Jpeg or Png converstion in Java [duplicate]

Possible Duplicate: How do I convert a TIF to PNG in Java? I am trying to convert some Tiff files to PNG or Jpeg, I have searched a lot but couldn't found some solution yet. Please help me ...
0
votes
4answers
362 views

Convert Group 3 compressed TIFF to png or pdf in .net

I search a way to convert a Group 3 compressed TIFF to png or for best in pdf with c#.net.
1
vote
1answer
300 views

Graphics folder modules will not import after several installs (Mac OSX)

A similar problem with the python gdal module Gdal will not import after several installs (Mac OSX) was solved by modifying my shell profile to ensure MacPorts-installed ports are found, and then ...
1
vote
2answers
75 views

Where can I find a good introduction to bitmaps

I have to write some code working with bitmaps. Is there a good introduction to the subject to get me started?
2
votes
3answers
1k views

Convert multipage TIFF to PNG .Net

I am able to convert a single page TIFF to a PNG in .Net, however, how would I do this for a multipage TIFF?
5
votes
4answers
11k 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.
8
votes
3answers
4k views

Converting TIFF files to PNG in .Net

I have to build an application in .Net (3.5) to pick up a TIFF file saved from another piece of software and convert it into a PNG so that it can be rendered easily in Internet Explorer. Does anyone ...
2
votes
5answers
6k views

How do I convert multiple png images to a single tiff file

I have a byte array of several images in the png format. I have to convert this to a tiff file and then into the corresponding byte array. This tiff file will hold multiple images. I have searced a ...