-
Notifications
You must be signed in to change notification settings - Fork 97
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[ADD CONTENT] : Image representation and its storing formats #88
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
includes : - cpp file containing the code to read from bitmap image and then store it to display, using sdl2 library - images - readme file explaining the theory
* Update Makefile to remove redundant "SDL2_image" linker flag * Add proper implementation of SDL2 library to display correct size of image
* This commit resolves the bug wherein image was displayed inverted. * Two seperate struct "BitMapFileHeader" and "BitMapInfoHeader" is created to store the file type data and image information data. * README.md has been modified to include more info about the different blocks in the bitmap image namely file data type, image information data , color pallete and raw raster data.
Changes made : - Removed the unnecessary linebreak wherever required. - Seperated types of images from "some important terminologies" topic
- Added proper path to asset images - added correct command for run without make
Co-authored-by: Gautam <gautamnagrawal@gmail.com>
aPR0T0
pushed a commit
to aPR0T0/Pixels_Seminar
that referenced
this pull request
Mar 23, 2023
…I#88) * Added content for image storing formats includes : - cpp file containing the code to read from bitmap image and then store it to display, using sdl2 library - images - readme file explaining the theory * Delete Image_storing_formats directory * changed name convention according to the file structure * fixed errors * Solve display bug in image_representation * Update Makefile to remove redundant "SDL2_image" linker flag * Add proper implementation of SDL2 library to display correct size of image * Solve the inverted image display bug * This commit resolves the bug wherein image was displayed inverted. * Two seperate struct "BitMapFileHeader" and "BitMapInfoHeader" is created to store the file type data and image information data. * README.md has been modified to include more info about the different blocks in the bitmap image namely file data type, image information data , color pallete and raw raster data. * Correct formating in the README.md * Correct compiling commands in README.md * modified readme format Changes made : - Removed the unnecessary linebreak wherever required. - Seperated types of images from "some important terminologies" topic * modified file structure * updated readme - Added proper path to asset images - added correct command for run without make * Delete assets/1_image_representation directory --------- Co-authored-by: gautam-dev-maker <gautamnagrawal@gmail.com>
Khushi-Balia
pushed a commit
to Khushi-Balia/Pixels_Seminar
that referenced
this pull request
Mar 28, 2023
…I#88) * Added content for image storing formats includes : - cpp file containing the code to read from bitmap image and then store it to display, using sdl2 library - images - readme file explaining the theory * Delete Image_storing_formats directory * changed name convention according to the file structure * fixed errors * Solve display bug in image_representation * Update Makefile to remove redundant "SDL2_image" linker flag * Add proper implementation of SDL2 library to display correct size of image * Solve the inverted image display bug * This commit resolves the bug wherein image was displayed inverted. * Two seperate struct "BitMapFileHeader" and "BitMapInfoHeader" is created to store the file type data and image information data. * README.md has been modified to include more info about the different blocks in the bitmap image namely file data type, image information data , color pallete and raw raster data. * Correct formating in the README.md * Correct compiling commands in README.md * modified readme format Changes made : - Removed the unnecessary linebreak wherever required. - Seperated types of images from "some important terminologies" topic * modified file structure * updated readme - Added proper path to asset images - added correct command for run without make * Delete assets/1_image_representation directory --------- Co-authored-by: gautam-dev-maker <gautamnagrawal@gmail.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This solves #59
Includes: