Skip to main content

Question list filters

Filter by
Sorted by
Tagged with
Score of 0
2 answers
242 views

I have an old software which generate WMF file using a bit complicated logic. I would like to use the result image (WMF file) in my C# application. I can convert it using the following code: ...
Score of 1
2 answers
127 views

I am trying to convert the Base-64 data contained in the "data" returned by toDataURL of a fabric.Canvas into a file with its corresponding extension (BMP). The result is a "The file is ...
Score of 1
1 answer
123 views

I am trying to read .bmp file header and show it to console output. I have two structures for .bmp head info: struct bmp_header{ uint16_t bmp_file_code{0x424D}; // BMP format code always 0x424D ...
Score of -1
1 answer
162 views

VHDL is not good with binary files. I am considering using SystemVerilog for this and thinking how it could read bitmap file (image format .bmp) and process it. This shall be used to create a model to ...
Score of 0
1 answer
95 views

I am trying to write BMP image files using RLE8 compression. Most files I read/write are recognized by standard readers, but some fail. Images with large blank areas are not recognized unless they are ...
Score of 1
1 answer
52 views

i want to make a start screen for my game and an end screen. when i start it shows my start screen for a second and than immidiately changes to the lose screen, the button are still working to start ...
Score of -1
1 answer
713 views

I am currently working on a project involving an ESP32. The ESP32 retrieves a BMP image from a PHP page that converts a JPG to BMP. The ESP32 then needs to convert the BMP image into RGB565 data to be ...
Score of 1
1 answer
463 views

When I convert PNG picture to BMP picture via the routine below, then the colors are not the same in BMP as they are in the original PNG. procedure TForm1.Button4Click(Sender: TObject); var R: TRect;...
Score of 1
0 answers
110 views

I have a problem with reading pixels from bmp file. I don't know what's causing the problem. It might be something with padding at the end of row or fseek(). I share important parts of program. bmp.c ...
Score of 1
0 answers
86 views

Here is text of check: "Given the valid BMP stream When the function is invoked Then the image width must be valid And the image height must be valid" Here is file bmp.h #ifndef _BMP_H #...
Score of 1
1 answer
95 views

here is my structure for header of BMP file #ifndef _BMP_H #define _BMP_H #include <stdint.h> #include <stdio.h> #include <stdbool.h> #define PADDING_CHAR "\0" /** * ...
Score of 0
1 answer
210 views

I am writing a program that reads a bmp file, and then outputs the same BMP file but cropped in half. I'm doing this by simply dividing the bmp height in half, and that results in the top half of the ...
Score of 0
0 answers
90 views

I've copied a code from an assembly book and used an image I've converted from PNG to BMP, and called the file "doeshe.bmp" however, I don't see the picture. (I saved my picture in my TASM ...
Score of 0
0 answers
155 views

I am using rars, and i need to create empty bmp file, and edit it, but idk how. I have code(attached below) that create file, but when i try to open exit file, it says that file is corrupted) code: ....
Score of 1
1 answer
120 views

I have this code to read bmp image and then write it in new image. The problem that I faced is that the resulting image from write_bmp function give the same size of the original reading image but I ...

15 30 50 per page
1
2 3 4 5
74