Save image from modeler

1
Can you save a module image from a the modeler into the file systems? Thank you, Andries
asked
3 answers
1

What do you mean by a module image? You can export certain documents (e.g. the domain model) to an image using File > Export to image...

answered
0

Those are images in the modeler, not the same as images in the database. So you need to save those on your local machine and then upload it in the mendix runtime

answered
0

Yes,i can ,Here is my method: public static void SaveDocumentFile(REDocument document, string filePath); public static void SaveDocumentFile(BaseImage image, string filePath, BaseEncoder enc); public static void SaveDocumentFile(List<baseimage> images, string filePath, BaseEncoder enc); public static void SaveDocumentFile(REDocument document, string filePath, BaseEncoder enc);

answered