X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2Fpython%2Ftags.c;h=455e87fc932cfab4bf7b5561ce52b16ddfedffa7;hb=9ed9a87914fc9a590967d46de404e0f6290b7bb2;hp=f28f1b667b9134f0ef220b1c9d834bd8c5cc01a3;hpb=459a2fa9fdbd9f8e41d5911e2aafce21c0fc7225;p=swftools.git diff --git a/lib/python/tags.c b/lib/python/tags.c index f28f1b6..455e87f 100644 --- a/lib/python/tags.c +++ b/lib/python/tags.c @@ -5,6 +5,7 @@ #include "tag.h" #include "tags.h" #include "image.h" +#include "../png.h" //---------------------------------------------------------------------------- @@ -48,7 +49,7 @@ static PyObject* f_DefineFont(PyObject* self, PyObject* args, PyObject* kwargs) if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|s", kwlist, &filename)) return NULL; - font = swf_LoadFont(filename); + font = swf_LoadFont(filename, 0); if(!font) { PyErr_SetString(PyExc_Exception, setError("Could not load %s", filename)); return NULL; @@ -105,7 +106,7 @@ static int po_parse(tag_internals_t*self) SWFPLACEOBJECT* swfpo = malloc(sizeof(SWFPLACEOBJECT)); swf_GetPlaceObject(self->tag, swfpo); i->po = swfpo; - swf_DeleteTag(self->tag);self->tag = 0; + swf_DeleteTag(0, self->tag);self->tag = 0; if(i->po->id) { i->character = tagmap_id2obj(self->tagmap, i->po->id); @@ -185,7 +186,7 @@ static PyObject* po_create(PyObject* self, PyObject* args, PyObject* kwargs,char po->depth = depth; po->clipdepth = clipdepth; po->ratio = ratio; - po->name = name; + po->name = (unsigned char*)name; po->move = move; if(clipdepth) po->clipdepth = clipdepth; if(matrix) po->matrix = matrix_getMatrix(matrix); @@ -419,7 +420,7 @@ static int sprite_setattr(tag_internals_t*self,char*a, PyObject*obj) { sprite_internal_t*si = (sprite_internal_t*)self->data; if(self->tag) { - swf_DeleteTag(self->tag); + swf_DeleteTag(0, self->tag); self->tag = 0; } if(!strcmp(a, "tags")) { @@ -572,7 +573,7 @@ static int image_parse(tag_internals_t*self) i->isindexed = 0; i->islossless = 1; - swf_DeleteTag(self->tag);self->tag = 0; + swf_DeleteTag(0, self->tag);self->tag = 0; return 1; } static int imagetag_getWidth(PyObject* self) @@ -624,6 +625,28 @@ static PyObject* image_getattr(tag_internals_t*self,char*a) } return 0; } + +static PyObject* image_save(PyObject*self, PyObject*args) +{ + tag_internals_t*itag = tag_getinternals(self); + if(!image_parse(itag)) + return PY_ERROR("Couldn't parse image"); + image_internal_t*fi = (image_internal_t*)itag->data; + + char*filename = 0; + if(!PyArg_ParseTuple(args, "s", &filename)) + return NULL; + + writePNG(filename, (unsigned char*)fi->rgba ,fi->width, fi->height); + + return PY_NONE; +} + +static PyMethodDef image_methods[] = +{{"save", image_save, METH_VARARGS, "saves an image as PNG"}, + {NULL, NULL, 0, NULL} +}; + static tag_internals_t image_tag = { parse: image_parse, @@ -631,7 +654,7 @@ static tag_internals_t image_tag = dealloc: image_dealloc, getattr: image_getattr, setattr: 0, - tagfunctions: 0, + tagfunctions: image_methods, datasize: sizeof(image_internal_t), }; //---------------------------------------------------------------------------- @@ -661,7 +684,7 @@ static int shape_parse(tag_internals_t*self) SHAPE2* shape2 = malloc(sizeof(SHAPE2)); swf_ParseDefineShape(self->tag, shape2); i->shape2 = shape2; - swf_DeleteTag(self->tag);self->tag = 0; + swf_DeleteTag(0, self->tag);self->tag = 0; return 1; } static void shape_dealloc(tag_internals_t*self)