|
1 | 1 | /* |
2 | | - * This source file forms part of libsaxbospiral, a library which generates |
| 2 | + * This source file forms part of libsxbp, a library which generates |
3 | 3 | * experimental 2D spiral-like shapes based on input binary data. |
4 | 4 | * |
5 | 5 | * This compilation unit provides functionality to render a bitmap struct to a |
6 | 6 | * PNG image (stored in a buffer). |
7 | 7 | * |
8 | 8 | * NOTE: PNG output support may have not been enabled in the compiled version |
9 | | - * of libsaxbospiral that you have. If support is not enabled, the library |
| 9 | + * of libsxbp that you have. If support is not enabled, the library |
10 | 10 | * boolean constant SXBP_PNG_SUPPORT will be set to false and the one public |
11 | 11 | * function defined in this library will return SXBP_NOT_IMPLEMENTED. |
12 | 12 | * |
@@ -167,9 +167,9 @@ sxbp_status_t sxbp_render_backend_png( |
167 | 167 | metadata[2].text = "Copyright Joshua Saxby"; |
168 | 168 | metadata[3].key = "Software"; |
169 | 169 | // SAXBOSPIRAL_VERSION_STRING is a macro that expands to a double-quoted string |
170 | | - metadata[3].text = "libsaxbospiral v" SAXBOSPIRAL_VERSION_STRING; |
| 170 | + metadata[3].text = "libsxbp v" SAXBOSPIRAL_VERSION_STRING; |
171 | 171 | metadata[4].key = "Comment"; |
172 | | - metadata[4].text = "https://github.com/saxbophone/libsaxbospiral"; |
| 172 | + metadata[4].text = "https://github.com/saxbophone/libsxbp"; |
173 | 173 | // set compression of each metadata key |
174 | 174 | for(size_t i = 0; i < 5; i++) { |
175 | 175 | metadata[i].compression = PNG_TEXT_COMPRESSION_NONE; |
|
0 commit comments