--- /dev/null
+ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC3vHNE7na68aUPFwAK4h3VW+PR4GZaLsTCdySLdt8974jKltMDfWdEbM//mQOm4nOLDkPkbn+TX0GuTNu/SnFTP/qnG7e+p+pqhuYrvw9CHBHtsGoPZS1ZWs53wuXbuJmYTzJMaMV+dibRh2rX/uzH7dBNVQJMGFcQkjrq/UnhJTgKZPprhx2tDV4Rm72GXH4JOi+yautM7jK21gpxdFUJy7VaNaPB1iqcCikn+htCNs1n8BjVRwAMPI9AB6eEgfX68DyVF80TGLyWxlCumFOZXDELhOneJtO0zFMSEuBVXbPm2fNq1jaMaeqgmZqQiZNM0o4hqW/ZLcRH0k+gGXHH extranet@amarcord.cubedesigners.com
\ No newline at end of file
--- /dev/null
+<?php
+
+namespace Fluidbook\Farmer;
+
+use Fluidbook\Tools\Jobs\ProcessFile;
+
+class Process extends ProcessFile
+{
+ protected $page;
+ protected $file;
+
+ public function __construct($file, $page, $format = 'jpg', $resolution = 150, $withGraphics = true, $withTexts = true, $version = 'html')
+ {
+ $this->setFile($file);
+ $this->setPage($page);
+ parent::__construct($format, $resolution, $withGraphics, $withTexts, $version);
+ }
+
+ /**
+ * @param mixed $page
+ */
+ public function setPage($page): void
+ {
+ $this->page = $page;
+ }
+
+ public function getPage(): int
+ {
+ return $this->page;
+ }
+
+ public function getOut()
+ {
+ $f = $this->getFile();
+ }
+
+ /**
+ * @return mixed
+ */
+ public function getFile()
+ {
+ return $this->file;
+ }
+
+ /**
+ * @param mixed $file
+ */
+ public function setFile($file): void
+ {
+ $this->file = $file;
+ }
+
+
+}
\ No newline at end of file