Index: src_plugins/export_fidocadj/fidocadj.c =================================================================== --- src_plugins/export_fidocadj/fidocadj.c (revision 6849) +++ src_plugins/export_fidocadj/fidocadj.c (revision 6850) @@ -182,7 +182,23 @@ } PCB_END_LOOP; + PCB_TEXT_LOOP(ly) { + char *s; + fprintf(f, "TY %ld %ld %ld %ld %x 0 %d * ", + crd(text->X), crd(text->X), + crd(text->BoundingBox.X2 - text->BoundingBox.X1), crd(text->BoundingBox.Y2 - text->BoundingBox.Y1), + text->Direction * 360 / 4, fidoly); + for(s = text->TextString; *s != '\0'; s++) { + if (*s == ' ') + fprintf(f, "++"); + else + fputc(*s, f); + } + fputc('\n', f); + } + PCB_END_LOOP; + } fclose(f); }