0
votes
0answers
5 views
Scriptable utility to convert BMPs + WAV to video (XviD)?
I'm looking for a scriptable utility to convert a bunch of BMPs and a WAV file into a video. XviD needs to be the output format. I'd like it to work on Linux (Ubuntu) if possible. A command line …
0
votes
1answer
31 views
C++: copying bmp using loop of fread and fwrite, casues output bmp is filled with color of the fisrt one in input bmp
I dunno why, but first pixel (left bottom) is loaded correctly, but the others won't load and the first color is used for whole picture...
I have this in cycle
…
1
vote
10answers
281 views
C++ struct size: 2+4+2+2+4 = 16 [closed]
Possible Duplicate:
Why isn’t sizeof for a struct equal to the sum of sizeof of each member?
Why is the sizeof(); of this structure 16 bytes? I'm compiling in g++.
struct …
0
votes
2answers
358 views
Realtime BMP to JPG conversion in Delphi 7 using Paradox
Researching here and at Code News Fast, I've seen nothing on point to my problem. I have an app where a customer picture (a JvDBImage) is acquired through the clipboard from a third-party …
1
vote
7answers
184 views
C code for loading bitmap
Hi everyone,
Does anybody know a good C sample that loads bitmaps and handles all the cases: rle, b/w bitmaps, so on?
Code should be cross-platform.
Thanks.
0
votes
0answers
54 views
Capture screen shot with mouse cursor
Hi,
I have used the following code to get screen shot on Windows.
hdcMem = CreateCompatibleDC (hdc) ;
int cx = GetDeviceCaps (hdc, HORZRES);
int cy = GetDeviceCaps (hdc, VERTRES);
HBITMAP …
1
vote
8answers
519 views
Getting RGB values for each pixel from a 24bpp Bitmap in C
Hello,
i want to read the RGB values for each pixel from a .bmp file , so i can convert the bmp into a format suitable for gba .
so i need to get just the RGB for each pixel and then write this …
0
votes
2answers
35 views
how could I load a bitmap file in a video feed?
I am using artoolkit to create an augmented reality based project.I can load vrml 3d objects in the video feed using openvrml.
Now I wanted to load a bitmap or any other image file like jpg,png etc …
2
votes
3answers
152 views
How to create a bmp file from rgb datas stored in a txt file?
Hi guys, I've to create a bmp image from two txt files.The first one is an mxn array:
* * * * * * * *
m n
c11 c21 .. cm1
...
c1n c2n .. cmn
* * * * * * * *
* * * * * * * *
6 5
.7 .7 .6 1.0 1.2 .1
.9 …
0
votes
0answers
116 views
Dynamic texture loading in SDL
I´ve got problems with opening textures in SDL. I´ve got a function to read bmp files, optimize them and add colorkey:
SDL_Surface* SDLStuff::LoadImage( char* FileName ) {
printf( "Loading texture: …
0
votes
3answers
831 views
How to create a .bmp in WinCE
I have a camera that returns raw images that can easily be converted to a bitmap that can be saved to a file by the following C# method (that I did not write). From various sources, I have determined …
0
votes
3answers
100 views
Can someone provide me a specification of 32 bit BMP image format?
My application have some problem on opening 32bit BMP images.
some image has alpha channel and with certain value, but window image viewer, picasa photoshop seems ignore the alpha channel.
how can I …
0
votes
0answers
146 views
PHP GD2, Convert resource image to 24-bit BMP
Hi. I need to convert resource image to 24-bit BMP image with GD2.
This code creates 32-bit BMP image, but I need 24-bit. Help please.
function imagebmp(&$im)
{
if (!$im) return null;
…
0
votes
6answers
272 views
How to Create a Bitmap Programmatically?
I'd like to create programmatically a random X height and Y width bitmap file.
The content, for me, is irrelevant. It could be all white, empty. What is important is the dimension.
How to do it …
0
votes
0answers
23 views
paper on var bmp [closed]
where can I find a paper that explains var bmp for beginners, please?
