bastien vigneron

Results 15 comments of bastien vigneron

Hello, On trying to open a file with this transfert syntax : 1.2.840.10008.1.2.1 ```rust let obj = open_file(&in_file)?; ``` I get : `[ERROR] Unsupported transfer syntax `1.2.840.10008.1.2.1 `` I assume...

I think you got it, with dcmtk dcmdump : `W: DcmUniqueIdentifier: Element TransferSyntaxUID (0002,0010) contains one or more space characters, which were removed`. May be we can trim this particular...

Agree for a : ```rust if uid.as_bytes().last().cloned() == Some(b'\0') || uid.ends_with(' ') { &uid[..uid.len() - 1] } else { &uid } ``` in lib.rs:68 ? If yes I can make...

No problem, can you give me the authorization to create / push on branch ?

Thank you for your response. I will take a look to association API. Agree for lazy loading priorities, this will be a big improvement.

Thank you for your response. It would indeed be nice if the direction of the library goes through more interoperability, as the quality of the library is overall excellent compared...

Thank you @fterrag !

Same issue here with v10.7.4

And with latest release (v10.3.2)

Exemple code : ```go var db Postgres type Patient struct { PatientID string `pg:",pk,notnull,unique"` PatientName string Studies []Study `pg:"rel:has-many"` } type Study struct { StudyInstanceUID string `pg:",pk,notnull,unique"` StudyID string PatientPatientID...