diff --git a/examples/image-conversion.hs b/examples/image-conversion.hs
--- a/examples/image-conversion.hs
+++ b/examples/image-conversion.hs
@@ -11,8 +11,8 @@
 import Servant.JuicyPixels
 
 type ConversionApi
-     = ReqBody '[BMP, GIF, JPEG 50, PNG, TIFF, RADIANCE] DynamicImage
-    :> Post '[BMP, GIF, JPEG 50, PNG, TIFF, RADIANCE] DynamicImage
+     = ReqBody '[BMP, GIF, JPEG 50, PNG, TIFF, RADIANCE, TGA] DynamicImage
+    :> Post '[BMP, GIF, JPEG 50, PNG, TIFF, RADIANCE, TGA] DynamicImage
 
 conversionApi :: Proxy ConversionApi
 conversionApi = Proxy
diff --git a/lib/Servant/JuicyPixels.hs b/lib/Servant/JuicyPixels.hs
--- a/lib/Servant/JuicyPixels.hs
+++ b/lib/Servant/JuicyPixels.hs
@@ -89,3 +89,15 @@
 
 instance MimeUnrender RADIANCE DynamicImage where
     mimeUnrender _ = decodeHDR . BL.toStrict
+
+
+data TGA
+
+instance Accept TGA where
+    contentType _ = "image" M.// "x-targa"
+
+instance MimeRender TGA DynamicImage where
+    mimeRender _ = imageToTga
+
+instance MimeUnrender TGA DynamicImage where
+    mimeUnrender _ = decodeTga . BL.toStrict
diff --git a/servant-JuicyPixels.cabal b/servant-JuicyPixels.cabal
--- a/servant-JuicyPixels.cabal
+++ b/servant-JuicyPixels.cabal
@@ -1,5 +1,5 @@
 name:                servant-JuicyPixels
-version:             0.1.0.0
+version:             0.2.0.0
 homepage:            https://github.com/tvh/servant-JuicyPixels
 license:             GPL-3
 license-file:        LICENSE
@@ -20,7 +20,7 @@
   build-depends:       base >=4.7 && <4.9
                      , bytestring
                      , http-media
-                     , JuicyPixels >=3.2
+                     , JuicyPixels >=3.2.6
                      , servant >=0.4 && <0.5
   hs-source-dirs:      lib
   default-language:    Haskell2010
