Skip to main content
Filter by
Sorted by
Tagged with
0 votes
2 answers
195 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: ...
Sergey Alikin's user avatar
1 vote
2 answers
115 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 ...
Manuel Cera Vera's user avatar
1 vote
1 answer
117 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 ...
Werder Foster's user avatar
-1 votes
1 answer
148 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 ...
gyuunyuu's user avatar
  • 718
0 votes
1 answer
82 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 ...
DavidKeller's user avatar
1 vote
1 answer
48 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 ...
steven FM's user avatar
-1 votes
1 answer
602 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 ...
Loic Daigle's user avatar
1 vote
1 answer
408 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;...
user14668421's user avatar
1 vote
0 answers
95 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 ...
USER's user avatar
  • 39
1 vote
0 answers
61 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 #...
USER's user avatar
  • 39
1 vote
1 answer
86 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" /** * ...
USER's user avatar
  • 39
0 votes
1 answer
179 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 ...
corp's user avatar
  • 9
0 votes
0 answers
84 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 ...
mia herstein's user avatar
0 votes
0 answers
136 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: ....
Ivashchenko Matvii's user avatar
1 vote
1 answer
112 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 ...
clodia's user avatar
  • 11

15 30 50 per page
1
2 3 4 5
74