Skip to content

Free toolsImages

TGA to JPG

A render or a screenshot in Targa form, as the JPG every app and chat shows.

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 TGA to JPG

  1. Drop the TGA.
  2. Pick a quality.
  3. Press Convert and download the JPG.

What happens to your file

ImageMagick reads the Targa file on Fylane’s servers into a lossless picture, transparency is flattened on white because a JPG has none, and the pipeline encodes a JPEG at the quality you pick. Deleted on schedule.

Questions

JPG or PNG for a texture?

PNG — it keeps every pixel and the alpha. JPG is for sending a look at the render, not for putting it back in the engine.

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
    }
  }'

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.