public class Oct17 { static boolean sameSize(Picture p1, Picture p2) { if (p1.getHeight() == p2.getHeight() && p1.getWidth() == p2.getWidth()) { return true ; } else { return false ; } } public static Picture blendPicts(Picture p1, Picture p2) { Picture pn = new Picture(p1.getWidth(), p1.getHeight()) ; for (int x=0; x