Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am stuck on an obvious one:

How to render an image from a controller using Play 2.0 ?

With play 1.0 there was a renderBinary() method. It is now gone.

Play-RC1 only defined 3 content types: Txt, Html and Xml....

Therefore, how to serve a binary from the controller?

share|improve this question

3 Answers

up vote 4 down vote accepted

In Scala with Play 2.x, instead of renderBinary() or Binary() juste use

Ok(byteArray).as(mimeType)

In the previous example, this gives:

import play.api._
import play.api.Play.current
import play.api.mvc._

object Application extends Controller {

  def index = Action {
    val app = Play.application
    var file = Play.application.getFile("pics/pic.jpg")
    val source = scala.io.Source.fromFile(file)(scala.io.Codec.ISO8859)
    val byteArray = source.map(_.toByte).toArray
    source.close()

    Ok(byteArray).as("image/jpeg")
  }
}

Hope this helps.

share|improve this answer

Here's a Scala solution:

package controllers

import play.api._
import play.api.Play.current
import play.api.mvc._

object Application extends Controller {

  def index = Action {
    val app = Play.application
    var file = Play.application.getFile("pics/pic.jpg")
    val source = scala.io.Source.fromFile(file)(scala.io.Codec.ISO8859)
    val byteArray = source.map(_.toByte).toArray
    source.close()

    Binary(byteArray, None, "image/jpeg");
  }
}

Binary is a method of Controller, just like Ok. The source code in Results.scala suggests it will be deleted:

/** To be deleted... */
def Binary(data: Array[Byte], length: Option[Long] = None, contentType: String = "application/octet-stream") = {

  val e = Enumerator(data)

  SimpleResult[Array[Byte]](header = ResponseHeader(
    OK,
    Map(CONTENT_TYPE -> contentType) ++ length.map(length =>
      Map(CONTENT_LENGTH -> (length.toString))).getOrElse(Map.empty)),
    body = e)

}

But there is no suggestion of what to use instead. I suppose one could simply create one's own object to do this if required.

share|improve this answer
1  
thank you. I should have clarified... what about a Java version ? – Olivier Refalo Jan 23 '12 at 15:38

In Java, as per latest Play 2.0 code, Results class contains a method status which can receive a byte[] as parameter, which should be of use for your scenario.

share|improve this answer
thank you, been waiting for this method... – Olivier Refalo Feb 8 '12 at 17:17
@OlivierRefalo you are welcome :) – Pere Villega Feb 8 '12 at 17:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.