Search found 23 matches

by GlennIM
2020-11-12T12:09:12-07:00
Forum: Magick.NET
Topic: Background Pattern to Use with Extent()?
Replies: 0
Views: 129139

Background Pattern to Use with Extent()?

Is it possible to use some kind of Gradient or Background "hatched" pattern image instead of a color when using to fill the background when calling Extent? Here is my current code... modimage.Resize(1000, 1500); modimage.BackgroundColor = ColorTranslator.FromHtml("#0079F2"); // b...
by GlennIM
2019-08-07T10:37:20-07:00
Forum: Magick.NET
Topic: Best C# Code To Overlay Text on a .JPG Image?
Replies: 5
Views: 46939

Re: Best C# Code To Overlay Text on a .JPG Image?

What value do you think I should I use for the Font Point Size? I wrote a function GetProperFontSize(MagickImage img) below to get the suggested font size from the image width. Then I call the following to get the FontPointsize and set it for the image read settings. var tempimage = new MagickImage(...
by GlennIM
2019-08-06T21:44:00-07:00
Forum: Magick.NET
Topic: Best C# Code To Overlay Text on a .JPG Image?
Replies: 5
Views: 46939

Re: Best C# Code To Overlay Text on a .JPG Image?

var tempimage = new MagickImage(@"D:\\beautiful-girl-woman-young-127405_WEB.jpg"); int textWidth = tempimage.Width - 10; tempimage.Dispose(); MagickReadSettings settings = new MagickReadSettings() { FillColor = MagickColors.White, // -fill black StrokeColor = MagickColors.Black, Font = &q...
by GlennIM
2019-07-25T10:43:29-07:00
Forum: Magick.NET
Topic: Best C# Code To Overlay Text on a .JPG Image?
Replies: 5
Views: 46939

Best C# Code To Overlay Text on a .JPG Image?

Does anyone have the best C# code to overlay text in different font's and colors on an .JPG image? I'm trying to put "motivational" messages in the middle of images in .JPG format.

Thanks, Glenn
by GlennIM
2019-06-06T08:01:56-07:00
Forum: Magick.NET
Topic: Trim White Space From Image?
Replies: 2
Views: 40265

Re: Trim White Space From Image?

I added this line to the code below and it worked! Is that the correct code to use?

Code: Select all

 image.ColorFuzz = new Percentage(5);
by GlennIM
2019-06-05T22:41:02-07:00
Forum: Magick.NET
Topic: Trim White Space From Image?
Replies: 2
Views: 40265

Trim White Space From Image?

I'm trying to remove "white space" from images using the Trim() function but doesn't seem to work. Here is my code and the sourceImgTrimmed. What is wrong? string sourceImg = @"D:\\large_1683_EK08BK_Open_WEB.jpg"; string sourceImgTrimmed = @"D:\\large_1683_EK08BK_Open_Trimme...
by GlennIM
2019-05-13T22:02:26-07:00
Forum: Magick.NET
Topic: Creating a Slide Show using MagicK.net ?
Replies: 1
Views: 36534

Creating a Slide Show using MagicK.net ?

Is there a way to create a slide show from a series of images using C#, perhaps combining them into a .GIF ?
by GlennIM
2019-04-20T07:50:45-07:00
Forum: Magick.NET
Topic: Permission Denied When Writing Image To File Again
Replies: 0
Views: 43437

Permission Denied When Writing Image To File Again

I'm writing images to a directory on my drive and I put each image I write into Image parameter of a CheckBox control using the code below... Each checkbox is then added to a FlowLayoutPanel control. myCheckBox.Image = Image.FromFile(filetarget); Then when I select the CheckBox control that is in a ...
by GlennIM
2019-04-03T13:04:52-07:00
Forum: Magick.NET
Topic: Freeing Up Memory?
Replies: 0
Views: 42156

Freeing Up Memory?

I have a method that creates several new MagickImage objects and this method gets run many times through the execution of my application. I see the memory increasing rapidly and the application goes into Non-Responding state because it is using a lot of memory. After the method is called I call GC.C...
by GlennIM
2019-03-20T21:25:37-07:00
Forum: Magick.NET
Topic: 3D Effects ?
Replies: 0
Views: 41645

3D Effects ?

I'm trying to convert some of the 3-D logos on https://www.imagemagick.org/Usage/advanced/#3d-logos to C# and don't have a clue how to write the code. Either one of 2 sets of code... convert logo.png -alpha extract -blur 0x6 -shade 110x30 -normalize \ logo.png -compose Overlay -composite \ logo.png ...
by GlennIM
2018-10-31T11:42:05-07:00
Forum: Magick.NET
Topic: C# Code for Frame, adding a 3D-like border ?
Replies: 1
Views: 8598

Re: C# Code for Frame, adding a 3D-like border ?

UPDATE:

Never Mind. It was easy to figure out using the C# API
by GlennIM
2018-10-27T21:01:50-07:00
Forum: Magick.NET
Topic: C# Code for Frame, adding a 3D-like border ?
Replies: 1
Views: 8598

C# Code for Frame, adding a 3D-like border ?

Does anyone have the C# equivalent code for creating 3D Like Borders as shown at http://www.imagemagick.org/Usage/crop/#frame using the frame operator? These specific command line options work but have no clue as to converting them to Magick.NET C# code: D:\>magick imagetotest.jpg -frame 10x10 image...
by GlennIM
2018-10-20T21:41:54-07:00
Forum: Magick.NET
Topic: What Transformation For .JPG Format ?
Replies: 1
Views: 7433

What Transformation For .JPG Format ?

I can only use .JPG image format for my images.

What transformation are possible to use for that format at https://www.imagemagick.org ?

Thanks
by GlennIM
2018-09-03T20:26:18-07:00
Forum: Magick.NET
Topic: Why Is File size SO Much Larger ?
Replies: 3
Views: 18502

Re: Why Is File size SO Much Larger ?

The reason I am writing the file to .PNG is because this function includes code to round the corners of the image. If I write it to .JPG format the rounded corners to show. The whole image is just square but the file size is OK at 198K - Please advise on how I can have rounded corners but use .JPG i...
by GlennIM
2018-09-03T13:36:24-07:00
Forum: Magick.NET
Topic: Why Is File size SO Much Larger ?
Replies: 3
Views: 18502

Why Is File size SO Much Larger ?

When I use var image = new MagickImage(MagickColors.Red, 1000, 1000); the final output file size is 64K but when I use a real image .JPG file of 147K the resulting file is the size of 1.55 MB even after I compress it. Why is the resulting .PNG file so much larger than the original using the code bel...