Search found 1 match
- 2014-09-29T06:32:54-07:00
- Forum: Users
- Topic: Java ProcessBuilder and backslashes
- Replies: 0
- Views: 3946
Java ProcessBuilder and backslashes
Im trying to run the resize command with conditional shrinking through java. the following command works in the terminal window: /usr/bin/convert my.jpg -resize 1280x720\> output.jpg But the following does not resize the photo: String[] command = {"/usr/bin/convert", "my.jpg", "-resize", "1280x720 ...