|
Hi,
Is there any c function that allow me to convert a raw image to a PNG file? Preferably, I don't need to pull in a big library for that.
Thank you.
Started by lucius on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Http://members.gamedev.net/lode/projects/LodePNG/ There's an example showing you how to encode some raw data to a png
See a related question: Convert bitmap....
What you mean by "raw image", but I've found LodePNG easy to work with.
|
|
I have a large number of .RAW audio files (unsigned 8-bit PCM with no-endianness) which I want to convert to .WAV files. What command-line tool (windows or linux) can I use to convert these quickly?
Started by kenmcfa on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Linux distributions, but can convert to about anything
MPlayer should be able to convert your audio;RAW_FILE> <TARGET_FILE>.
|
|
In .NET is it possible to convert a raw HTTP request to HTTPWebRequest object?
I'm sure .NET internally doing it. Any idea which part of the .NET is actually handling this? Can I call it or is there any external library which allows raw HTTP connections...
Started by dr. evil on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
It, anything written in .Net that logs raw requests and then lets you resubmit them is doing something.
|
Ask your Facebook Friends
|
Hello guyz, I'm working on a project under which i have to take a raw file from the server and convert it into XML file.
is there any tool available in java which can help me to accomplish this task like JAXP can be used to parse the XML document ???
...
Started by Mew 3.2 on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
I then usually use a Transformer from ....
If the raw file contains something other from an empty Document .
You start into a Document , which is an internal XML representation .
This assumes that the text in the raw file is already XML.
|
|
I have an Oracle table that contains a field of LONG RAW type that contains ASCII character data. How can I write a query or view that will convert this to a more easily consumed character string? These are always going to be single-byte characters, FWIW...
Started by Chris Farmer on
, 4 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Exceeded varchar2 limit'; exit; END IF; END LOOP; return l_var; EXCEPTION(OLDCOLUMN)) FROM OLDTABLE;
Maybe
select... .
|
|
I have RAW files output by a program with a specific set of properties (Photoshop RAW, 16 bits, IBM PC byte order, no header, 1 non-interleaved channel, variable sizes like 257X257 or 129X513); does anyone know of a free tool that will allow me to convert...
Started by RCIX on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at superuser):
I have used this one a couple of times:
XDepth Raw
You might also want to look here: Software for handling camera RAW-files
From your description of the file format (raw data with no header by being 16 bits, so using 2 bytes per ....
|
|
The raw image should be read the tiff tags number.. Thank you.
Started by std_ctr on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
At the lowest level the library provides access to the raw.
Or tile-based API for manipulating data.
|
|
Our application is a client/server setup, where the client is a standalone Java application that always runs in Windows, and the server is written in C and can run on either a Windows or a Unix machine. Additionally, we use Perl for doing various reports...
Started by Morinar on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Have you had a look at iText ?
You willl need to find some way of interpreting the RAW format.
|
|
Hi i have used the following code for converting the bigint in decimal to bytearray (raw data) , but i am getting wrong result What is the mistake here.
I am trying this in Apple Mac ( for Iphone app) COMP_BYTE_SIZE is 4
Is there any bigendian/ little...
Started by bs on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The target array is big enough? Also use
comp mask = (comp)0xff << (j*8);
num should be cast to uint8_t before copy
data[k--] = (uint8_t)num; .
The argument size is at least x->size*4, ie.
|
|
I need a program that I can pipe a raw PCM stream into, and will send wav files to stdout.
Since the input is a stream, I can't just add headers to it, but I can for every x seconds (For example, program reads ten seconds of the stream, and outputs a ...
Started by Jeffrey Aylesworth on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Mencoder as all the command line switch you want to transform raw pcm.
Mencoder and mplayer.
|