Search found 2972 matches

by Bonzo
2018-01-22T13:47:46-07:00
Forum: Users
Topic: Use imagemagick to find recurring patterns in waveform ?
Replies: 5
Views: 5044

Re: Use imagemagick to find recurring patterns in waveform ?

I would guess you could do a sub image? search but how do you decide what to search for?
by Bonzo
2018-01-22T11:08:32-07:00
Forum: Users
Topic: Using Filters for resizing?
Replies: 2
Views: 2888

Re: Using Filters for resizing?

What is your question? Below some old php code of mine that will resize using all the available filters. Otherwise you could probably speed up your process by only reading in the image once and then saving the two results. // Build the array of filters to be used exec("convert -list filter"...
by Bonzo
2018-01-21T04:16:59-07:00
Forum: Users
Topic: Combining images with resize
Replies: 3
Views: 3584

Re: Combining images with resize

Some if not all of the interactive work could be done with JavaScript.
by Bonzo
2018-01-19T00:44:51-07:00
Forum: Users
Topic: Face identifications
Replies: 1
Views: 2575

Re: Face identifications

There are threads about that on the forum already and there is no easy way to do it in Imagemagick.

From memory I used open CV when I tried it out and it was quite successful.
by Bonzo
2018-01-18T13:30:43-07:00
Forum: Users
Topic: Output file name
Replies: 10
Views: 9672

Re: Output file name

Off topic: I see you have made use of -print now fmw42 8)
by Bonzo
2018-01-17T15:38:17-07:00
Forum: Users
Topic: How to colorize an image?
Replies: 13
Views: 22279

Re: How to colorize an image?

You can use:

Name Cyan

HEX #00ffff
You may need use ' around the colour '#00ffff'

RGB rgb\(0,255,255\)

RGBA rgba\(0,255,255,1\)

HSL hsl\(180,100,50\)

HSLA hsla\(180,100,50,1.0\)

CMYK cmyk\(100,0,0,0\)

CMYKA cmyka\(100,0,0,0,100\)
by Bonzo
2018-01-17T07:12:48-07:00
Forum: Users
Topic: How to colorize an image?
Replies: 13
Views: 22279

Re: How to colorize an image?

Please see this post and add the extra details: viewtopic.php?f=1&t=9620
by Bonzo
2018-01-16T10:43:46-07:00
Forum: Users
Topic: How feasible is it by using ImageMagick to extract the town/city name of the place from the exif data(GPS information) ?
Replies: 7
Views: 8276

Re: How feasible is it by using ImageMagick to extract the town/city name of the place from the exif data(GPS informatio

Even if you know the lat on long I can not see how you will be able to find the city. There are databases for cities online but these are points in the centre. You would need to add a tolerance; for example London has an area of 1,572 km² Paris has an area of 105.4 km² but has all the outlying areas...
by Bonzo
2018-01-15T04:58:15-07:00
Forum: Consulting
Topic: Make image file using modular photos
Replies: 1
Views: 48825

Re: Make image file using modular photos

You might be able to use JavaScript if you want to make it interactive: http://jsfiddle.net/fabricjs/S9sLu/ https://codepen.io/dlouise/pen/NPZMjo EDIT: Not sure how you would easily get a final image from this method unless a screen grab or possibly pass the details onto Imagemagk where you are back...
by Bonzo
2018-01-12T14:14:09-07:00
Forum: Users
Topic: opacity inner boarder to pic
Replies: 22
Views: 13344

Re: opacity inner boarder to pic

What EXIF data do you want?
by Bonzo
2018-01-12T06:54:26-07:00
Forum: Users
Topic: Convert PDS image with mutliple channels into png/jpg
Replies: 4
Views: 4439

Re: Convert PDS image with mutliple channels into png/jpg

Unfortunately i can't share to you the image since i'm not the owner of it
Not really an excuse - create a similar one that is not confidential.
by Bonzo
2018-01-11T04:15:21-07:00
Forum: Developers
Topic: Image Magik is having a hard time with 14 Bits Per Sample
Replies: 26
Views: 37405

Re: Image Magik is having a hard time with 14 Bits Per Sample

NEF seems to be a problem format as it comes up now and again. I would suggest searching the forum as there are other posts. In fact one users image was to red!
by Bonzo
2018-01-05T05:42:42-07:00
Forum: Bugs
Topic: PSD to PNG layer issue
Replies: 3
Views: 7917

Re: PSD to PNG layer issue

A PSD file still contains all the layers and the first layer is the completed image. So try:

Code: Select all

convert psd_test.psd[0] test.png
by Bonzo
2018-01-05T05:14:48-07:00
Forum: IMagick
Topic: Uncaught ImagickException's on readImageFile
Replies: 8
Views: 20383

Re: Uncaught ImagickException's on readImageFile

It has not been said directly but the people who maintain Imagick are not the people who maintain Imagemagick. I would try and find a dedicated Imagick forum and post there.
by Bonzo
2018-01-04T05:23:47-07:00
Forum: Users
Topic: label:@filename not working
Replies: 13
Views: 8441

Re: label:@filename not working

What operating system are you using?