Re: [google-appengine] From PDF to Image

2012-01-30 Thread Max
This is like: from google.appengine.api import conversion pippo = pippo.pdf (I'll get this from an upload) asset = conversion.Asset("application/pdf", pippo, "pippo.pdf") conversion = conversion.Conversion(asset, "image/png") -- You received this message because you are subscribed to the

Re: [google-appengine] From PDF to Image

2012-01-30 Thread Max
This is easy. In the synchronously way what is *"some data"*? -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine/-/qSy_wJsoXSYJ. To post to this group,

Re: [google-appengine] From PDF to Image

2012-01-30 Thread Barry Hunter
On Mon, Jan 30, 2012 at 3:18 PM, Massimiliano wrote: > I don't know EC2. Is it easy? If you have to ask, I have to say No. In the meantime, App Engine , does have an experimental Conversion API http://code.google.com/appengine/docs/python/conversion/overview.html that should be able to convert a

Re: [google-appengine] From PDF to Image

2012-01-30 Thread Massimiliano
I don't know EC2. Is it easy? 2012/1/30 Joshua Smith > Set up a ghostscript-based service in Amazon EC2 to do the rendering for > you. > > Ghostscript on linux is pretty awesome. Everything else is very not > awesome. (The phrase "very not awesome" copyright 2012, Joshua Smith :) > > > On Jan 3

Re: [google-appengine] From PDF to Image

2012-01-30 Thread Joshua Smith
Set up a ghostscript-based service in Amazon EC2 to do the rendering for you. Ghostscript on linux is pretty awesome. Everything else is very not awesome. (The phrase "very not awesome" copyright 2012, Joshua Smith :) On Jan 30, 2012, at 6:55 AM, Max wrote: > Hi, > I'm building a service where

[google-appengine] From PDF to Image

2012-01-30 Thread Max
Hi, I'm building a service where the operator could check the fax arrived easily and fast. All the faxes arrive in an email address attached as PDF, so I'm thinking to store them in a Blobstore like images and then I can serve them in a HTML page to the operators. (I need thumbnails and everyth