Changing the font size of a Presentation State

痴心易碎 提交于 2020-04-17 21:33:17

问题


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

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!