Search found 9 matches

by oceanthrsty
2019-07-15T08:03:56-07:00
Forum: Magick.NET
Topic: Magick.net crashes but doesn't throw any errors in Windows
Replies: 3
Views: 43931

Re: Magick.net crashes but doesn't throw any errors in Windows

Just copying the exe, DLLs, etc. I don’t have VS on the machine I’m actually using in production.

The same I do for all the projects I’ve ever built.
by oceanthrsty
2019-07-14T19:27:35-07:00
Forum: Magick.NET
Topic: Magick.net crashes but doesn't throw any errors in Windows
Replies: 3
Views: 43931

Magick.net crashes but doesn't throw any errors in Windows

I'm using Magick.Net Q8 X64 7.10.1 Pretty simple little program. Take a higher res image. (2-5MB). Rotate the image, Create a preview size of it 600px x 600px, then create a thumbnail size of it. Do this again and again. I am building the program in VS2013 in Windows 7 64bit on a VMware machine. Run...
by oceanthrsty
2015-03-06T10:04:53-07:00
Forum: Users
Topic: Composite of two images - but top image can be any size
Replies: 2
Views: 4259

Re: Composite of two images - but top image can be any size

Basically I need to take a JPG image of unknown size or aspect ratio. Shrink it so the long edge is no bigger then 1680px. Then drop it, centered, onto a background of known size (2100H x 1500W).

I hope that is more clear. And thank you for your mention about not using geometry.

Using IM 6.9.0.9.
by oceanthrsty
2015-01-21T09:20:50-07:00
Forum: Users
Topic: Composite PNG and Background
Replies: 2
Views: 2743

Re: Composite PNG and Background

Awesome... that works great!

Thanks!
by oceanthrsty
2015-01-21T07:40:02-07:00
Forum: Users
Topic: Composite PNG and Background
Replies: 2
Views: 2743

Composite PNG and Background

My background can be any JPG or GIF of pretty much any size. I need to lay a PNG on it, centered and touching the bottom edge. The PNGs are HUGE. So when I composite them, the PNG is not resized, it's just cut out to match the background size What I've got now is: composite -gravity center person.pn...
by oceanthrsty
2014-12-19T15:08:03-07:00
Forum: Users
Topic: Composite of two images - but top image can be any size
Replies: 2
Views: 4259

Composite of two images - but top image can be any size

So I have a background jpg that is 1500w x 2100h. But this can be adjusted to whatever I need. I've thought just maybe making it 2100x2100. I want to be able to take a horizontal or vertical main image and place it on top but no matter the size (could be coming in as 3:2 or maybe a pano) be able to ...
by oceanthrsty
2014-12-18T08:44:26-07:00
Forum: Users
Topic: Convert image and mask to PNG
Replies: 6
Views: 7502

Re: Convert image and mask to PNG

Fred,

Thank you. That works!
by oceanthrsty
2014-12-17T19:54:40-07:00
Forum: Users
Topic: Convert image and mask to PNG
Replies: 6
Views: 7502

Re: Convert image and mask to PNG

What's the exact syntax you're using? I upgraded my version I'm running the same syntax as above and I'm getting an error message convert main.jpg \( mask.jpg -colorspace gray -alpha off \) \ -compose copy-opacity -composite new.png convert: unable to open image ` -compose': No such file or director...
by oceanthrsty
2014-12-17T15:09:21-07:00
Forum: Users
Topic: Convert image and mask to PNG
Replies: 6
Views: 7502

Convert image and mask to PNG

I have an image http://internal.wehtam.com/gf/main.jpg And it's mask http://internal.wehtam.com/gf/mask.jpg Here's the command I'm using right now: convert main.jpg \( mask.jpg -colorspace gray -alpha off \) \ -compose copy-opacity -composite new.png It produces a great PNG... but it's in grayscale ...