You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Setup DNG read definesvardefines=newDngReadDefines{ReadThumbnail=true};// Create empty imageusingvarimage=newMagickImage();// Copy the defines to the settingsimage.Settings.SetDefines(defines);// Read only meta data of the imageimage.Ping(SampleFiles.StillLifeCR2);// Get thumbnail datavarthumbnailData=image.GetProfile("dng:thumbnail")?.ToByteArray();if(thumbnailData!=null){// Read the thumbnail imageusingvarthumbnail=newMagickImage(thumbnailData);}