问题
I am currently trying to create the Grayscale Softcopy Presentation State file that holds some text comment. I am creating text object sequence like this:
DicomDataset textObjectSequenceDataset = new DicomDataset();
textObjectSequenceDataset.Add(DicomTag.BoundingBoxAnnotationUnits, "DISPLAY");
textObjectSequenceDataset.Add(DicomTag.UnformattedTextValue, "TERE");
textObjectSequenceDataset.Add(DicomTag.BoundingBoxTopLeftHandCorner, @"0\0");
textObjectSequenceDataset.Add(DicomTag.BoundingBoxBottomRightHandCorner, @"0\0");
textObjectSequenceDataset.Add(DicomTag.BoundingBoxTextHorizontalJustification, @"LEFT");
graphicAnnotationSequenceDataset.Add(DicomTag.TextObjectSequence, textObjectSequenceDataset);
How it is possible to change the font size of a textual comment?
来源:https://stackoverflow.com/questions/61187691/changing-the-font-size-of-a-presentation-state