Search found 3 matches
- 2012-07-17T23:59:19-07:00
- Forum: Users
- Topic: How to convert image like following effects
- Replies: 6
- Views: 6976
Re: How to convert image like following effects
Sharpen is done after all other actions in the second. In the first it is done before. However again read your image in BEFORE applying an operator on it. It works now, but IMv7 will produce a 'no image for operation' type error. thank you... -------- I am a java programmer. if i use jmagick-6.4.0 ...
- 2012-07-17T23:18:06-07:00
- Forum: Users
- Topic: How to convert image like following effects
- Replies: 6
- Views: 6976
Re: How to convert image like following effects
thank you all. the second replier's code is work, i want to answer other question. What is different between the following two statements A: convert a.jpg -strip -sharpen 0.3 -quality 90% -resize 480x296 -gravity center -fill white -extent 480x360 result_a.jpg B: convert a.jpg -resize 480x296 ...
- 2012-07-17T20:37:43-07:00
- Forum: Users
- Topic: How to convert image like following effects
- Replies: 6
- Views: 6976
How to convert image like following effects
I have 100X100 image(a.jpg) , i want to scale image to 10x10(b.jpg) script like this: convert -sample 10x10 a.jpg b.jpg but i want to the final image size is 30x10 Another way of saying is 10x10 b.jpg is filled into 30x10 image,other part is fill with white color. http://photo.leku.com/p/spots/214 ...