⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 wtiffh.c

📁 This is code tutorial for image processing include:histogram,sketon....
💻 C
字号:


       /*****************************************************
       *
       *       file d:\cips\wtiffh.c
       *
       *       Functions: This file contains
       *	  write_tiff_header
       *	  insert_long_into_buffer
       *	  insert_short_into_buffer
       *
       *       Purpose:
       *	  These functions take a tiff_header_struct
       *	  and write it to a file as the tiff
       *	  header.
       *
       *       External Calls:
       *
       *       Modifications:
       *	  30 January 1991 - created
       *
       ******************************************************/

#include "d:\cips\cips.h"


write_tiff_header(file_name, image_header)
   char   file_name[];
   struct tiff_header_struct *image_header;
{
   char   buffer[100];
   int	  bytes_written,
	  closed,
	  file_descriptor,
	  i,
	  j,
	  k,
	  not_finished;

   /*file_descriptor = my_open(file_name);*/





   printf("\nhellow from write tiff header");



}  /* ends write_tiff_header */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -