Skip to content

Commit f1ba3c4

Browse files
committed
renames
1 parent e5d170a commit f1ba3c4

File tree

6 files changed

+54
-6
lines changed

6 files changed

+54
-6
lines changed

ExifBulider/ExifBulider.vcxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,10 +131,10 @@
131131
</Link>
132132
</ItemDefinitionGroup>
133133
<ItemGroup>
134-
<ClCompile Include="ExifBulider.cpp" />
134+
<ClCompile Include="MicroExif.cpp" />
135135
</ItemGroup>
136136
<ItemGroup>
137-
<ClInclude Include="ExifBuilder.h" />
137+
<ClInclude Include="MicroExif.h" />
138138
</ItemGroup>
139139
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
140140
<ImportGroup Label="ExtensionTargets">

ExifBulider/ExifBulider.vcxproj.filters

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@
1515
</Filter>
1616
</ItemGroup>
1717
<ItemGroup>
18-
<ClCompile Include="ExifBulider.cpp">
18+
<ClCompile Include="MicroExif.cpp">
1919
<Filter>Source Files</Filter>
2020
</ClCompile>
2121
</ItemGroup>
2222
<ItemGroup>
23-
<ClInclude Include="ExifBuilder.h">
23+
<ClInclude Include="MicroExif.h">
2424
<Filter>Source Files</Filter>
2525
</ClInclude>
2626
</ItemGroup>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ SOFTWARE.
3333
#include <variant>
3434
#include <vector>
3535

36-
#include "ExifBuilder.h"
36+
#include "MicroExif.h"
3737

3838
// Function to read a JPEG file into a dynamically allocated array
3939
uint8_t* readJpegFile(const std::string& filename, size_t& fileSize) {

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# MicroEXIF Library Overview
1+
# MicroEXIF c++ Library Overview
22

33
The MicroEXIF library is a lightweight library for adding and EXIF metadata in JPEG files. It provides an easy way to create, configure, and inject EXIF metadata into JPEG images using a set of well-defined classes and structures.
44

@@ -54,3 +54,7 @@ Example code to find `FFDB` marker and inject EXIF blob after it:
5454
writeNewJpegWithExif("input.jpg", "output_exif.jpg", exifBlob.data(), exifBlob.size());
5555
```
5656
57+
##Contributing
58+
We welcome your contributions! Please feel free to submit pull requests, feature requests, or issues to help the library get better.
59+
60+
See contributing.md for ways to get started.

contributing.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# Contributing to MicroEXIF library
2+
3+
Thank you for considering contributing to **[MicroEXIF library]**! This guide outlines how you can help improve the project.
4+
5+
---
6+
7+
## How Can You Contribute?
8+
9+
1. **Report Issues**
10+
Found a bug? Have a feature request? Open an issue.
11+
12+
2. **Submit Code Changes**
13+
Want to fix a bug or add a new feature? See the steps below to make a pull request.
14+
15+
3. **Improve Documentation**
16+
Typos, unclear instructions, or missing details? Documentation updates are welcome!
17+
18+
---
19+
20+
## Guidelines for Contribution
21+
22+
### Issues
23+
- Search existing issues before creating a new one to avoid duplicates.
24+
- Use clear and descriptive titles.
25+
- Provide detailed information (steps to reproduce, expected vs actual behavior, etc.).
26+
27+
### Code Contributions
28+
1. **Fork the repository** to your GitHub account.
29+
2. **Clone your fork**:
30+
```bash
31+
git clone https://github.com/your-username/repository-name.git
32+
3. **Create a new branch** for your feature or bug fix :
33+
```bash
34+
git checkout -b feature/your-feature-name
35+
4. **Write clear**, concise, and clean code.
36+
5. **Test your changes** to ensure everything works as expected
37+
6. **Commit your changes** with a meaningful message:
38+
```bash
39+
git commit -m "Add feature: your feature name"
40+
7. **Push the changes** to your fork
41+
8. **Open a pull request**
42+
43+
---
44+

0 commit comments

Comments
 (0)