Specifying snap raster in QGIS?

QGIS raster projection directly uses the gdalwarp application. It therefore builds a gdal command based on the form, but launces exactly what is written in the "GDAL/OGR cosole call" box. So, for more information about the additionnal command lines, you should refer to gdalwarp

That being said, there is no direct method to snap a raster with gdalwarp. You must therefore note the extent and the pixel size of your expected extent, and use it in the command line. This can be done with the "output file resolution" (for pixel size) and the "georeferenced extent of the output file to be created" (for extent) boxes, or you can directly write it inside "additionnal command line parameter" in the gdal syntax

-tr your_pixel_size_X your_pixel_size_Y -te your_xmin your_xmax your_ymin your_ymax

Note that you can use python to automate the extent extraction (see e.g. here ). You can also use "Raster/Align raster" after reprojecting, but this will cause a double resampling which, for most resmpling method, is not recommended.