tweak tags cmd, try and fail to fix natives

This commit is contained in:
murm 2023-03-17 01:00:59 -04:00
parent 776e4908ba
commit b4c5885435
3 changed files with 30 additions and 29 deletions

View file

@ -7,7 +7,7 @@ using namespace vips;
char *Explode(string type, string *outType, char *BufferData,
size_t BufferLength, ArgumentMap Arguments, size_t *DataSize) {
bool implode = GetArgument<bool>(Arguments, "implode");
bool implode = GetArgumentWithFallback<bool>(Arguments, "implode", false);
string basePath = GetArgument<string>(Arguments, "basePath");
VOption *options = VImage::option();

View file

@ -7,7 +7,7 @@ using namespace vips;
char *Reddit(string type, string *outType, char *BufferData,
size_t BufferLength, ArgumentMap Arguments, size_t *DataSize) {
string text = GetArgument<string>(Arguments, "text");
string text = GetArgumentWithFallback<string>(Arguments, "text", "");
string basePath = GetArgument<string>(Arguments, "basePath");
VOption *options = VImage::option()->set("access", "sequential");