fileiopp

File IO ++ or fileiopp serves as a utility that interprets files in ways that I deem useful
Log | Files | Refs | README | LICENSE

commit 36e6257f38b8832a4d8ddd8a7cdba74c9cc10fb4
Author: M. Yamanaka <myamanaka@live.com>
Date:   Mon,  9 Nov 2020 19:28:51 -0500

license and readme

Diffstat:
ALICENSE | 22++++++++++++++++++++++
AREADME | 28++++++++++++++++++++++++++++
2 files changed, 50 insertions(+), 0 deletions(-)

diff --git a/LICENSE b/LICENSE @@ -0,0 +1,22 @@ +MIT License + +Copyright (c) 2020 M. Yamanaka <myamanaka@live.com> + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + diff --git a/README b/README @@ -0,0 +1,28 @@ +File IO ++ +"fileiopp" +M. Yamanaka +email: myamanaka@live.com +website: http://www.csmyamanaka.com +License: MIT (See included "LICENSE" file for details) + +Version 0.01 (alpha) + +Description: +============ + + +Installation: +============= + + +Usage: +====== +The intended usage of this software is to serve as a more sophisticated file interpreting utility for other projects. +For this reason, it's probably best to compile this software into a shared object file, a static library file or just a local object file. +The included make-file "Makefile" has provisions for the shared object and local object compilations. +The "tester" argument serves as an example for how one could compile their own project using this software once it has been made into an object file. + +Known Issues: +============= +I don't know why but for some reason, for bitmap files, when the number of channels is set to 1, weird unexpected stuff happens. +Will debug soon but for now, it seems to be working for the most part for normal RGB images where the number of channels is 3.

Generated using stagit (https://codemadness.org/stagit.html)