<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css" style="display:none;"><!-- P {margin-top:0;margin-bottom:0;} --></style>
</head>
<body dir="ltr">
<div id="divtagdefaultwrapper" style="font-size:12pt;color:#000000;background-color:#FFFFFF;font-family:Calibri,Arial,Helvetica,sans-serif;">
<p>Hello,<br>
<br>
I would like to create a new .tif file in GDAL C# by using the driver.<a href="http://www.gdal.org/classGDALDriver.html#a2c897da2a6e25169cccc49ef48797ce1">CreateCopy</a> function.<br>
I have been reading <a title="Ctrl+Click or tap to follow the link" href="http://www.gdal.org/gdal_tutorial.html">
gdal tutorial page</a> and it looks like the python version of driver.CreateCopy function supports the use of additional arguments. For example, it supports using 'TILED=YES' argument:<br>
</p>
<blockquote id="yui_3_16_0_ym19_1_1461348079739_2869">
<p id="yui_3_16_0_ym19_1_1461348079739_2793" data-setdir="false" dir="ltr">src_ds = gdal.Open( src_filename )<br id="yui_3_16_0_ym19_1_1461348079739_2501">
</p>
<p id="yui_3_16_0_ym19_1_1461348079739_2707" data-setdir="false" dir="ltr">dst_ds = driver.CreateCopy( dst_filename, src_ds, 0,
<br id="yui_3_16_0_ym19_1_1461348079739_2502">
                            [ <strong>'TILED=YES'</strong>, 'COMPRESS=PACKBITS' ] )</p>
</blockquote>
<p>I assume this means it can also support an argument like: <strong>"-outsize 50% 50%"</strong> ?<br>
</p>
<br>
<p>If this is so, then how can I use the same argument ("-outsize 50% 50%") in C# version of driver.CreateCopy function? Something like:<br>
</p>
<blockquote id="yui_3_16_0_ym19_1_1461348079739_2839">
<p id="yui_3_16_0_ym19_1_1461348079739_2830" data-setdir="false" dir="ltr">driver.CreateCopy(filePath, dataset, False,
<strong>"-outsize 50% 50%"</strong>, null, null);</p>
</blockquote>
?<br>
<br>
Thank you.<br>
<br>
Didier<br>
<p></p>
</div>
</body>
</html>