Search found 5 matches
- 2013-02-28T05:27:38-07:00
- Forum: Users
- Topic: Alienskin BlowUp like enlargening?
- Replies: 1
- Views: 2513
Alienskin BlowUp like enlargening?
Hey there, I don't know if some of you may know BlowUp from Alienskin. It has a really nice enlargening algorithm. It somehow detects lines in your image and generates a mesh which is used for sharpening/pinching edges. I think this may be similar to this here. http://imagemagick.org/Usage/misc ...
- 2012-03-16T02:27:15-07:00
- Forum: Users
- Topic: Problems with -format
- Replies: 7
- Views: 10867
Re: Problems with -format
Ok.. I hope this is my last question for this thread!
How can I save the width and height values into a variable?
Here is what I tried:
echo off
identify -format %%w 000.png
set width=%%w
echo %width%
This came out:
1778
%w
How can I save the width and height values into a variable?
Here is what I tried:
echo off
identify -format %%w 000.png
set width=%%w
echo %width%
This came out:
1778
%w
- 2012-03-16T01:43:49-07:00
- Forum: Users
- Topic: Problems with -format
- Replies: 7
- Views: 10867
Re: Problems with -format
Awesome!!
Thanks alot Bonzo! And all others.
This works! I will take a look at your site for sure!!
Once Again! Thanks alot!
Thanks alot Bonzo! And all others.
This works! I will take a look at your site for sure!!
Once Again! Thanks alot!
- 2012-03-15T23:32:59-07:00
- Forum: Users
- Topic: Problems with -format
- Replies: 7
- Views: 10867
Re: Problems with -format
Thank you for your answers. Yep, I am under windows and new to batch programming. I have now written the command as follows: identify -format "%[fx:w/72]% by %[fx:h/72]% inches" 000.png My output is still the same: w/72][fx:h/72] inches Other operations work fine, as for example just: identify 000 ...
- 2012-03-15T06:45:11-07:00
- Forum: Users
- Topic: Problems with -format
- Replies: 7
- Views: 10867
Problems with -format
Hey everyone, I am trying to get the image witdth and heigth of an image! I have googled a lot and found this page: http://www.imagemagick.org/script/identify.php Identify has an option -format that can give me the height and width of an image. Unfortunately this does not work for me.. Am I doing ...