Home
last modified time | relevance | path

Searched refs:pdfstr (Results 1 – 1 of 1) sorted by relevance

/libtiff-4.0.7/tools/
H A Dtiff2pdf.c3913 tsize_t t2p_write_pdf_string(char* pdfstr, TIFF* output) in t2p_write_pdf_string() argument
3920 len = strlen(pdfstr); in t2p_write_pdf_string()
3923 if((pdfstr[i]&0x80) || (pdfstr[i]==127) || (pdfstr[i]<32)){ in t2p_write_pdf_string()
3924 snprintf(buffer, sizeof(buffer), "\\%.3o", ((unsigned char)pdfstr[i])); in t2p_write_pdf_string()
3927 switch (pdfstr[i]){ in t2p_write_pdf_string()
3953 written += t2pWriteFile(output, (tdata_t) &pdfstr[i], 1); in t2p_write_pdf_string()