Search found 2972 matches

by Bonzo
2018-03-22T08:30:39-07:00
Forum: Users
Topic: IM can't handle %% in paths
Replies: 15
Views: 16505

Re: IM can't handle %% in paths

There was a similar post a while ago and nothing was changed and it was not treated as a bug: https://www.imagemagick.org/discourse-server/viewtopic.php?f=1&t=33537 As I said I think you should just stop people from using any character they want. I can not believe they can not name a folder or a...
by Bonzo
2018-03-22T06:10:51-07:00
Forum: Developers
Topic: Does imageMagick support all of the Lightroom adjustments?
Replies: 11
Views: 20872

Re: Does imageMagick support all of the Lightroom adjustments?

The question is how can we know all these adjustments can be mapped to imagemagick ? That is a good question and I would guess it is not going to be simple to answer. I would start with what you can find as standard commands and then move onto searching the forum. I would guess some options would b...
by Bonzo
2018-03-22T05:28:18-07:00
Forum: Developers
Topic: Is a way to process ssl/proxy url images?
Replies: 11
Views: 22094

Re: Is a way to process ssl/proxy url images?

The last error could be a https restriction on the website and might work on a http image?

Have you tried including your path in " "
by Bonzo
2018-03-22T05:25:37-07:00
Forum: Developers
Topic: Does imageMagick support all of the Lightroom adjustments?
Replies: 11
Views: 20872

Re: Does imageMagick support all of the Lightroom adjustments?

So the answer is apply them to an image That's OK I just wanted to confirm. I do not have a lightroom xmp file handy but as I say it can be done but you would need an intermediate program in something like php. You would read the xmp file and if for instance it said "increase contrast" yo...
by Bonzo
2018-03-22T04:22:41-07:00
Forum: Developers
Topic: Is a way to process ssl/proxy url images?
Replies: 11
Views: 22094

Re: Is a way to process proxy url images?

Hopefully somebody may come along who knows about that sort of thing.

I wonder if as it is not directly an Imagemagick problem it may be worth posting on Stackoverflow as they have a broad base of users specialising in lots of different code?
by Bonzo
2018-03-22T03:59:38-07:00
Forum: Developers
Topic: Does imageMagick support all of the Lightroom adjustments?
Replies: 11
Views: 20872

Re: Does imageMagick support all of the Lightroom adjustments?

I would guess you could write some code that reads the xmp file and converts it to options that Imagemagick could understand but depending how many options you wanted to support it could be a mammoth task. So do you know any other options for manipulating all LR adjustments programmatically? The way...
by Bonzo
2018-03-22T03:44:22-07:00
Forum: Developers
Topic: Is a way to process ssl/proxy url images?
Replies: 11
Views: 22094

Re: Is a way to process proxy url images?

I do not know about proxy URL's but I would say https,tls1.2 is not a valid URL. If you can convert that to a normal URL before sending it to Imagemagick it should work.
by Bonzo
2018-03-22T03:35:44-07:00
Forum: Users
Topic: IM can't handle %% in paths
Replies: 15
Views: 16505

Re: IM can't handle %% in paths

So what you are saying is that you want Imagemagick to be rewritten just to help you? I suggest in your code you copy the file to a location without any % or other problem characters and rename it to make sure there are none in the name. Run the Imagemagick code on the image and save it back to the ...
by Bonzo
2018-03-21T03:37:22-07:00
Forum: Users
Topic: IM can't handle %% in paths
Replies: 15
Views: 16505

Re: IM can't handle %% in paths

So, if "%%" is converted to "%", and you need "%%", then you should type "%%%%".
If you look at the OP's input file path ./karsten\ 93%%/Kalle.png[0] it contains %% along with a white space and both \ and / :shock:
by Bonzo
2018-03-21T00:55:44-07:00
Forum: Users
Topic: IM can't handle %% in paths
Replies: 15
Views: 16505

Re: IM can't handle %% in paths

Why on earth would you want %% in a folder name?

Try putting you full image path in ""

Version 7 uses magick now over convert
by Bonzo
2018-03-12T05:49:17-07:00
Forum: Users
Topic: Join broken lines
Replies: 1
Views: 3943

Re: Join broken lines

I wold suggest you read this then repost: viewtopic.php?f=1&t=9620
by Bonzo
2018-03-04T14:12:25-07:00
Forum: Users
Topic: Text images with unicode chars looking blurry.
Replies: 7
Views: 9088

Re: Text images with unicode chars looking blurry.

I am using Windows 10 and double clicking the file opens it in "Windows font viewer".
by Bonzo
2018-03-04T09:35:27-07:00
Forum: Users
Topic: Split image to 2 files with different width
Replies: 8
Views: 7618

Re: Split image to 2 files with different width

I thought you should be able to use -gravity but it didn't work.
by Bonzo
2018-03-04T08:46:36-07:00
Forum: Users
Topic: Split image to 2 files with different width
Replies: 8
Views: 7618

Re: Split image to 2 files with different width

The problem is your code gets as many images as it can out of the available width with your width setting; hence the 200 wide piece. I am not sure of a way around it other than doing two crops. There may be something here but I could not see anything: https://www.imagemagick.org/Usage/crop/ With V7 ...