Replies: 7 comments
-
I have no idea what you are trying to ask me. |
Beta Was this translation helpful? Give feedback.
-
The text has become darker or bolder, Compare with the display in word |
Beta Was this translation helpful? Give feedback.
-
Have you tried setting the |
Beta Was this translation helpful? Give feedback.
-
As described in the link I have uploaded the emf file, can you give me a sample code? https://imagemagick.org/discourse-server/viewtopic.php?t=21983 |
Beta Was this translation helpful? Give feedback.
-
What have you tried so far yourself and where are you stuck? |
Beta Was this translation helpful? Give feedback.
-
Test in different ways, Solved by setting a very high density var settings1 = new MagickReadSettings(); string imagepath1 = fileInfo.FullName.Replace(".emf", ".png"); |
Beta Was this translation helpful? Give feedback.
-
You will need to guess/test that? Take your images and then check at which density you get a consistent result? |
Beta Was this translation helpful? Give feedback.
-
// Read first frame of gif image
using var image = new MagickImage(Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "image1.emf"));
// Save frame as jpg
string file2 = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "image1.png");
image.Settings.BackgroundColor = MagickColors.White;
image.Write(file2);
Beta Was this translation helpful? Give feedback.
All reactions