X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=Doc%2FWebsite%2FNews.html;h=f44d24354fc321cf7afd33cdf6d237fa41c06973;hb=998942248b883bf900e3b6918d4ff13aa8084aaf;hp=d7f9d87d6f25fb04f677b489c225c063f0f0cbaf;hpb=c55313464ef064ecbee4a59eb8582c8354afce06;p=gdcm.git diff --git a/Doc/Website/News.html b/Doc/Website/News.html index d7f9d87d..f44d2435 100644 --- a/Doc/Website/News.html +++ b/Doc/Website/News.html @@ -8,10 +8,10 @@ - +

Gdcm News

- +

@@ -21,34 +21,91 @@ We know the following are missing; don't loose time looking for them ...
We know they could be helpfull. We shall add them some day.
Any contribution is welcome. - -

@@ -62,7 +119,6 @@ Any contribution is welcome. @@ -71,35 +127,74 @@ Any contribution is welcome.
  • Both vtkgdcmViewer and vtkgdcmViewer2 are available to allow easy displaying of single/multiframe GreyLevel/RGB/PaletteColor images -
  • +
  • DICOMDIR anonymiser (Load and Noload mode) +
  • User is now allowed to tell gdcm::Document constructor + he doesn't want to deal with SeqEntry + (every time it's possible)
    and/or he doesn't + want to deal with Shadow groups (every time it's + possible)
    + use :
    + gdcm::File *f = new gdcm::File();
    + f->SetLoadMode(NO_SEQ | NO_SHADOW);
    + f->Load(fileName);
    +
    + instead of :
    + + gdcm::File *f = new gdcm::File(fileName);
    + (old style still available) + +
  • User is now allowed to tell gdcm::DicomDir constructor + he doesn't want to deal with SeqEntry + (every time it's possible)
    and/or he doesn't + want to deal with Shadow groups (every time it's + possible)
    + use :
    + gdcm::DicomDir *dcmdir = new gdcm::DicomDir( );
    + dcmdir->SetParseDir(true);
    + dcmdir->SetLoadMode(NO_SEQ | NO_SHADOW);
    + dcmdir->Load(dirName);
    +
    + instead of :
    + + gdcm::DicomDir *dcmdir = new gdcm::DicomDir(dirName, true);
    + (old style still available) +
  • Bug fixes
  • A.P.I. breaking modifications (since previous version : 1.0) +
  • NEVER more API breaking modifications !!! +
  • Known bugs + +

    @@ -144,9 +239,27 @@ Any contribution is welcome.
  • a gdcm::SeqEntry -
  • Removal of useless accessors GetXxxByname, SetXxxByname -
  • Removal of accessors GetXxxByNumber, SetXxxByNumber, - renamed as GetXxx, SetXxx +
  • Removal of useless accessors GetXxxByname, SetXxxByname +
  • Renaming of accessors GetXxxByNumber, SetXxxByNumber + as follow : +
      +
    • GetEntryByNumber +       + --> GetEntryValue +
    • GetEntryLengthByNumber --> GetEntryLength +
    • GetEntryOffsetByNumber --> GetEntryOffset +
    • GetEntryVRByNumber +     --> GetEntryVR +
    • +
    • GetDocEntryByNumber +    --> GetDocEntry +
    • GetValEntryByNumber +    --> GetValEntry +
    • GetBinEntryByNumber +    --> GetBinEntry +
    • GetSeqEntryByNumber +    --> GetSeqEntry +