We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36403db commit 9215c91Copy full SHA for 9215c91
1 file changed
src/doc/imageoutput.rst
@@ -1455,7 +1455,7 @@ without alteration while modifying the image description metadata:
1455
1456
// Create the output file and copy the image
1457
auto out = ImageOutput::create ("output.jpg");
1458
- out->open (output, out_spec);
+ out->open ("output.jpg", out_spec);
1459
out->copy_image (in);
1460
1461
// Clean up
@@ -1473,7 +1473,7 @@ without alteration while modifying the image description metadata:
1473
1474
# Create the output file and copy the image
1475
out = ImageOutput.create ("output.jpg")
1476
- out.open (output, out_spec)
+ out.open ("output.jpg", out_spec)
1477
out.copy_image (inp)
1478
1479
# Clean up
0 commit comments