More free conversions, where you upload. The Fylane extension does the same work inside any upload form, on its own free share every day.About the extension
How to convert SVG to JPG
- Drop the SVG.
- Pick a quality and the background.
- Press Convert and download the JPG.
What happens to your file
The drawing is rendered on Fylane’s servers at 300 dpi of its declared size, its transparent areas filled with the background you chose (JPG has no transparency), and encoded at your quality.
Questions
PNG or JPG for a logo?
PNG keeps transparency and hard edges exact; JPG is smaller and what many upload forms insist on. For a logo on a page, PNG; for a form, JPG.
Related tools
Do this in code
curl -X POST https://api.fylane.dev/v1/jobs \
-H "Authorization: Bearer $FYLANE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"file_id": "<file id>",
"operation": "image.convert",
"options": {
"format": "jpeg",
"quality": 82,
"background": "#ffffff"
}
}'The same operation, image.convert — Re-encode to WebP, JPEG, PNG or AVIF at your quality. Upload first with the quickstart; every option is on the operations page. 500 free credits a month, then $5 per thousand.