How to get and set propertyitems for an image

♀尐吖头ヾ 提交于 2019-11-29 03:50:24

This is somewhat late, but it IS possible to create a new PropertyItem instance, without going through the pain of having to establish one from another source:

using System.Runtime.Serialization;
...
var newItem = (PropertyItem)FormatterServices.GetUninitializedObject(typeof(PropertyItem));

This gets around the lack of constructor specified on PropertyItem (which seemed to prevent me from using System.Reflection)

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