Rotate images by any arbitrary angle with options for background color and output format
file· File result
Quick start
Call this tool from your code in three languages.
cURL
# 1) Upload each file first → returns { filePath }
curl -X POST 'https://api.elysiatools.com/upload/image-rotate-arbitrary' \
-F 'file=@/path/to/imageFile.ext'# 2) Call the tool with the returned filePath values
curl -X POST 'https://api.elysiatools.com/en/api/tools/image-rotate-arbitrary' \
-F 'imageFile=/path/to/file.ext' \
-F 'angle=45' \
-F 'backgroundColor=Select background color for rotation...' \
-F 'outputFormat=original' \
-F 'quality=90'
Output quality for lossy formats (JPEG, WebP). Higher = better quality but larger file size
File-type parameters must be uploaded first via POST /upload/image-rotate-arbitrary, then the returned filePath is passed to the corresponding file field.