try using the density and units options, e.g.
-density 204x98 -units PixelsPerInch
- Martin
Creating a fax compatible tiff
Try using -monochrome after the -density and -resize options.
Since these are operators, when monochrome is done first, it gets converted fine. Next, when -density is done, it may actually convert the monochrome image to grayscale or color. Since it is no longer monochrome, then compression cannot be G3. So, I'd suggest trying
Msgs = img.Convert(RutaIN, "-density", "204x196", "-resize", "1728x", "-monochrome", "-compress", "Fax", RutaOUT)
Gary
Since these are operators, when monochrome is done first, it gets converted fine. Next, when -density is done, it may actually convert the monochrome image to grayscale or color. Since it is no longer monochrome, then compression cannot be G3. So, I'd suggest trying
Msgs = img.Convert(RutaIN, "-density", "204x196", "-resize", "1728x", "-monochrome", "-compress", "Fax", RutaOUT)
Gary