Thanks. Now I recognize how Fred's placement of the "%~a" option placed the -density BEFORE the eps was specified.
Please: For those of us who need guidance - when you provide a suggested solution - please explain how your solution fixes the stated problem so we can understand.
Search found 9 matches
- 2017-11-26T16:44:31-07:00
- Forum: Users
- Topic: How to Use DENSITY setting BEFORE Vector Designation
- Replies: 4
- Views: 5042
- 2017-11-26T16:18:46-07:00
- Forum: Users
- Topic: How to Use DENSITY setting BEFORE Vector Designation
- Replies: 4
- Views: 5042
Re: How to Use DENSITY setting BEFORE Vector Designation
Thanks for your guess, but you did not use the -density option BEFORE specifying the VECTOR format. For vector graphics, ImageMagick has both a render resolution and an output size that are independent of each other so the density must be specified BEFORE the VECTOR format.
- 2017-11-26T14:46:32-07:00
- Forum: Users
- Topic: How to Use DENSITY setting BEFORE Vector Designation
- Replies: 4
- Views: 5042
How to Use DENSITY setting BEFORE Vector Designation
It is recommended to use the -density option BEFORE the vector file format is specified in the command to preserve output quality. For example: convert -density 300 "C:\Originals\File.eps" -depth 8 "C:\Previews\File.PNG" This works for individual images, but how do you enter -depth options BEFORE ...
- 2017-10-25T23:08:52-07:00
- Forum: Users
- Topic: Recursive Convert with ImageMagick and Powershell
- Replies: 0
- Views: 16934
Recursive Convert with ImageMagick and Powershell
I had a large collection of EPS images in several folders that I had to convert to PNG. I tested many Image Conversion programs, but most could not handle recursive conversion of Vector to Raster without choking (most displayed errors after processing a limited number of files. Some could not ...
- 2017-10-25T23:00:25-07:00
- Forum: Users
- Topic: Mogrify not working on batch
- Replies: 2
- Views: 4489
Re: Mogrify not working on batch
Here is a useful Powershell script the converts recursively. you can modify it to run any conversions or file processing. If desired, you can run Mogrify instead of Convert. # Powershell script to recursively convert image formats # Configuration $srcfolder = "C:\test\Animals" $destfolder = "C:\test ...
- 2017-08-26T21:32:01-07:00
- Forum: Users
- Topic: Converting EPS to jpg with jagged edge issue
- Replies: 18
- Views: 17230
Re: Converting EPS to jpg with jagged edge issue
I just finished researching a way I could convert some 60,000 EPS files to raster format and (through research and testing) produced the following Powershell script that converts recursively from EPS to Raster (JPG, PNG, etc). I hope you can use it. Two things I discovered when converting Vector to ...
- 2015-01-17T18:20:51-07:00
- Forum: Users
- Topic: Converting TTF Fonts to PNG
- Replies: 6
- Views: 16623
Re: Converting TTF Fonts to PNG
snibgo: It did NOT work for me. I even replaced the %IM% with the actual file location of ImageMagick and I entered -font webding.ttf after the convert command. It gracefully goes through the symbols and new line entries, but only generates one file named ch_!NUM!.png. One thing I did notice is that ...
- 2015-01-16T15:17:15-07:00
- Forum: Users
- Topic: Converting TTF Fonts to PNG
- Replies: 6
- Views: 16623
Re: Converting TTF Fonts to PNG
snibgo: Thanks. The alphabet.txt file works well for creating all symbols in ONE file.
Do you have any recommendations for converting all symbols in the TTF file to individual .PNG files?
Do you have any recommendations for converting all symbols in the TTF file to individual .PNG files?
- 2015-01-12T15:07:07-07:00
- Forum: Users
- Topic: Converting TTF Fonts to PNG
- Replies: 6
- Views: 16623
Converting TTF Fonts to PNG
I have found that the following DOS batch file works well for converting Symbol TTF fonts to PNG files, but I also want to convert ALL symbols in the Symbol Font. I cant find a way to include the lower case ALPHABETIC and NON-ALPHABETIC and NUMERIC characters in the CONVERT process. Can someone ...