sprint 2 commencer

This commit is contained in:
AlgaLaptop
2025-12-26 19:49:39 +01:00
parent 4bed23b051
commit fa80b2ce38
4 changed files with 55 additions and 7 deletions
@@ -15,9 +15,10 @@ public class ConverterController {
BufferedImage image;
try {
image = ImageIO.read(f);
} catch (IOExeption e){
} catch (IOException e){
return null;
}
return image;
}
}
+18
View File
@@ -0,0 +1,18 @@
package fr.iutfbleau.sae.mpif;
import fr.iutfbleau.sae.util.bitOutputStream;
public class PIFWriter {
public void writeHeader(bitOutputStream out,int width, int height){
}
public void writeTables(bitOutputStream out, Map<Integer,Integer> canonicalCodes){
}
public void encodePixels(bitOutputStream out){
}
}