tweak tags cmd, try and fail to fix natives
This commit is contained in:
parent
776e4908ba
commit
b4c5885435
3 changed files with 30 additions and 29 deletions
|
@ -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();
|
||||
|
|
|
@ -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");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue