Search found 3 matches
- 2019-09-01T00:39:28-07:00
- Forum: Magick.NET
- Topic: thumbnail in imagemagick
- Replies: 3
- Views: 84689
Re: thumbnail in imagemagick
Yes , I want to do thumbnail for image . but image.thumbnail() is not defined.
- 2019-08-31T01:17:28-07:00
- Forum: Magick.NET
- Topic: thumbnail in imagemagick
- Replies: 3
- Views: 84689
thumbnail in imagemagick
I want to make thumbnail a image but I have the following error NullReferenceException: Object reference not set to an instance of an object. I use this code : using (MagickImage image = new MagickImage(mainpath + media.Name)) { ExifProfile profile = image.GetExifProfile(); using (MagickImage ...
- 2019-07-14T11:03:00-07:00
- Forum: Magick.NET
- Topic: How to Add JPEG EXIF TAGS (url,keywords..)
- Replies: 1
- Views: 72214
How to Add JPEG EXIF TAGS (url,keywords..)
Hi I'm using Magick.NET-Q16-AnyCPU for mvc core2 . I am trying to add exif tags to jpeg images, copyright and author and url and keyword but not working except copyright My Code : using (MagickImage image = new MagickImage(media.Name)) { var profile = new ExifProfile(); profile.SetValue(ExifTag ...