Search found 10 matches
- 2018-03-10T15:12:39-07:00
- Forum: Developers
- Topic: Development of an extension for ImageMagick
- Replies: 3
- Views: 13997
Re: Development of an extension for ImageMagick
I thank you for that precise answer. It's perfect, we will be able to realize our filter.
- 2018-03-01T15:08:23-07:00
- Forum: Developers
- Topic: Development of an extension for ImageMagick
- Replies: 3
- Views: 13997
Development of an extension for ImageMagick
Hello, I use ImageMagick a lot in my command line scripts (lots of Linux shell) for automatic processing and format conversion. I would like to develop a filter extension for ImageMagick. What is the best method? My goal is to add a custom filter just before converting to the output format. Ex ...
- 2018-02-22T07:32:14-07:00
- Forum: Users
- Topic: spaces and annotations in filenames
- Replies: 19
- Views: 20877
Re: spaces and annotations in filenames
@snibgo : thanks for that precise answer. I understand now. I am going to modify our workflow to ban the characters ": [ ]"
- 2018-02-22T07:21:49-07:00
- Forum: Users
- Topic: spaces and annotations in filenames
- Replies: 19
- Views: 20877
Re: spaces and annotations in filenames
@Bonzo, @fmw42 : I understand that you are surprised to see colon in the file names. I also agree. In my case, my company offers a web service for my clients (CMS). I do not ask my clients why filenames with colon. I see the errors in the logs of my server and I look for a solution. I found a first ...
- 2018-02-21T14:09:04-07:00
- Forum: Users
- Topic: spaces and annotations in filenames
- Replies: 19
- Views: 20877
Re: spaces and annotations in filenames
Thank you for your answers. snibgo : no, because the colon alone works well (without [0]) identify -format '%w %h' 'filename:.PDF' 600 450 => OK If we add [0], it does not work anymore identify -format '%w %h' 'filename:.PDF'[0] identify: unable to open image 'filename:.PDF[0]': No such file or ...
- 2018-02-21T06:12:47-07:00
- Forum: Users
- Topic: spaces and annotations in filenames
- Replies: 19
- Views: 20877
Re: spaces and annotations in filenames
Okay. But that does not answer my question about the bug.
I just did a new test with a PDF :
I just did a new test with a PDF :
Code: Select all
identify -format '%w %h' 'file name : test2.PDF'[0]
identify: unable to open image 'file name : test2.PDF[0]': No such file or directory @ error/blob.c/OpenBlob/3146.
- 2018-02-19T13:19:22-07:00
- Forum: Users
- Topic: spaces and annotations in filenames
- Replies: 19
- Views: 20877
Re: spaces and annotations in filenames
the ":" character is not allowed in Windows file names but allowed in Unix systems like...
- 2018-02-19T13:17:53-07:00
- Forum: Users
- Topic: spaces and annotations in filenames
- Replies: 19
- Views: 20877
Re: spaces and annotations in filenames
you are right, after verification the problem is the character ":"
sorry for my test error.
Code: Select all
$ identify -format '%w %h' 'file name : test2.jpg'[0]
identify: unable to open image 'file name : test2.jpg[0]': No such file or directory @ error/blob.c/OpenBlob/3146.
- 2018-02-19T07:13:12-07:00
- Forum: Users
- Topic: spaces and annotations in filenames
- Replies: 19
- Views: 20877
Re: spaces and annotations in filenames
Hello, thank you for your reply. I use Bash with ImageMagick 7.0.7-11 You can reproduce the error with any file and even without the ":" character. I do not know if it's a bash bug or an ImageMagick bug. Use of a name with space and quotation marks work well IF there is no annotation "[0]". If there ...
- 2018-02-18T16:52:48-07:00
- Forum: Users
- Topic: spaces and annotations in filenames
- Replies: 19
- Views: 20877
spaces and annotations in filenames
I searched on Google without finding the answer to this question : how to use annotations in special filenames ? ex: identify -format '%w %h' 'file name with spaces : and others caracters (1).jpg[0]' systematically, I get in error "No such file or directory @ error/blob.c/OpenBlob/3146." the only ...