1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961
|
/********************************************************************************/
/* */
/* Papyrus 3 library. */
/* This library constitutes a DICOM file system which helps reading and writing */
/* DICOM files and DICOMDIR files. */
/* */
/* Copyright (C) 2004 - Service of Medical Informatics - */
/* University Hospitals of Geneva (HUG), Geneva, Switzerland */
/* */
/* This library is a free software; you can redistribute it and/or modify it */
/* under the terms of the GNU Lesser General Public License as published by the */
/* Free Software Foundation; either version 2.1 of the License, or */
/* (at your option) any later version. */
/* */
/* This library is distributed in the hope that it will be useful, */
/* but WITHOUT ANY WARRANTY; without even the implied warranty of */
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. */
/* See the GNU Lesser General Public License for more details. */
/* */
/* You should have received a copy of the GNU Lesser General Public License */
/* along with this library; if not, write to */
/* the Free Software Foundation, Inc., */
/* 59 Temple Place, Suite 330, */
/* Boston, MA 02111-1307 USA */
/* */
/* You can contact us for more information at osiris@sim.hcuge.ch */
/* or by writing to Papyrus, */
/* Unite d'Imagerie Numerique / Service d'Informatique Medicale / HUG, */
/* 24, Micheli-du-Crest street, 1211 Geneva 14, Switzerland. */
/* */
/* The University Hopitals of Geneva, hereby disclaims all copyright interest */
/* in the library `Papyrus' (a library for reading and writing DICOM files). */
/* */
/* Geneva, april 2004 */
/* Antoine Geissbuhler, head of the Service of Medical Informatics, */
/* University Hospitals of Geneva, Switzerland */
/* */
/********************************************************************************/
/********************************************************************************/
/* */
/* Project : P A P Y R U S Toolkit */
/* File : PapyWrite3.c */
/* Function : contains all the writing stuff */
/* Authors : Matthieu Funk */
/* Christian Girard */
/* Jean-Francois Vurlod */
/* Marianne Logean */
/* */
/* History : 12.1990 version 1.0 */
/* 04.1991 version 1.1 */
/* 12.1991 version 1.2 */
/* 06.1993 version 2.0 */
/* 06.1994 version 3.0 */
/* 06.1995 version 3.1 */
/* 02.1996 version 3.3 */
/* 02.1999 version 3.6 */
/* 04.2001 version 3.7 */
/* 09.2001 version 3.7 on CVS */
/* 10.2001 version 3.71 MAJ Dicom par CHG */
/* */
/********************************************************************************/
#ifdef Mac
#pragma segment papy3
#endif
/* ------------------------- includes -----------------------------------------*/
#include <stdio.h>
#include <string.h>
#include <fcntl.h> /* open */
#ifndef Papyrus3H
#include "Papyrus3.h"
#endif
#include "JPEGLESS.H" /* interface for JPEG lossless decompressor */
#include "JPEGLIB.H" /* interface for JPEG lossy decompressor */
#ifdef MAYO_WAVE
#include "Mayo.h" /* interface for MAYO/SPIHT wavelet compression */
#define TO_SWAP_MAYO
#endif
/********************************************************************************/
/* */
/* Put2Bytes : puts a 2-Bytes value (USS, SS or AT) in the write buffer. */
/* */
/********************************************************************************/
void
Put2Bytes (PapyUShort inS, unsigned char *ioBufP, PapyULong *ioPosP)
/*unsigned short inS; the value to put */
/*unsigned char *ioBufP; the buffer to write to */
/*unsigned long *ioPosP; the current position in the buffer */
{
PapyUChar *theCharP;
theCharP = ioBufP;
theCharP += *ioPosP;
*ioPosP += 2;
/* put the element according to the little-endian transfert syntax */
*theCharP = (unsigned char) inS;
*(theCharP + 1) = (unsigned char) (inS >> 8);
} /* endof Put2Bytes */
/********************************************************************************/
/* */
/* Put4Bytes : puts a 4-Byte value (UL, SL or FL) in the write buffer. */
/* */
/********************************************************************************/
void
Put4Bytes (PapyULong inLong, unsigned char *ioBufP, PapyULong *ioPosP)
/*PapyULong inLong; the value to put */
/*unsigned char *ioBufP; the buffer to write to */
/*PapyULong *ioPosP; the current position in the buffer */
{
PapyUChar *theCharP;
theCharP = ioBufP;
theCharP += *ioPosP;
*ioPosP += 4;
/* put the element according to the little endian syntax */
*theCharP = (unsigned char) inLong;
*(theCharP + 1) = (unsigned char) (inLong >> 8);
*(theCharP + 2) = (unsigned char) (inLong >> 16);
*(theCharP + 3) = (unsigned char) (inLong >> 24);
} /* endof Put4Bytes */
/********************************************************************************/
/* */
/* Put8Bytes : puts a 8-Byte value (FD) in the write buffer. */
/* */
/********************************************************************************/
void
Put8Bytes (PapyFloatDouble inFlDbl, unsigned char *ioBufP, PapyULong *ioPosP)
/*PapyFloatDouble inFlDbl; the value to put */
/*unsigned char *ioBufP; the buffer to write to */
/*PapyULong *ioPosP; the current position in the buffer */
{
unsigned char *theCharDoubleP;
PapyUChar *theCharP;
PapyShort i;
theCharDoubleP = (unsigned char *) &inFlDbl;
theCharP = ioBufP;
theCharP += *ioPosP;
*ioPosP += 8;
/* loop on the bytes of the float double to code it */
for (i = 0; i < 4; i++)
{
*theCharP = * theCharDoubleP;
*(theCharP + 1) = *(theCharDoubleP + 1);
theCharP += 2;
theCharDoubleP += 2;
} /* for */
} /* endof Put8Bytes */
/********************************************************************************/
/* */
/* PutString : puts a string in the write buffer */
/* */
/********************************************************************************/
void
PutString (char *inCharP, enum EV_R_T inVR, unsigned char *ioBufP, PapyULong *ioPosP)
/*char *inCharP; the value to put */
/*enum EV_R_T inVR; is it an ASCII text or an ASCII numeric ? */
/*unsigned char *ioBufP; the buffer to write to */
/*PapyULong *ioPosP; the current position in the buffer */
{
int theSize, i, theHasNull = FALSE;
PapyChar *theChP, *theCP, *theDupP;
theSize = (int) strlen (inCharP);
/* duplicate the string */
theChP = (char *) ecalloc3 ((PapyULong) (theSize + 2), (PapyULong) sizeof (char));
theChP = strcpy (theChP, inCharP);
/* if the string has not an even length it must be padded ... */
if ((theSize % 2) != 0)
/* ...either with a NULL char ... */
if (inVR == UI)
{
theChP [theSize] = 0x00;
strcat (theChP, "\0");
theHasNull = TRUE;
}
/* ... or with a single SPACE */
else theChP = strcat (theChP, " ");
/* put the char in the order of occurence (left to right) */
theCP = theChP;
theDupP = (PapyChar *) ioBufP;
theDupP += *ioPosP;
for (i = 0; i < (int) strlen (theChP); i++, theCP++, theDupP++)
*theDupP = *theCP;
(*ioPosP) += (PapyULong) strlen (theChP);
/* case of an odd UI string. Necessary as the NULL char is never taken into acount */
if (theHasNull)
{
(*ioPosP) ++;
*theDupP = 0x00;
}
/* free the allocated string */
efree3 ((void **) &theChP);
} /* endof PutString */
/********************************************************************************/
/* */
/* Put1ByteImage : puts a 1-Bytes image (OB) in the write buffer. */
/* */
/********************************************************************************/
void
Put1ByteImage (char *inImP, unsigned char *ioBufP, PapyULong *ioPosP, PapyULong inSize)
/*char *inImP; pointer to the image */
/*unsigned char *ioBufP; the buffer to write to */
/*PapyULong *ioPosP; the current position in the buffer */
/*PapyULong inSize; the size of the element to put */
{
PapyUChar *theUCharSP;
PapyUChar *theUCharBP;
PapyULong i;
/* position the pointer to its position in the destination buffer */
theUCharBP = ioBufP;
theUCharBP += (*ioPosP);
/* initialize the pointer to the image to copy */
theUCharSP = (PapyUChar *) inImP;
/* copy the elements to the buffer */
for (i = 0L; i < inSize; i++, theUCharBP++, theUCharSP++)
*theUCharBP = *theUCharSP;
/* move the pointer to the current position in the buffer */
*ioPosP += inSize;
} /* endof Put1ByteImage */
/********************************************************************************/
/* */
/* Put2BytesImage : puts a 2-Bytes image (OW) in the write buffer. */
/* */
/********************************************************************************/
void
Put2BytesImage (PapyUShort *inImP, PapyUChar *ioBufP, PapyULong *ioPosP, PapyULong inSize)
/*PapyUShort *inImP; pointer to the image */
/*unsigned char *ioBufP; the buffer to write to */
/*PapyULong *ioPosP; the current position in the buffer */
/*PapyULong inSize; the size in bytes of the element to put */
{
PapyUShort *theUShortP;
PapyULong theNbOfShort, i;
PapyUChar *theUCharP;
/* position the pointer to its position in the destination buffer */
theUCharP = ioBufP;
theUCharP += *ioPosP;
/* copy the elements to the buffer */
theNbOfShort = inSize / 2;
for (i = 0L, theUShortP = inImP; i < theNbOfShort; theUShortP++, i++)
{
*theUCharP = (unsigned char) *theUShortP;
*(theUCharP + 1) = (unsigned char) ((*theUShortP) >> 8);
/* increment */
theUCharP += 2;
} /* for */
/* move the pointer to the current position in the buffer */
*ioPosP += inSize;
} /* endof Put2BytesImage */
/********************************************************************************/
/* */
/* PutValue : puts a value in the write buffer */
/* */
/********************************************************************************/
void
PutValue (UValue_T *inValP, enum EV_R_T inVR, unsigned char *ioBufP, PapyULong *ioPosP)
/*UValue_T *inValP; the value to put */
/*enum EV_R_T inVR; ASCII text or ASCII numeric ? */
/*unsigned char *ioBufP; the buffer to write to */
/*PapyULong *ioPosP; the position in the write buffer */
{
switch (inVR)
{
case SS :
Put2Bytes (inValP->ss, ioBufP, ioPosP);
break;
case USS :
case AT :
Put2Bytes (inValP->us, ioBufP, ioPosP);
break;
case SL :
Put4Bytes (inValP->sl, ioBufP, ioPosP);
break;
case UL :
Put4Bytes (inValP->ul, ioBufP, ioPosP);
break;
case FL :
Put4Bytes ((PapyULong) inValP->fl, ioBufP, ioPosP);
break;
case FD :
Put8Bytes (inValP->fd, ioBufP, ioPosP);
break;
case AE :
case AS :
case CS :
case DA :
case DS :
case DT :
case IS :
case LO :
case LT :
case PN :
case SH :
case ST :
case TM :
case UI :
case UT :
PutString (inValP->a, inVR, ioBufP, ioPosP);
break;
case SQ :
break;
default : /* values of type OB & OW must be put using Put1/2Byte(s)Image */
break;
} /* switch ...value representation */
} /* endof PutValue */
/********************************************************************************/
/* */
/* Write_File : , */
/* */
/* return : return 0 if no problem */
/* standard error message otherwise */
/* */
/********************************************************************************/
PapyShort
WriteFile (j_compress_ptr inCinfo, PapyULong inDataCount, PAPY_FILE inFp,
PapyUChar *outJpegDP, int inSaveJpeg)
{
my_dest_ptr dest = (my_dest_ptr) inCinfo->dest;
inFp = inFp; /* no comment */
if (inSaveJpeg)
if (Papy3FWrite (inFp, (PapyULong *) &inDataCount, 1L, (void *) dest->buffer) != 0)
return (-1);
memcpy (outJpegDP, dest->buffer, inDataCount);
return (1);
} /* endof WriteFile */
/********************************************************************************/
/* */
/* JPEGLossyEncodeImage : */
/* */
/* return : return 0 if no problem */
/* standard error message otherwise */
/* */
/********************************************************************************/
PapyShort
JPEGLossyEncodeImage (PapyShort inFileNb, int inQuality, PapyUChar *outJpegFilename, PapyUChar *inImageBuffP, PapyUChar **outJPEGDataP,
PapyULong *outJPEGsizeP,int inImageHeight, int inImageWidth, int inDepth, int inSaveJpeg)
{
struct jpeg_compress_struct theCInfo;
struct jpeg_error_mgr theJerr;
PAPY_FILE theFp = NULL;
/* #ifdef SAVE_JPEG */
void *theFSSpecP;
PAPY_FILE theVRefNum;
char theFilename [512];
/* #endif */
JSAMPROW theRowPointer [1]; /* pointer to JSAMPLE row[s] */
int theRowStride; /* physical row width in image buffer */
unsigned int j;
PapyULong theDataCount;
PapyUChar *theJPEGBuffP;
PapyUShort *theImBuffP;
/* Temporary routine for Compression evaluation (DAB) */
#ifdef SAVE_RAW
PAPY_FILE theFps;
void *theFSSpecsP;
PAPY_FILE theVRefNums;
char theFilenames [20];
long theSizer;
PapyUChar *theValTempP, *theFinalValP, *theFinaleValP;
PapyUChar theHigh, theLow;
int is, js;
strcpy((char *) theFilenames, "data.raw");
theFSSpecsP = NULL;
theValTempP = (PapyUChar *) inImageBuffP;
theFinalValP = (PapyUChar *) inImageBuffP;
theFinaleValP = (PapyUChar *) inImageBuffP;
#ifdef TO_SWAP
if (inDepth == 16)
{
for (js = 0; js < inImageHeight; js++)
{
for (is = 0; is < inImageWidth; is++)
{
theLow = *theValTempP;
theValTempP++;
theHigh = *theValTempP;
theValTempP++;
*theFinalValP = theHigh;
theFinalValP++;
*theFinalValP = theLow;
theFinalValP++;
} /* for ...is */
} /* for ...js */
} /* if ... depth = 16 */
#endif /* TO_SWAP */
if (Papy3FCreate ((char *) theFilenames, theVRefNums, &theFps, &theFSSpecsP) != 0)
RETURN (papFileCreationFailed);
if (Papy3FOpen ((char *) theFilenames, 'w', theVRefNums, &theFps, &theFSSpecsP) != 0)
RETURN (papOpenFile);
if (inDepth == 16)
theSizer = (long) (inImageWidth * inImageHeight * 2);
else
theSizer = (long) (inImageWidth * inImageHeight);
if (Papy3FWrite (theFps, (PapyULong *) &theSizer, 1L, (void *) theFinaleValP) != 0)
RETURN (papWriteFile);
Papy3FClose (&theFps);
#endif /* SAVE_RAW */
/* Step 1: allocate and initialize JPEG compression object */
theCInfo.err = jpeg_std_error (&theJerr);
jpeg_create_compress (&theCInfo);
/* Step 2: specify data destination (eg, a file) */
/* #ifdef SAVE_JPEG */
if (inSaveJpeg)
{
if (outJpegFilename == NULL)
strcpy ((char *) theFilename, "data.jpeg");
else
strcpy ((char *) theFilename, (const char *) outJpegFilename);
theFSSpecP = NULL;
if (Papy3FCreate ((char *) theFilename, theVRefNum, &theFp, &theFSSpecP) != 0)
RETURN (papFileCreationFailed);
if (Papy3FOpen ((char *) theFilename, 'w', theVRefNum, &theFp, &theFSSpecP) != 0)
RETURN (papOpenFile);
} /* endif */
/* #endif */
jpeg_stdio_dest ((j_compress_ptr) &theCInfo, (PAPY_FILE *) &theFp);
/* Step 3: set parameters for compression */
theCInfo.image_width = inImageWidth; /* image width and height, in pixels */
theCInfo.image_height = inImageHeight;
if (gArrPhotoInterpret [inFileNb] == MONOCHROME1 ||
gArrPhotoInterpret [inFileNb] == MONOCHROME2)
{
theCInfo.input_components = 1; /* # of color components per pixel */
theCInfo.in_color_space = JCS_GRAYSCALE; /* colorspace of input image */
}
if (gArrPhotoInterpret [inFileNb] == RGB)
{
theCInfo.input_components = 3; /* # of color components per pixel */
theCInfo.in_color_space = JCS_RGB;
/* theCInfo.out_color_space = JCS_YCbCr; */
}
jpeg_set_defaults ((j_compress_ptr) &theCInfo);
jpeg_set_quality (&theCInfo, inQuality, TRUE); /* limit to baseline-JPEG values */
/* Step 4: Start compressor */
jpeg_start_compress (&theCInfo, TRUE);
/* Step 5: while (scan lines remain to be written) */
if (inDepth == 16)
theImBuffP = (PapyUShort *) inImageBuffP;
theRowStride = inImageWidth * theCInfo.input_components;
j = 0;
while (j < theCInfo.image_height)
{
/* printf("next_scanline; %d", j); */
if (inDepth == 8)
theRowPointer [0] = (unsigned char *) (& inImageBuffP [j * theRowStride]);
else
theRowPointer [0] = (unsigned char *) (& theImBuffP [j * theRowStride]);
/*(void) jpeg_write_scanlines(&theCInfo, theRowPointer, 1); */
j += (int) jpeg_write_scanlines (&theCInfo, theRowPointer, 1);
} /* while */
/* Step 6: Finish compression */
jpeg_finish_compress (&theCInfo);
/* Step 5b: Fill JPEG Buffer */
theDataCount = (PapyULong) ((inImageWidth * inImageHeight) -
theCInfo.dest->free_in_buffer + 5);
theJPEGBuffP = (PapyUChar *) ecalloc3 ((PapyULong) theDataCount, (PapyULong) sizeof (PapyUChar));
WriteFile (&theCInfo, theDataCount, (PAPY_FILE) theFp, (PapyUChar *) theJPEGBuffP, inSaveJpeg);
*outJPEGDataP = (PapyUChar *) theJPEGBuffP;
*outJPEGsizeP = theDataCount;
/* #ifdef SAVE_JPEG */
if (inSaveJpeg)
Papy3FClose (&theFp);
/* #endif */
/* We can use jpeg_abort to release memory and reset global_state */
jpeg_abort( (j_common_ptr) &theCInfo);
/* Step 7: release JPEG compression object */
jpeg_destroy_compress (&theCInfo);
return (0);
} /* endof JPEGLossyEncodeImage */
/********************************************************************************/
/* */
/* WaveletEncodeImage : , */
/* */
/* return : return 0 if no problem */
/* standard error message otherwise */
/* */
/********************************************************************************/
#ifdef MAYO_WAVE
PapyShort
WaveletEncodeImage (int inRatio, int inLevels, PapyUChar *inImageBuffP, PapyUChar **outWavDataP,
PapyULong *outWavsizeP, int inHeight, int inWidth, int inDepth, enum EModality inModality )
{
MayoCompressedImage *theCompressedP;
MayoRawImage theRaw;
int theBytes, j, i;
int theOptions;
PapyUChar *theDataP;
PapyULong theTotalSize, thePos;
int theVersion;
int theLength;
PapyUChar *theValTempP, *theFinalValP;
PapyUChar theHigh, theLow;
if (inDepth == 8)
theBytes = 1;
else
theBytes = 2;
/* Set up options */
theOptions = 0;
theOptions |= MAYO_OPT_HVS ; /* Use Human Visualization optimizations */
/* theOptions |= MAYO_OPT_BIN ; */ /* Use Binary encoding */
theOptions |= MAYO_OPT_WTYPE153 ; /* Use wavelet type 153 for compression */
if (inModality == CT_IM) theOptions |= MAYO_OPT_CT; /* Use CT image optimizations */
/* Set up compression ratios according to the modality */
inRatio = 40;
if (inModality == CR_IM || inModality == SEC_CAPT_IM) inRatio = 40;
if (inModality == CT_IM || inModality == MR_IM) inRatio = 20;
if (inModality == US_IM || inModality == NM_IM) inRatio = 15;
/* Set up the number of levels: 1 to 5
* a higher value results in better quality,
* a lower value results in faster compression
*/
inLevels = 5;
/* Set up the MayoRawImage structure */
theRaw.bytesperpixel = theBytes ;
theRaw.xsize = inWidth ;
theRaw.ysize = inHeight ;
theRaw.buf = inImageBuffP ;
/* Swap bytes if it is a 16-bit image*/
#ifdef TO_SWAP_MAYO
theValTempP = (PapyUChar *) inImageBuffP;
theFinalValP = (PapyUChar *) inImageBuffP;
if (inDepth == 16)
{
for (j = 0; j < inHeight; j++)
{
for (i = 0; i < inWidth; i++)
{
theLow = *theValTempP;
theValTempP++;
theHigh = *theValTempP;
theValTempP++;
*theFinalValP = theHigh;
theFinalValP++;
*theFinalValP = theLow;
theFinalValP++;
} /* for ...i */
} /* for ...j */
} /* if ...depth = 16 */
#endif
/* Call the Compress function */
theCompressedP = MayoCompressRaw (&theRaw, inRatio, theOptions, inLevels);
/* Fill Wav Buffer */
/* *outWavDataP = (PapyUChar *) theCompressedP->buf; */
/* *outWavsizeP = theCompressedP->length; */
/*theTotalSize = theCompressedP->length + 2*sizeof(int);*/
theTotalSize = theCompressedP->length + 8L;
theDataP = (PapyUChar *) emalloc3(theTotalSize);
*outWavDataP = (PapyUChar *) theDataP;
*outWavsizeP = theTotalSize;
theLength = theCompressedP->length;
theVersion = theCompressedP->version;
thePos = 0L;
Put4Bytes ((PapyULong) theLength, theDataP, &thePos);
Put4Bytes ((PapyULong) theVersion, theDataP, &thePos);
theDataP += thePos;
memcpy (theDataP, theCompressedP->buf, theCompressedP->length);
efree3 ((void **) &(theCompressedP->buf));
efree3 ((void **) &theCompressedP);
return (0);
} /* endof waveletEncodeImage */
#endif
/********************************************************************************/
/* */
/* Papy3PutElement : writes the value(s) of an element to the given group, */
/* module or record. */
/* return : return 0 if no problem */
/* standard error message otherwise */
/* */
/********************************************************************************/
PapyShort CALLINGCONV
Papy3PutElement (SElement *inGrOrModP, int inElement, void *inValP)
/*SElement *inGrOrModP; the group or module ID */
/*PapyShort inElement; the element number */
/*void *inValP; the value(s) to write on the file */
{
SElement *theElemP;
UValue_T *theValP;
int theErr;
/* goto the specified element */
theElemP = inGrOrModP + inElement;
/* allocate room for the value to put */
if (strcmp (theElemP->vm, "1") == 0) /* Single Value */
{
if ((theErr = Papy3ClearElement (inGrOrModP, inElement, TRUE)) < 0) RETURN (theErr);
theElemP->nb_val = 1L;
theValP = (UValue_T *) emalloc3 ((PapyULong) sizeof (UValue_T));
} /* then */
else /* Multiple Values */
{
theElemP->nb_val++;
if (theElemP->nb_val == 1L)
theValP = (UValue_T *) emalloc3 ((PapyULong) sizeof (UValue_T));
else
theValP = (UValue_T *) erealloc3 (theElemP->value,
(PapyULong) (sizeof (UValue_T) * theElemP->nb_val),
(PapyULong) (sizeof (UValue_T) * (theElemP->nb_val - 1L))); /* OLB */
} /* else ...multiple value */
theElemP->value = theValP;
/* goto the place of the value to put */
theValP = (theElemP->value + theElemP->nb_val - 1L);
switch (theElemP->vr)
{
case OB :
case OW :
case UN :
/* the elements of this type must be put using PapyPutImage for OB, OW */
/* or Papy3PutUnknown for UN */
RETURN (papElemNumber);
break;
case SS :
theValP->ss = *(PapyShort *) inValP;
break;
case USS :
case AT :
theValP->us = *(PapyUShort *) inValP;
break;
case SL :
theValP->sl = *(PapyLong *) inValP;
break;
case UL :
theValP->ul = *(PapyULong *) inValP;
break;
case FL :
theValP->fl = *(PapyFloat *) inValP;
break;
case FD :
theValP->fd = *(PapyFloatDouble *) inValP;
break;
case AE :
case AS :
case CS :
case DA :
case DS :
case DT :
case IS :
case LO :
case LT :
case PN :
case SH :
case ST :
case TM :
case UI :
case UT :
theValP->a = PapyStrDup (*((char**) inValP));
break;
case SQ :
theValP->sq = *(struct SPapy_List_ **) inValP;
break;
case RET :
/* RETired element */
default :
break;
} /* switch */
RETURN (papNoError);
} /* endof Papy3PutElement */
/********************************************************************************/
/* */
/* Papy3PutIcon : Put an icon for a given image number. This function */
/* must only be used when putting a compressed image in the file. */
/* return : return 0 if no problem */
/* standard error message otherwise */
/* */
/********************************************************************************/
PapyShort CALLINGCONV
Papy3PutIcon (PapyShort inFileNb, PapyShort inImageNb, PapyUChar *inIconP)
{
/**((gArrIcons [inFileNb]) + inImageNb - 1) = inIconP;*/
gArrIcons [inFileNb] [inImageNb - 1] = inIconP;
RETURN (papNoError);
} /* endof Papy3PutIcon */
/********************************************************************************/
/* */
/* Papy3PutImage : writes the value(s) of an element of type OB or OW to */
/* the given group or module (pixel data or curve elements). */
/* return : return 0 if no problem */
/* standard error message otherwise */
/* */
/********************************************************************************/
PapyShort CALLINGCONV
Papy3PutImage (PapyShort inFileNb, SElement *inGrOrModP, int inElement, PapyUShort *inValP,
PapyUShort inRows, PapyUShort inColumns, PapyUShort inDepth, PapyULong inSize)
{
SElement *theElemP;
int theErr;
enum EV_R_T theVR;
PapyUChar *theCompPixP;
#ifdef WRITE_RAW_FILE /* Temporary stuffs for compression evaluation. DAB */
PAPY_FILE theFp;
void *theFSSpecP;
PAPY_FILE theVRefNum;
char theFilename[20];
long theSizer;
PapyUChar *theValTempP, *theFinalValP, *theFinaleValP;
PapyUChar theHigh, theLow;
int i, j;
#endif
theElemP = inGrOrModP + inElement;
if ((theErr = Papy3ClearElement (inGrOrModP, inElement, TRUE)) < 0) RETURN (theErr);
/* these pixel datas have to be compressed using the JPEG lossless algorithm */
if (theElemP->group == 0x7FE0 && theElemP->element == 0x0010 &&
(gArrCompression [inFileNb] == JPEG_LOSSLESS || gArrCompression [inFileNb] == JPEG_LOSSY
#ifdef MAYO_WAVE
|| gArrCompression [inFileNb] == MAYO_WAVELET
#endif
) && inSize == 0L)
{
/* compressed images have a Value Representation of OB */
theVR = OB;
#ifdef WRITE_RAW_FILE /* Temporary stuffs for compression evaluation. DAB */
#ifdef SWAP_DATA
/* That's time to write file! At first, swapped raw */
strcpy((char *) theFilename, "TheFileSwap.raw");
theFSSpecP = NULL;
theValTempP = (PapyUChar *) inValP;
theFinalValP = (PapyUChar *) inValP;
theFinaleValP = (PapyUChar *) inValP;
for (j = 0; j < inRows; j++)
{
for (i = 0; i < inColumns; i++)
{
theLow = *theValTempP;
theValTempP++;
theHigh = *theValTempP;
theValTempP++;
*theFinalValP = theHigh;
theFinalValP++;
*theFinalValP = theLow;
theFinalValP++;
} /* for ...i */
} /* for ...j */
if (Papy3FCreate ((char *) theFilename, theVRefNum, &theFp, &theFSSpecP) != 0)
RETURN (papFileCreationFailed);
if (Papy3FOpen ((char *) theFilename, 'w', theVRefNum, &theFp, &theFSSpecP) != 0)
RETURN (papOpenFile);
theSizer = (long) (inRows * inColumns * 2);
if (Papy3FWrite (theFp, (PapyULong *) &theSizer, 1L, (void *) theFinaleValP) != 0)
RETURN (papWriteFile);
Papy3FClose (&theFp);
#endif /* SWAP_DATA */
#ifdef RAW_DATA
/* That's all folks for swapped raw. Let's do the raw data now! */
strcpy((char *) theFilename, "TheFile.raw");
theFSSpecP = NULL;
theValTempP = (PapyUChar *) inValP;
theFinalValP = (PapyUChar *) inValP;
theFinaleValP = (PapyUChar *) inValP;
for (j = 0; j < inRows; j++)
{
for (i = 0; i < inColumns; i++)
{
theLow = *theValTempP;
theValTempP++;
theHigh = *theValTempP;
theValTempP++;
*theFinalValP = theHigh;
theFinalValP++;
*theFinalValP = theLow;
theFinalValP++;
} /* for ...i */
} /* for ...j */
if (Papy3FCreate ((char *) theFilename, theVRefNum, &theFp, &theFSSpecP) != 0)
RETURN (papFileCreationFailed);
if (Papy3FOpen ((char *) theFilename, 'w', theVRefNum, &theFp, &theFSSpecP) != 0)
RETURN (papOpenFile);
theSizer = (long) (inRows * inColumns * 2);
if (Papy3FWrite (theFp, (PapyULong *) &theSizer, 1L, (void *) theFinaleValP) != 0)
RETURN (papWriteFile);
Papy3FClose (&theFp);
#endif /* RAW_DATA*/
#endif /* WRITE_RAW_FILE */
/* call here the compression function */
if (gArrCompression [inFileNb] == JPEG_LOSSY)
JPEGLossyEncodeImage (inFileNb, 80, NULL, (PapyUChar *) inValP, (PapyUChar **) &theCompPixP,
(PapyULong *) &inSize, (int) inRows, (int) inColumns, (int) inDepth, FALSE);
else if (gArrCompression [inFileNb] == JPEG_LOSSLESS)
JPEGLosslessEncodeImage ((PapyUShort *) inValP, (PapyUChar **) &theCompPixP,
(PapyULong *) &inSize, (int) inColumns, (int) inRows, (int) inDepth);
#ifdef MAYO_WAVE
else if (gArrCompression [inFileNb] == MAYO_WAVELET)
if (WaveletEncodeImage (10, 5, (PapyUChar *) inValP, (PapyUChar **) &theCompPixP,
(PapyULong *) &inSize,(int) inRows, (int) inColumns, (int) inDepth,
(enum EModality) gFileModality[inFileNb] ) != 0)
return (-1);
#endif /* MAYO_WAVE */
inValP = (PapyUShort *) theCompPixP;
} /* if ...compression algorithm is JPEG lossless */
/* else there is no compression to apply to the pixel datas */
else
{
/* compressed images have a Value Representation of OB */
if ((theElemP->group == 0x7FE0 && theElemP->element == 0x0010 &&
(gArrCompression [inFileNb] == JPEG_LOSSLESS ||
gArrCompression [inFileNb] == JPEG_LOSSY
#ifdef MAYO_WAVE
|| gArrCompression [inFileNb] == MAYO_WAVELET
#endif
)) || theElemP->group == 0x0002)
theVR = OB;
/* uncompressed elements have a value representation of OW */
else
{
theVR = OW;
/* this is important for further encoding */
if (gx0028BitsAllocated [inFileNb] == 0)
gx0028BitsAllocated [inFileNb] = inDepth;
} /* else ..uncompressed image */
/* computes the size of the image if necessary (this is usefull to let people */
/* send a compressed image to this routine) */
if (inSize == 0L)
{
inSize = (PapyULong) (inRows * inColumns);
inSize *= (PapyULong) (inDepth / 8);
} /* if */
} /* else ...no compression */
theElemP->nb_val = 1L;
theElemP->vr = theVR;
theElemP->length = inSize;
theElemP->value = (UValue_T *) emalloc3 ((PapyULong) sizeof (UValue_T));
if (theElemP->vr == OB)
theElemP->value->a = (char *) inValP;
else
theElemP->value->ow = inValP;
RETURN (papNoError);
} /* endof Papy3PutImage */
/********************************************************************************/
/* */
/* Papy3PutUnknown : writes the value(s) of an element of type UN to */
/* the given group or module (pixel data or curve elements). */
/* return : return 0 if no problem */
/* standard error message otherwise */
/* */
/********************************************************************************/
PapyShort CALLINGCONV
Papy3PutUnknown (SElement *inGrOrModP, int inElement, PapyChar *inValP,
PapyULong inSize)
{
SElement *theElemP;
int theErr;
PapyULong theLoop;
theElemP = inGrOrModP + inElement;
if ((theErr = Papy3ClearElement (inGrOrModP, inElement, TRUE)) < 0) RETURN (theErr);
theElemP->nb_val = 1L;
theElemP->vr = UN;
theElemP->length = inSize;
theElemP->value = (UValue_T *) emalloc3 ((PapyULong) sizeof (UValue_T));
/* allocate room for the value */
theElemP->value->a = (char *) ecalloc3 ((PapyULong) (inSize), (PapyULong) sizeof (char));
/* copy the value to the element */
for (theLoop = 0L; theLoop < inSize; theLoop++)
{
theElemP->value->a [theLoop] = inValP [theLoop];
} /* for */
RETURN (papNoError);
} /* endof Papy3PutUnknown */
/********************************************************************************/
/* */
/* ComputeElementLength3 : computes the size of a given element. */
/* return : the size of the element */
/* */
/********************************************************************************/
PapyULong
ComputeElementLength3 (SElement *inElemP, PapyULong inPos, enum ETransf_Syntax inSyntax)
/*SElement *inElemP; the element */
/*unsigned long inPos; which element ? (multiple value text) */
{
PapyULong theSize = 0L;
Item *theWrkP;
SElement *theTmpElemP;
theTmpElemP = inElemP;
switch (theTmpElemP->vr)
{
case AT :
case USS :
case SS :
theSize = 2L;
break;
case UL :
case SL :
theSize = 4L;
break;
case FL :
theSize = 4L;
break;
case FD :
theSize = 8L;
break;
case AE :
case AS :
case CS :
case DA :
case DS :
case DT :
case IS :
case LO :
case LT :
case PN :
case SH :
case ST :
case TM :
case UI :
case UT :
if ((theTmpElemP->value + inPos)->a != NULL)
theSize = strlen ((theTmpElemP->value + inPos)->a);
break;
case UN :
/* unknown element */
theSize = theTmpElemP->length;
break;
case OB :
/* is it a compressed pixel data element */
if (theTmpElemP->group == 0x7FE0 && theTmpElemP->element == 0x0010)
/* add the lenght of the item delimiters */
theSize += 24;
case OW :
/* for these elements the size is given when they are put */
theSize += theTmpElemP->length;
break;
case SQ :
/* if image sequence => inElemP length = size of the tmp files */
if (theTmpElemP->group == 0x0041 &&
theTmpElemP->element == Papy3EnumToElemNb (theTmpElemP, papImageSequenceGr))
{
theWrkP = (Item *) theTmpElemP->value->sq;
while (theWrkP != NULL)
{ /* 8 is for the item delimiter */
theSize += theWrkP->object->tmpFileLength + 8L;
theWrkP = theWrkP->next;
} /* while ...loop on the tmp files */
} /* if ...inElemP = image sequence */
else theSize = ComputeSequenceLength3 (theTmpElemP->value->sq, inSyntax);
break;
default :
theSize = 0;
break;
} /* switch ...inElemP->vr */
RETURN (theSize);
} /* endof ComputeElementLength3 */
/********************************************************************************/
/* */
/* ComputeGroupLength3 : computes the size of the given group. */
/* return : always return 0 */
/* */
/********************************************************************************/
PapyShort
ComputeGroupLength3 (PapyShort inGroupNb, SElement *ioGroupP, PapyULong *outImSeqSizeP,
enum ETransf_Syntax inSyntax)
/*int inGroupNb; the enum group number */
/*SElement *ioGroupP; pointer to the group */
{
SElement *theElemP;
PapyULong theSize, theTotalSize, i, j, theGrSize;
theTotalSize = 0L;
theSize = 0L;
theGrSize = gArrGroup [inGroupNb].size;
/* the first elem is group size so start the loop with i = 1 */
for (i = 1L, theElemP = ioGroupP + 1; i < theGrSize; i++, theElemP++)
{
/* no introduced value, so look for the type of the element */
if (theElemP->nb_val == 0L)
{
if (theElemP->type_t == T2) theSize = 0L;
else continue;
theSize += theSize & 1; /* increment if size is odd */
theTotalSize += theSize + 8L; /* group + element + length = 8 */
if (inSyntax == LITTLE_ENDIAN_EXPL && (theElemP->vr == OB || theElemP->vr == OW || theElemP->vr == SQ))
theTotalSize += 4L;
} /* if ...no introduced value */
else /* introduced value */
{
theSize = ComputeElementLength3 (theElemP, 0L, inSyntax);
for (j = 1L; j < theElemP->nb_val; j++)
{
theSize += ComputeElementLength3 (theElemP, j, inSyntax);
if ((theElemP->vr == AE) || (theElemP->vr == AS) || (theElemP->vr == CS) ||
(theElemP->vr == DA) || (theElemP->vr == DS) || (theElemP->vr == DT) ||
(theElemP->vr == IS) || (theElemP->vr == LO) || (theElemP->vr == LT) ||
(theElemP->vr == PN) || (theElemP->vr == SH) || (theElemP->vr == ST) ||
(theElemP->vr == TM) ||(theElemP->vr == UI))
theSize += 1L; /* the 1 is for the \ separator of mult val */
} /* for */
theSize += theSize & 1; /* increment if size is odd */
theTotalSize += theSize + 8L; /* 8L: grNb+elemNb+valueLength (implicit) */
/* if group 2 (explicit VR) & VR = OB or */
/* Little_Endian_Explicit & VR = OB, OW, SQ, UN or UT then add 4 to the total length */
if ((theElemP->group == 0x0002 && theElemP->vr == OB) ||
((inSyntax == LITTLE_ENDIAN_EXPL) &&
((theElemP->vr == OB) ||
(theElemP->vr == OW) ||
(theElemP->vr == SQ)||
(theElemP->vr == UN)||
(theElemP->vr == UT))))
theTotalSize += 4L;
/* if image sequence store the size of the element */
if (theElemP->group == 0x0041 &&
theElemP->element == Papy3EnumToElemNb (theElemP, papImageSequenceGr))
*outImSeqSizeP = theSize;
} /* else ...there is an introduced value */
/* if this is not a compressed pixel data element */
if (!(theElemP->group == 0x7FE0 && theElemP->element == 0x0010 && theElemP->vr == OB))
theElemP->length = theSize;
} /* for */
ioGroupP->nb_val = 1L;
ioGroupP->length = 4L;
ioGroupP->value = (UValue_T *) emalloc3 ((PapyULong) sizeof (UValue_T));
ioGroupP->value->ul = theTotalSize;
RETURN (papNoError)
} /* endof ComputeGroupLength3 */
/********************************************************************************/
/* */
/* ComputeSequenceLength3 : computes the size of the given sequence. */
/* return : the size of the element */
/* */
/********************************************************************************/
PapyULong
ComputeSequenceLength3 (Item *inSequenceP, enum ETransf_Syntax inSyntax)
{
PapyShort theEnumGrNb;
PapyULong theSeqSize = 0L;
Item *theItemListP, *theGrListP;
/* loop on the list of items of the sequence */
theItemListP = inSequenceP;
while (theItemListP != NULL)
{
/* loop on the list of groups of the item */
theGrListP = (Item *) theItemListP->object->item;
while (theGrListP != NULL)
{
if (theGrListP->object->whoAmI == papGroup)
{
theEnumGrNb = Papy3ToEnumGroup (theGrListP->object->group->group);
/* compute the size of the group */
ComputeGroupLength3 (theEnumGrNb, theGrListP->object->group, NULL, inSyntax);
/* kLength_length is the length of the group length element */
theSeqSize += theGrListP->object->group->value->ul + kLength_length;
}
else
theSeqSize += ComputeSequenceLength3 (theGrListP->object->item, inSyntax);
/* get next element of the list of groups */
theGrListP = theGrListP->next;
} /* while ...loop on the list of groups of the item */
/* add the size of the item delimiter */
theSeqSize += 8L;
/* go to the next item of the sequence */
theItemListP = theItemListP->next;
} /* while ...loop on the items of the sequence */
return theSeqSize;
} /* endof ComputeSequenceLength3 */
/********************************************************************************/
/* */
/* PutGroupInBuffer : put the elements of the given group in the buffer. */
/* return : standard error message. */
/* */
/********************************************************************************/
PapyShort
PutGroupInBuffer (PapyShort inFileNb, PapyShort inImNb, int inGroupNb, SElement *inGroupP,
unsigned char *ioBuffP, PapyULong *ioPosP, int inIsPtrSeq)
/*
inGroupP is the pointer to the group to write to the buffer
ioBuffP is the ready to write buffer
ioPosP is the current position in the buffer
*/
{
SElement *theElemP;
PapyShort theErr, theFuncImNb, theSavedImNb;
PapyUShort theUS, theSavedUINOverlayNb = 0x0000;
PapyULong i, j, theItemDelimPos, theItemLength, theUL, theNbOfElem, theFilePos, thePosition;
char *theStringP, theString [4];
Item *theItemSeqP, *theItemGrP;
int theRecordID;
PAPY_FILE theFp; /* the file pointer */
/* saves the pos of the item delimiter */
theItemDelimPos = *ioPosP - 8L;
theFp = gPapyFile [inFileNb];
/* useful for dicomdir and referenced offset */
Papy3FTell (theFp, (PapyLong *) &theFilePos);
/* side effect ? */
theFuncImNb = inImNb;
if (inGroupP->group == 0x6000) /* multiple Overlay group ? */
{
if (gCurrentOverlay [inFileNb] > kMax_overlay)
RETURN (papTooMuchOverlays)
else
{
for (i = 0, theElemP = inGroupP; i < gArrGroup [inGroupNb].size; i++, theElemP++)
theElemP->group = gCurrentOverlay [inFileNb];
gCurrentOverlay [inFileNb] += 2;
} /* else */
} /* if ...overlay group */
else if (inGroupP->group == 0x6001) /* multiple UINOverlay group ? */
{
if (gCurrentUINOverlay [inFileNb] > kMax_UIN_overlay)
RETURN (papTooMuchUINOverlays)
else
{
for (i = 0, theElemP = inGroupP; i < gArrGroup [inGroupNb].size; i++, theElemP++)
theElemP->group = gCurrentUINOverlay [inFileNb];
gCurrentUINOverlay [inFileNb] += 2;
} /* else */
} /* if ...UIN overlay group */
/* group 0x0004 is only needed by the DICOMDIR */
else if (gIsPapyFile [inFileNb] == DICOMDIR && inGroupP->group == 0x0004)
{
/* useful when setting the NextDirRecordOffset or the NextLowerLevelOffset */
theRecordID = Papy3GetRecordType (inGroupP);
} /* else ...group 0x0004 */
theNbOfElem = gArrGroup [inGroupNb].size;
/* loop on the elements of the group and put them in the buffer */
for (i = 0L, theElemP = inGroupP; i < theNbOfElem; i++, theElemP++)
{
/* there is an introduced value */
if (theElemP->nb_val > 0L || theElemP->type_t == T2)
{
Put2Bytes (theElemP->group , (unsigned char *) ioBuffP, ioPosP);
Put2Bytes (theElemP->element, (unsigned char *) ioBuffP, ioPosP);
/* LITTLE_ENDIAN_IMPLICIT VR and not group 2 */
if (gArrTransfSyntax [inFileNb] == LITTLE_ENDIAN_IMPL && theElemP->group != 0x0002)
Put4Bytes (theElemP->length , (unsigned char *) ioBuffP, ioPosP);
/* LITTLE_ENDIAN_EXPLICIT VR or group 2 */
else if (gArrTransfSyntax [inFileNb] == LITTLE_ENDIAN_EXPL || theElemP->group == 0x0002)
{
theStringP = (char *) &theString [0];
switch (theElemP->vr)
{
case AE : strcpy (theStringP, "AE"); break;
case AT : strcpy (theStringP, "AT"); break;
case AS : strcpy (theStringP, "AS"); break;
case CS : strcpy (theStringP, "CS"); break;
case DA : strcpy (theStringP, "DA"); break;
case DS : strcpy (theStringP, "DS"); break;
case DT : strcpy (theStringP, "DT"); break;
case FL : strcpy (theStringP, "FL"); break;
case FD : strcpy (theStringP, "FD"); break;
case IS : strcpy (theStringP, "IS"); break;
case LO : strcpy (theStringP, "LO"); break;
case LT : strcpy (theStringP, "LT"); break;
case OB : strcpy (theStringP, "OB"); break;
case OW : strcpy (theStringP, "OW"); break;
case PN : strcpy (theStringP, "PN"); break;
case SH : strcpy (theStringP, "SH"); break;
case SL : strcpy (theStringP, "SL"); break;
case SQ : strcpy (theStringP, "SQ"); break;
case SS : strcpy (theStringP, "SS"); break;
case ST : strcpy (theStringP, "ST"); break;
case TM : strcpy (theStringP, "TM"); break;
case UI : strcpy (theStringP, "UI"); break;
case UL : strcpy (theStringP, "UL"); break;
case UN : strcpy (theStringP, "UN"); break;
case UT : strcpy (theStringP, "UT"); break;
case USS: strcpy (theStringP, "US"); break;
case RET: strcpy (theStringP, "RE"); break;
default : strcpy (theStringP, "ZZ"); break;
} /* switch ...VR */
/* put the VR in the buffer */
PutString (theStringP, theElemP->vr, (unsigned char *) ioBuffP, ioPosP);
/* if the VR is OB, OW, SQ, UN or UT then put 2 bytes set to 0x0000 ... */
/* ... and encode the element length on 4 bytes */
if ((theElemP->vr == OB) ||
(theElemP->vr == OW) ||
(theElemP->vr == SQ) ||
(theElemP->vr == UN) ||
(theElemP->vr == UT))
{
/* put the 0x0000 value to the buffer */
theUS = 0x0000;
Put2Bytes (theUS, (unsigned char *) ioBuffP, ioPosP);
/* if compressed pixel datas then put an undefined length */
if (gArrCompression [inFileNb] != NONE &&
theElemP->group == 0x7FE0 &&
theElemP->element == 0x0010 &&
theElemP->vr == OB)
Put4Bytes (0xFFFFFFFF, (unsigned char *) ioBuffP, ioPosP);
/* or put the length of the element */
else
Put4Bytes (theElemP->length, (unsigned char *) ioBuffP, ioPosP);
} /* if ...VR = OB, OW, SQ, UN or UT */
else
/* put the element length in the buffer (2 bytes length */
Put2Bytes ((PapyUShort) theElemP->length, (unsigned char *) ioBuffP, ioPosP);
} /* else ...EXPLICIT VR or group 2*/
if (theElemP->nb_val > 0L)
{
switch (theElemP->vr)
{
case UL :
/* store the positions of the elements of the referenced directory record */
if (gIsPapyFile [inFileNb] == DICOMDIR && theElemP->group == 0x0004)
{
/* 0004,1200 */
if (theElemP->element == Papy3EnumToElemNb (theElemP, papOffsetofTheFirstDirectoryRecordGr))
gPosFirstPatientOffset [inFileNb] = *ioPosP;
/* 0004,1202 */
else if (theElemP->element == Papy3EnumToElemNb (theElemP, papOffsetofTheLastDirectoryRecordGr))
gPosLastPatientOffset [inFileNb] = *ioPosP;
/* 0004,1400 */
else if (theElemP->element == Papy3EnumToElemNb (theElemP, papOffsetofNextDirectoryRecordGr))
{
if (theRecordID == 0) /* PatientR */
{
if (gRefFirstPatientOffset [inFileNb] == 0L)
{
gRefFirstPatientOffset [inFileNb] = theFilePos + theItemDelimPos;
/*gRefFirstPatientOffset [inFileNb] = theFilePos + *ioPosP - 28L; */
/* Let save position */
thePosition = gPosFirstPatientOffset [inFileNb];
Put4Bytes (gRefFirstPatientOffset [inFileNb], ioBuffP, &thePosition);
} /* if */
gRefLastPatientOffset [inFileNb] = theFilePos + theItemDelimPos;
/*gRefLastPatientOffset [inFileNb] = theFilePos + *ioPosP - 28L;*/
/* Let save position */
thePosition = gPosLastPatientOffset [inFileNb];
Put4Bytes (gRefLastPatientOffset [inFileNb], ioBuffP, &thePosition);
} /* if ...recordId = 0 */
/* it exist a previous same level record */
if (*(gPosNextDirRecordOffset [inFileNb] + theRecordID) != 0L)
{
*(gRefNextDirRecordOffset [inFileNb] + theRecordID) = theFilePos + theItemDelimPos;
/**(gRefNextDirRecordOffset [inFileNb] + theRecordID) = theFilePos + *ioPosP - 28L;*/
thePosition = *(gPosNextDirRecordOffset [inFileNb] + theRecordID);
/* put the offset in the buffer */
Put4Bytes (*(gRefNextDirRecordOffset [inFileNb] + theRecordID), ioBuffP, &thePosition);
} /* if */
*(gPosNextDirRecordOffset [inFileNb] + theRecordID) = *ioPosP;
/* reinitialisation of the LowerLevel Directory record offset position */
*(gPosLowerLevelDirRecordOffset [inFileNb] + theRecordID + 1) = 0L;
*(gRefLowerLevelDirRecordOffset [inFileNb] + theRecordID + 1) = 0L;
/* reinitialisation of the previous Next Directory record offset position */
*(gPosNextDirRecordOffset [inFileNb] + theRecordID + 1) = 0L;
/* set the lower level directory record offset for the first LowLevel directory */
if (theRecordID != 0 && *(gRefLowerLevelDirRecordOffset [inFileNb] + theRecordID) == 0)
{
*(gRefLowerLevelDirRecordOffset [inFileNb] + theRecordID) = theFilePos + theItemDelimPos;
/**(gRefLowerLevelDirRecordOffset [inFileNb] + theRecordID) = theFilePos + *ioPosP - 28L;*/
thePosition = *(gPosLowerLevelDirRecordOffset [inFileNb] + theRecordID - 1);
/* put the offset in the buffer */
Put4Bytes (*(gRefLowerLevelDirRecordOffset [inFileNb] + theRecordID), ioBuffP, &thePosition);
} /* if */
} /* else ...element 0004,1400 */
/* 0004,1420 */
else if (theElemP->element == Papy3EnumToElemNb (theElemP, papOffsetofReferencedLowerLevelDirectoryEntityGr))
*(gPosLowerLevelDirRecordOffset [inFileNb] + theRecordID) = *ioPosP;
} /* if DicomDir */
/* store the positions of the elements of the pointer sequence */
if (theElemP->group == 0x0041)
{
if (theElemP->element == Papy3EnumToElemNb (theElemP, papImagePointerGr))
*(gPosImagePointer [inFileNb] + theFuncImNb) += *ioPosP;
else if (theElemP->element == Papy3EnumToElemNb (theElemP, papPixelOffsetGr))
*(gPosPixelOffset [inFileNb] + theFuncImNb) += *ioPosP;
} /* if ...group 41 */
case SS :
case USS :
case AT :
case SL :
case FL :
case FD :
for (j = 0; j < theElemP->nb_val; j++)
PutValue (theElemP->value + j, theElemP->vr, ioBuffP, ioPosP);
break;
case OB :
/* keep the position of the pixel data for the pointer sequence */
if (!inIsPtrSeq && theElemP->group == 0x7FE0 && theElemP->element == 0x0010)
*(gRefPixelOffset [inFileNb] + theFuncImNb) = *ioPosP;
/* if it is a compressed image, put the required presentation items */
if (theElemP->group == 0x7FE0 && theElemP->element == 0x0010 && gArrCompression [inFileNb] != NONE)
{
/* first : an item tag for the Basic Offset Table */
Put2Bytes (0xFFFE , (unsigned char *) ioBuffP, ioPosP);
Put2Bytes (0xE000 , (unsigned char *) ioBuffP, ioPosP);
/* the length of the Basic Offset Table is set to ZERO */
Put4Bytes (0x00000000 , (unsigned char *) ioBuffP, ioPosP);
/* then the first (and unique) fragment of Pixel Data with its item tag */
Put2Bytes (0xFFFE , (unsigned char *) ioBuffP, ioPosP);
Put2Bytes (0xE000 , (unsigned char *) ioBuffP, ioPosP);
/* then the length of the pixel data element */
Put4Bytes (theElemP->length , (unsigned char *) ioBuffP, ioPosP);
} /* if ...it is a compressed pixel data element */
/* put the value of the element to the buffer */
Put1ByteImage (theElemP->value->a , ioBuffP, ioPosP, theElemP->length);
/* if it is a compressed image, put the required sequence delimiter item */
if (theElemP->group == 0x7FE0 && theElemP->element == 0x0010 && gArrCompression [inFileNb] != NONE)
{
/* ladies and gentlemen : the Sequence Delimiter Item tag */
Put2Bytes (0xFFFE , (unsigned char *) ioBuffP, ioPosP);
Put2Bytes (0xE0DD , (unsigned char *) ioBuffP, ioPosP);
/* and its length */
Put4Bytes (0x00000000 , (unsigned char *) ioBuffP, ioPosP);
} /* if ...it is a compressed pixel data element */
/* if it is the pointer sequence, free the icon image datas */
/* free also the compressed pixels datas */
if ((inIsPtrSeq && theElemP->group == 0x7FE0 && theElemP->element == 0x0010) ||
(!inIsPtrSeq && gArrCompression [inFileNb] != NONE &&
theElemP->group == 0x7FE0 && theElemP->element == 0x0010))
Papy3ClearElement (inGroupP, papPixelDataGr, TRUE);
break;
case OW :
/* keep the position of the pixel data for the pointer sequence */
if (!inIsPtrSeq && theElemP->group == 0x7FE0 && theElemP->element == 0x0010)
*(gRefPixelOffset [inFileNb] + theFuncImNb) = *ioPosP;
#ifdef Windows
Put2BytesImage (theElemP->value->ow, ioBuffP, ioPosP, theElemP->length);
#else // Solaris , Mac
if (gx0028BitsAllocated [inFileNb] == 8 || gx0028BitsAllocated [inFileNb] == 24 ||
(inIsPtrSeq && theElemP->group == 0x7FE0 && theElemP->element == 0x0010))
Put1ByteImage ((char *) theElemP->value->ow , ioBuffP, ioPosP, theElemP->length);
else
Put2BytesImage (theElemP->value->ow, ioBuffP, ioPosP, theElemP->length);
#endif
/* if it is the pointer sequence, free the icon image datas */
/* free also the compressed pixels datas */
if ((inIsPtrSeq && theElemP->group == 0x7FE0 && theElemP->element == 0x0010) ||
(!inIsPtrSeq && gArrCompression [inFileNb] != NONE &&
theElemP->group == 0x7FE0 && theElemP->element == 0x0010))
Papy3ClearElement (inGroupP, papPixelDataGr, TRUE);
break;
case AE :
case AS :
case CS :
case DA :
case DS :
case DT :
case IS :
case LO :
case LT :
case PN :
case SH :
case ST :
case TM :
case UI :
case UN :
case UT :
if (theElemP->value->a)
{
theStringP = (char *) emalloc3 ((PapyULong) (theElemP->length + theElemP->nb_val));
strcpy (theStringP, theElemP->value->a);
for (j = 1; j < theElemP->nb_val; j++)
{
strcat (theStringP, "\\");
strcat (theStringP, (theElemP->value + j)->a);
} /* for */
PutString (theStringP, theElemP->vr, ioBuffP, ioPosP);
efree3 ((void **) &theStringP);
} /* if */
break;
case SQ :
/* if it is the image sequence do nothing */
if (! (theElemP->group == 0x0041 &&
theElemP->element == Papy3EnumToElemNb (theElemP, papImageSequenceGr)))
{
/* if element is the pointer to the UIN overlays sequence */
if (inGroupNb == UINOVERLAY &&
theElemP->nb_val > 0L &&
theElemP->element == Papy3EnumToElemNb (theElemP, papUINOverlaySequenceGr))
{
/* stores the current UINOverlay number */
theSavedUINOverlayNb = gCurrentUINOverlay [inFileNb];
/* reset the UINOverlay counting */
gCurrentUINOverlay [inFileNb] = 0x6001;
} /* if ...UIN overlays sequence */
/* save the previous value */
theSavedImNb = theFuncImNb;
theFuncImNb = 0;
theItemSeqP = (Item *) theElemP->value->sq;
/* loop on the items of the sequence */
while (theItemSeqP != NULL)
{
/* put the item delimiter */
theUS = 0xFFFE;
Put2Bytes (theUS, ioBuffP, ioPosP);
theUS = 0xE000;
Put2Bytes (theUS, ioBuffP, ioPosP);
theUL = 0L;
theItemDelimPos = *ioPosP; /* saves the pos of the length of the item */
Put4Bytes (theUL, ioBuffP, ioPosP);
theItemGrP = (Item *) theItemSeqP->object->item;
/* loop on the groups of the data set */
while (theItemGrP != NULL)
{
if ((inGroupNb = Papy3ToEnumGroup (theItemGrP->object->group->group)) < 0)
RETURN (papGroupNumber)
/* put the content of the group in the write buffer */
theErr = PutGroupInBuffer (inFileNb, theFuncImNb, inGroupNb,
(SElement *) theItemGrP->object->group,
ioBuffP, ioPosP, inIsPtrSeq);
/* get next item of the data set */
theItemGrP = theItemGrP->next;
} /* while ...loop on the groups of the data set */
/* get the next item of the sequence */
theItemSeqP = theItemSeqP->next;
/* and increment the position in the list */
theFuncImNb++;
/* computes the length of the item */
theItemLength = *ioPosP - theItemDelimPos - 4L; /* -4 = size of item length */
Put4Bytes (theItemLength, ioBuffP, &theItemDelimPos);
} /* while ...loop on the items of the sequence */
/* restores the gCurrentUINOverlay number if needed */
if (theSavedUINOverlayNb != 0x0000)
gCurrentUINOverlay [inFileNb] = theSavedUINOverlayNb;
/* and restore the previous value of theFuncImNb */
theFuncImNb = theSavedImNb;
} /* if ...element <> image sequence */
break;
default :
break;
} /* switch ...value representation */
} /* if ...nb_val > 0L */
} /* then ...theElemP->nb_val > 0 or type_t = T2 */
/* no introduced value */
else
if (theElemP->type_t == T1 && gIsPapyFile [inFileNb] != DICOMDIR)
{
/* no default value => error */
efree3 ((void **) &ioBuffP);
RETURN (papElemOfTypeOneNotFilled);
} /* if ... type_t = T1 */
} /* for ...loop on the elements of the group */
return 0;
} /* endof PutGroupInBuffer */
/********************************************************************************/
/* */
/* Papy3GroupWrite : write a group in the opened file */
/* return : the group size */
/* standard error message otherwise */
/* */
/********************************************************************************/
PapyShort CALLINGCONV
Papy3GroupWrite (PapyShort inFileNb, SElement *ioGroupP, int inFreeGr)
/*SElement *ioGroupP; the group to write */
/*int inFreeGr; would we free the group after writing ? */
{
int theGroupNb;
int theIsPtrSeq = FALSE; /* is there a Ptr Sequence ? */
char *theTmpFilenameP, theStr [32];
unsigned char *theBuffP;
PapyULong theBytesToWrite, theFilePos;
PapyULong theBuffSize, theImSeqSize, n;
PapyUShort theUS;
PapyShort theErr, theImNb, kk;
Item *theWrkItemP;
PAPY_FILE theTmpFp, theFp; /* the file pointers */
theFp = gPapyFile [inFileNb];
if ((theGroupNb = Papy3ToEnumGroup (ioGroupP->group)) < 0)
RETURN (papGroupNumber)
/* computes the size of the group */
theImSeqSize = 0L;
(void) ComputeGroupLength3 (theGroupNb, ioGroupP, &theImSeqSize, gArrTransfSyntax [inFileNb]);
/* element 0 is group size */
theBuffSize = ioGroupP->value->ul + kLength_length;
switch (ioGroupP->group)
{
case 0x0041 :
/* if group 41, substract the size of the image sequence */
/* that has to be written separately */
theBuffSize -= theImSeqSize;
/* if it is THE group 41 */
if (ioGroupP == gArrMemFile [inFileNb]->next->next->object->group)
{
Papy3FTell (theFp, (PapyLong *) &theFilePos);
/* loop on the images */
for (kk = 0; kk < gArrNbImages [inFileNb]; kk++)
{
*(gPosImagePointer [inFileNb] + kk) = (PapyULong) theFilePos;
*(gPosPixelOffset [inFileNb] + kk) = (PapyULong) theFilePos;
} /* for */
/* there is a pointer sequence (so do not save the offset to the icon image) */
theIsPtrSeq = TRUE;
} /* if ...THE group 41 */
break;
default :
break;
} /* switch ...group number */
/* allocate the write buffer */
theBuffP = (unsigned char *) emalloc3 ((PapyULong) theBuffSize);
n = 0L; /* position in the write buffer */
/* put the group in the write buffer */
theErr = (int) PutGroupInBuffer (inFileNb, 0, theGroupNb, ioGroupP, theBuffP, &n, theIsPtrSeq);
/* write the buffer to the file */
if (WriteGroup3 (theFp, theBuffP, theBuffSize) < 0)
{
efree3 ((void **) &theBuffP);
RETURN (papWriteGroup);
} /* if */
/* deletes the write buffer */
efree3 ((void **) &theBuffP);
/* if THE group 41, copy the temp files to the Papyrus file */
if (ioGroupP->group == 0x0041 &&
ioGroupP == gArrMemFile [inFileNb]->next->next->object->group)
{
theWrkItemP = gImageSequenceItem [inFileNb];
theImNb = 0;
theTmpFilenameP = (char *) ecalloc3 ((PapyULong) 256, (PapyULong) sizeof (char));
while (theWrkItemP != NULL)
{
/* allocate room for the item delimiter */
theBuffP = (unsigned char *) emalloc3 ((PapyULong) 8);
/* put the item delimiter element */
n = 0L;
theUS = 0xFFFE;
Put2Bytes (theUS, theBuffP, &n);
theUS = 0xE000;
Put2Bytes (theUS, theBuffP, &n);
Put4Bytes (theWrkItemP->object->tmpFileLength, theBuffP, &n);
/* write it to the Papyrus file */
theBytesToWrite = 8L;
if (Papy3FWrite (theFp, (PapyULong *) &theBytesToWrite, 1L, theBuffP) < 0)
{
theErr = Papy3FClose (&theFp);
efree3 ((void **) &theBuffP);
RETURN (papWriteFile)
} /* if */
efree3 ((void **) &theBuffP);
/* save the file position this data set will occupy for the backward references */
Papy3FTell (theFp, (PapyLong *)(gRefImagePointer [inFileNb] + theImNb));
/* then updates the position of the pixel data accordingly */
/* so that it is no more a relative value */
*(gRefPixelOffset [inFileNb] + theImNb) += *(gRefImagePointer [inFileNb] + theImNb);
/* build the name of the temp file containing the data set */
strcpy (theTmpFilenameP, gPapFilename [inFileNb]);
/* append the incremental number to the filename */
Papy3FPrint (theStr, "%d", theWrkItemP->object->objID);
strcat (theStr, ".dcm");
strcat (theStr, "\0");
if (theWrkItemP->object->objID < 10)
strcat (theTmpFilenameP, "000");
else if (theWrkItemP->object->objID < 100)
strcat (theTmpFilenameP, "00");
else if (theWrkItemP->object->objID < 1000)
strcat (theTmpFilenameP, "0");
strcat (theTmpFilenameP, theStr);
/* open the temp file */
if (Papy3FOpen (theTmpFilenameP, 'r', 0, &theTmpFp, &theWrkItemP->object->file) != 0)
RETURN (papOpenFile);
/* get the size of the tmp file */
theImSeqSize = theWrkItemP->object->tmpFileLength;
/* allocate the copy buffer */
theBuffP = (unsigned char *) ecalloc3 ((PapyULong) theImSeqSize, (PapyULong) sizeof (char));
/* reads the datas from the temp file... */
if ((theErr = (PapyShort) Papy3FRead (theTmpFp, &theImSeqSize, 1L, theBuffP)) < 0)
{
Papy3FClose (&theTmpFp);
efree3 ((void **) &theBuffP);
RETURN (papReadFile);
} /* if */
/* ...and writes them to the Papyrus file */
if (Papy3FWrite (theFp, &theImSeqSize, 1L, theBuffP) < 0)
{
theErr = Papy3FClose (&theTmpFp);
efree3 ((void **) &theBuffP);
RETURN (papWriteFile)
} /* if */
/* deletes the copy buffer */
efree3 ((void **) &theBuffP);
/* close the temp file and frees memory */
Papy3FClose (&theTmpFp);
/* get next item of the list = the next data set saved in a temp file */
theWrkItemP = theWrkItemP->next;
/* and increment the position in the list */
theImNb++;
} /* while ...loop on the tmp files */
/* deletes the theTmpFilenameP */
efree3 ((void **) &theTmpFilenameP);
} /* if ...group 41 */
if (inFreeGr == TRUE)
if (ioGroupP->group == 0x0041)
{
if ((theErr = Papy3GroupFree (&ioGroupP, FALSE)) < 0) RETURN (theErr);
}
else if ((theErr = Papy3GroupFree (&ioGroupP, TRUE)) < 0) RETURN (theErr);
return 0;
} /* endof Papy3GroupWrite */
|