Can you let me know how to fix the square shadow and make it into a round shadow even if you don’t know the c# version?
Search found 32 matches
- 2018-03-29T09:31:00-07:00
- Forum: Magick.NET
- Topic: ImageMagick create circle count on top of image
- Replies: 11
- Views: 19613
- 2018-03-29T00:22:43-07:00
- Forum: Magick.NET
- Topic: ImageMagick create circle count on top of image
- Replies: 11
- Views: 19613
Re: ImageMagick create circle count on top of image
I finally got it to move over where I need it to be using this code: MagickImage circleText = new MagickImage(MagickColors.Transparent, 29, 29); MagickImage circle = new MagickImage(MagickColors.Transparent, 29, 29); MagickImage _shadow = new MagickImage(); circleText.Settings.BorderColor ...
- 2018-03-28T23:26:06-07:00
- Forum: Magick.NET
- Topic: ImageMagick create circle count on top of image
- Replies: 11
- Views: 19613
Re: ImageMagick create circle count on top of image
Just cant seem to figure out how to move the text+circle over 50px and down 10px....
- 2018-03-28T17:57:48-07:00
- Forum: Magick.NET
- Topic: ImageMagick create circle count on top of image
- Replies: 11
- Views: 19613
Re: ImageMagick create circle count on top of image
Did that make since?
- 2018-03-28T09:39:05-07:00
- Forum: Magick.NET
- Topic: ImageMagick create circle count on top of image
- Replies: 11
- Views: 19613
- 2018-03-28T08:38:32-07:00
- Forum: Magick.NET
- Topic: ImageMagick create circle count on top of image
- Replies: 11
- Views: 19613
Re: ImageMagick create circle count on top of image
Still looking for some guidance and help with this please.
- 2018-03-27T23:02:39-07:00
- Forum: Magick.NET
- Topic: ImageMagick create circle count on top of image
- Replies: 11
- Views: 19613
Re: ImageMagick create circle count on top of image
Ok I have the code correct for the round circle with number in it: MagickImage circleText = new MagickImage(MagickColors.Transparent, 29, 29); MagickImage circle = new MagickImage(MagickColors.Transparent, 29, 29); circleText.Settings.BorderColor = MagickColors.Black; circleText.Settings ...
- 2018-03-27T21:04:07-07:00
- Forum: Magick.NET
- Topic: ImageMagick create circle count on top of image
- Replies: 11
- Views: 19613
Re: ImageMagick create circle count on top of image
Changing some code I now get this: https://i.stack.imgur.com/gKsO2.png Changed code: roundImg.Composite(mask, CompositeOperator.CopyAlpha); roundImg.Draw(new DrawableStrokeColor(MagickColors.Black), new DrawableStrokeWidth(1), new DrawableFillColor(MagickColors.None), new DrawableCircle(50, 50, 50 ...
- 2018-03-27T20:36:00-07:00
- Forum: Magick.NET
- Topic: ImageMagick create circle count on top of image
- Replies: 11
- Views: 19613
ImageMagick create circle count on top of image
Hey all I have the following Magick.net code: List<string> lFiles = new List<string>(); bool isBlankImage = false; lFiles.Add(@"C:\Users\David\Pictures\1.jpg"); lFiles.Add(@"C:\Users\David\Pictures\blank.png"); lFiles.Add(@"C:\Users\David\Pictures\blank.png"); lFiles.Add(@"C:\Users\David\Pictures ...
- 2018-03-24T20:19:19-07:00
- Forum: Magick.NET
- Topic: ImageMagick creating blank transparent square(s) according to width
- Replies: 4
- Views: 34987
Re: ImageMagick creating blank transparent square(s) according to width
Yeah im not able to reproduce this in C# so i hope dlemstra can help me out again
- 2018-03-24T15:19:36-07:00
- Forum: Magick.NET
- Topic: ImageMagick creating blank transparent square(s) according to width
- Replies: 4
- Views: 34987
Re: ImageMagick creating blank transparent square(s) according to width
I'm just needing the part where it creates the blank circle images. I have the code for producing the images that actually are images as in my example, 1.jpg (maggie). In my logic I check to see if the current image should be an image or a blank image.
- 2018-03-23T23:27:21-07:00
- Forum: Magick.NET
- Topic: ImageMagick creating blank transparent square(s) according to width
- Replies: 4
- Views: 34987
ImageMagick creating blank transparent square(s) according to width
Hey all I am trying to fill in the area with blank circles but its turning out looking like this: (sized down in order not to take up so much room here. Original size: 360x1200). Also note that I do not really use the blank.png file - its just there so i can check to see if its being used or not. I ...
- 2018-03-20T07:42:10-07:00
- Forum: Magick.NET
- Topic: Round Image(s) overlap issue
- Replies: 11
- Views: 20326
Re: Round Image(s) overlap issue
I've waited for 30+ minutes and it still has not progressed to the next step (image.Composite(mask, CompositeOperator.CopyAlpha);).
- 2018-03-19T13:49:14-07:00
- Forum: Magick.NET
- Topic: Round Image(s) overlap issue
- Replies: 11
- Views: 20326
Re: Round Image(s) overlap issue
Correction for the above code - There seems to be an error once it gets to image.Resize(100, 100);. It seems to freeze the program and just stays there
- 2018-03-19T08:45:26-07:00
- Forum: Magick.NET
- Topic: Round Image(s) overlap issue
- Replies: 11
- Views: 20326
Re: Round Image(s) overlap issue
Solution provided by dlemstra: List<string> lFiles = new List<string>(); lFiles.Add(@"C:\Users\David\Pictures\1.jpg"); lFiles.Add(@"C:\Users\David\Pictures\2.jpg"); lFiles.Add(@"C:\Users\David\Pictures\3.jpg"); lFiles.Add(@"C:\Users\David\Pictures\4.jpg"); lFiles.Add(@"C:\Users\David\Pictures\5.jpg ...