TIFFOpen总是在ios中返回NULL

时间:2012-02-13 15:01:44

标签: ios ipad tiff libtiff

我正在尝试使用Libtiff创建TIFF图像。我无法弄清楚无法打开文件的原因。任何人都有任何想法??

TIFF *image;
// Open the TIFF file
if((image = TIFFOpen("output.tif", "w")) == NULL){
    printf("Could not open output.tif for writing\n");
}

编辑1

#include <stdio.h>
#include <tiffio.h>

int main(int argc, char *argv[]){
// Define an image
char buffer[25 * 144] = { /* boring hex omitted */ };
TIFF *image;

// Open the TIFF file
if((image = TIFFOpen("output.tif", "w")) == NULL){
  printf("Could not open output.tif for writing\n");
exit(42);
}

// We need to set some values for basic tags before we can add any data
TIFFSetField(image, TIFFTAG_IMAGEWIDTH, 25 * 8);
TIFFSetField(image, TIFFTAG_IMAGELENGTH, 144);
TIFFSetField(image, TIFFTAG_BITSPERSAMPLE, 1);
TIFFSetField(image, TIFFTAG_SAMPLESPERPIXEL, 1);
TIFFSetField(image, TIFFTAG_ROWSPERSTRIP, 144);

TIFFSetField(image, TIFFTAG_COMPRESSION, COMPRESSION_CCITTFAX4);
TIFFSetField(image, TIFFTAG_PHOTOMETRIC, PHOTOMETRIC_MINISWHITE);
TIFFSetField(image, TIFFTAG_FILLORDER, FILLORDER_MSB2LSB);
TIFFSetField(image, TIFFTAG_PLANARCONFIG, PLANARCONFIG_CONTIG);

TIFFSetField(image, TIFFTAG_XRESOLUTION, 150.0);
TIFFSetField(image, TIFFTAG_YRESOLUTION, 150.0);
TIFFSetField(image, TIFFTAG_RESOLUTIONUNIT, RESUNIT_INCH);

// Write the information to the file
TIFFWriteEncodedStrip(image, 0, buffer, 25 * 144);

// Close the file
TIFFClose(image);
}

任何帮助将不胜感激。 感谢

3 个答案:

答案 0 :(得分:1)

您需要文件的完整路径。文件通常写入应用程序文档目录。

以下是如何获取名为output.tif的文件的Documents目录路径,包括获取“c”字符串表示形式:

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *filePath = [documentsDirectory stringByAppendingPathComponent:@"output.tif"];
const char* cPath = [filePath cStringUsingEncoding:NSMacOSRomanStringEncoding];

NSLog(@“cPath%s”,cPath); NSLog输出:

cPath /Volumes/User/dgrassi/Library/Application Support/iPhone Simulator/5.0/Applications/D483A43F-E8DD-4C80-81CF-E2F0CDF3EF49/Documents/output.tif

答案 1 :(得分:1)

您需要一个完整的路径来访问受限制的iOS文件系统上的文件。您只能读取和写入应用程序私人目录中的文件。每个应用程序在文件系统中都有一个唯一的区域。应用程序的目录名称是一长串字母和数字,可以使用getenv()进行查询。这是C版本:

TIFF *image;
char szFileName[512];

   strcpy(szFileName, getenv("HOME"));
   strcat(szFileName, "/Documents/");
   strcat(szFileName, "output.tif");
   // Open the TIFF file
   if((image = TIFFOpen(szFileName, "w")) == NULL)
   {
      printf("Could not open output.tif for writing\n");
   }

更新:由于此方法可能存在一些长期兼容性问题,另一个选项是使用argv [0](可执行文件的完整路径)并修剪叶名称并修改它指向Documents目录。

答案 2 :(得分:-1)

const reader = new FileReader();
const imageType = 'your image type'
if ( imageType.toLowerCase()==='image/tiff' || imageType.toLowerCase()==='image/tif')
{
reader.readAsArrayBuffer(file);
}
else {
reader.readAsDataURL(file);
}