Hi all,

I have a dexterity Plone content type. It's called "Picture" :

class IPicture(form.Schema):
    """A Picture of a location
    """

    title = schema.TextLine(
            title=_(u"Title"),
        )

    picture = NamedImage(
            title=_(u"Picture"),
            description=_(u"Please upload an image"),
            required=False,
        )


On Archetypes, when you upload images, plone makes some scaled images from
it. How do I enable that behavior in my dexterity conten-type?

Do I have to write the code or is there already some package that I can
reuse (not speaking of PIL)?

---
Noe
_______________________________________________
Product-Developers mailing list
[email protected]
http://lists.plone.org/mailman/listinfo/product-developers

Reply via email to