Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am developing my first project with Tapestry and I am about to finish, except for the images..

What do I want? I just need to display an image outside my application, example: /home/app/images/image.jpg

What did I try? I have been "googling" and reading Tapestry5 forums, I found this: http://wiki.apache.org/tapestry/Tapestry5HowToStreamAnExistingBinaryFile

I followed the steps, creating classes but I need to display the image embed on another page (so I can't use ImagePage), I tried this:

On page java class

public StreamResponse getImage() {
        InputStream input = DetallesMultimedia.class
                .getResourceAsStream("/home/santi/Escritorio/evolution-of-mario.jpg"); //On application, i will retrieve this from DB
    return new JPEGInline(input,"hellow");
}

On page template

...
<img src="${image}" alt:image/>
...

or

...
${image}
...

Obviusly, this didn't work and I really don't know how can I do it. I read about loading the image on an event (returning the OutputStream on that event, as it's said in the HowTo linked above) but my english is so bad (I am sure you already noticed) and I don't understand well how can I do that.

Could you help me please?

Thanks you all.

share|improve this question

1 Answer

up vote 0 down vote accepted

I've never seen the examples as on the wiki page. Below some code on how to load an image on the classpath though using a StreamResponse.

@Inject
private ComponentResources resources;

@OnEvent(value = "GET_IMAGE_STREAM_EVENT")
private Object getProfilePic() throws Exception {


    InputStream openStream = DetallesMultimedia.class.getResourceAsStream("/home/santi/Escritorio/evolution-of-mario.jpg");
    byte[] imageBytes = IOUtils.toByteArray(openStream);
    final ByteArrayInputStream output = new ByteArrayInputStream(imageBytes);

    final StreamResponse response = new StreamResponse() {

        public String getContentType() {
           "image/jpegOrPngOrGif";
        }

        public InputStream getStream() throws IOException {
            return output;
        }

        public void prepareResponse(Response response) {
            // add response headers if you need to here
        }

    };
    return response;
}

public String getPicUrl() throws Exception {
    return resources.createFormEventLink("GET_IMAGE_STREAM_EVENT");
}

In your template:

<img src="${picUrl}"/>
share|improve this answer
Hi joostschouten, thank you for answering. I have a question: What means this line "String uri = empty_profile_pic.toClientURL(); "? Also, I am doing something wrong because the image doesn't load, I got exception (Exception in method es.udc.turismo.web.pages.pdi.multimedia.DetallesMultimedia.onActivate(long), parameter #1: Coercion of picUrl to type java.lang.Long (via String --> Long)). It seems I can't display images in a page with onActivate method :S. – Santi Oct 10 '11 at 9:38
The line was a mistake. I took the code from my own page which needed this. I now removed it from my answer. As for your exception, you probably have a Long argument in your onActivate method where you activate the page with a string "picUrl". Tapestry can't figure out what Long "picUrl" should be and throws an exception. Remove the argument or provide a proper Coercion. – joostschouten Oct 10 '11 at 13:11
Thank you again, joostschouten. If I do the Coercion, what I would fix? I mean, I need onActivation to load other data in my DB. I can't delete onActivation and If I do the Coercion what should I do? Map the String to a 0? I think I have to read more about the concept of Coercion anyway. Thanks :) – Santi Oct 10 '11 at 18:07
Your onActivate problem is not related to the question here though. That is a different topic I'd like to answer but please do so in another question. If you us my code above as is it should work. Note that I do not use onActivate. – joostschouten Oct 10 '11 at 20:33
Sure :), I'm afraid I am not explaining my question. I understand your code and I know it works in a page that not requires external data (I need a key of DB to load some data). So I have to remove onActivate (but I can't!!) or work with Coercion to avoid the exception, am I right? Greetings :) – Santi Oct 10 '11 at 22:07
show 4 more comments

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.