Category: C

C/C++ : LibTiff Tutorial

C/C++ : LibTiff Tutorial Libtiff is a library for reading and writing Tagged Image File Format (abbreviated TIFF) files. The set also contains command line tools for processing TIFFs. It is distributed in source code and can be found as binary builds for all kinds of platforms. The libtiff software was written by Sam Leffler

Integer To Binary Converter

Integer To Binary Converter I am interesting about how we can convert a integer number to binary number. So, I am try to create Integer To Binary Converter with C source Code.I am create this code from tutorial at http://www.helpwithpcs.com/courses/binary-numbers.htm. Please look Integer To Binary source code below : /* * iolibrary.c * * Created

C/C++ Read Binary File

C/C++ Read Binary File A binary file is a computer file which may contain any type of data, encoded in binary form for computer storage and processing purposes (wikipedia.com). On this article, I will write about C/C++ Read Binary File. We can read binary file and write binary file with any of other data type

C/C++ : Convolution Source Code

C/C++ : Convolution Source Code In mathematics and, in particular, functional analysis, convolution is a mathematical operation on two functions f and g, producing a third function that is typically viewed as a modified version of one of the original functions (from wikipedia.com). Convolution of two square pulses: the resulting waveform is a triangular pulse.