Search found 8 matches

by Flesh
2017-11-07T16:26:40-07:00
Forum: Users
Topic: convert -extent not working [Solved]
Replies: 5
Views: 5230

Re: convert -extent not working [Solved]

Upgrading to 7 fixed it.
by Flesh
2017-11-07T15:56:34-07:00
Forum: Users
Topic: convert -extent not working [Solved]
Replies: 5
Views: 5230

Re: convert -extent not working

That was it, just this machine, the other is setup the same, tired to reinstall imagemagick, no help; so this sucks. It might be related to this: https://www.imagemagick.org/discourse-server/viewtopic.php?t=24603 I am using opencl-nvidia for cuda in blender; just a guess, but I have it on the other ...
by Flesh
2017-11-07T14:38:14-07:00
Forum: Users
Topic: convert -extent not working [Solved]
Replies: 5
Views: 5230

Re: convert -extent not working

Thanks, but it did not help.
by Flesh
2017-11-07T13:32:09-07:00
Forum: Users
Topic: convert -extent not working [Solved]
Replies: 5
Views: 5230

convert -extent not working [Solved]

I have jpg images that are 4096x4096, I want to extend the canvas 300 px on both sizes centering the image on the new canvas with transparent background for the new canvas only So I do not want to change the original image, just pad it on both sides, and convert from jpg to png for transparency back...
by Flesh
2017-07-24T22:15:56-07:00
Forum: Users
Topic: How to extend an Image from side to side softening the hard edge of image
Replies: 9
Views: 7531

Re: How to extend an Image from side to side softening the hard edge of image

Something like this: find . -type f -name "*.jpg" -print0 | sort -z | while IFS= read -r -d '' file; do BaseFileName="$(basename $file)"; PngFile="${BaseFileName%.*}.png"; echo "Working on ${Counter}"; if [ ! -f "${Output_Folder}/${PngFile}" ]; then ...
by Flesh
2017-07-24T18:18:43-07:00
Forum: Users
Topic: How to extend an Image from side to side softening the hard edge of image
Replies: 9
Views: 7531

Re: How to extend an Image from side to side softening the hard edge of image

Thanks, can you tell me if there is a way to continue this if the process gets interrupted, i.e. power outage, it takes days to convert this many files, and I do not want to start over every time.
by Flesh
2017-07-24T13:52:16-07:00
Forum: Users
Topic: How to extend an Image from side to side softening the hard edge of image
Replies: 9
Views: 7531

Re: How to extend an Image from side to side softening the hard edge of image

This is the original image like shown above, in 4096 format http://lightwizzard.com/resources/home/lightwizzard.com/Light-Wizzard-in-the-Flesh/20130114_183107_4096_0193.jpg Like I said the link for the images are at NASA, just pick one that has a Corona on both sides, but its just as easy to post on...
by Flesh
2017-07-24T11:55:01-07:00
Forum: Users
Topic: How to extend an Image from side to side softening the hard edge of image
Replies: 9
Views: 7531

How to extend an Image from side to side softening the hard edge of image

Currently I am running the below command to set the format to png and make canvas 300 px larger on both sides of image, and to also remove the Black Background by setting it transparent, I found out that synchronize did not do what I wanted, but I still use it, what I need is a way that if this comm...