Re: [appengine-java] Re: Output encoding / JPEG does not seem to work

2010-11-22 Thread Tatyana
No problem. Would you like to post your code so we can help? The code I sent wasn't for blobs tore also, it works however. Sent from my iPad On Nov 22, 2010, at 6:27 PM, John wrote: > Sorry Kellin, did not mean to reply to your post. The code I am talking about > is not related to blobstore.

Re: [appengine-java] Re: Output encoding / JPEG does not seem to work

2010-11-22 Thread John
Sorry Kellin, did not mean to reply to your post. The code I am talking about is not related to blobstore. -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. To post to this group, send email to google-appengine-j...@googlegroups.com.

[appengine-java] Re: Output encoding / JPEG does not seem to work

2010-11-22 Thread John
It is on production server that I tried - no luck. Did you try successfully on production to tweak the jpeg quality and get different sizes ? John -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. To post to this group, send email t

Re: [appengine-java] Re: Output encoding / JPEG does not seem to work

2010-11-22 Thread Tatyana
Code works fine on development and production servers for couple of month, you are probably having bug in your code. When you browsing your code please verify the type of Blob field used for image source file (in byte array). On Sun, Nov 21, 2010 at 10:25 PM, John wrote: > It is on production se

[appengine-java] Re: Output encoding / JPEG does not seem to work

2010-11-22 Thread John
It is on production server that I tried - no luck. Did you try successfully on production to tweak the jpeg quality and get different sizes ? John -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. To post to this group, send email t

Re: [appengine-java] Re: Output encoding / JPEG does not seem to work

2010-11-16 Thread Tatyana
The link to Google App Engine images API overview http://code.google.com/appengine/docs/java/images/overview.html This code works for transformation ImagesService imageService = ImagesServiceFactory.getImagesService(); Image origImage = ImagesServiceFactory.makeImage(byteArray); Blob origBl

[appengine-java] Re: Output encoding / JPEG does not seem to work

2010-11-16 Thread Peter Liu
Are you using dev server? The image service on dev server does the most basic thing possible and ignore most params. You might have issue working with PNG files as well. Deploy to a live test server and the image service should work. By default, jpeg encoding is quality 85 (according to my trial