public static void rand() {
Random randomNumbers = new Random();
boolean stat;
int min= 11;
int max= 110;
for(int i = 0; i <100;i++)
{
int x = randomNumbers.nextInt(max-min) + min;
if(x % 11 == 0)
{
System.out.println(x + "is divisible by 11");
stat = true;
}
else
{
System.out.println(x + "is not divisible by 11");
stat = false;
}
}
}
我生成的pdf在pdf的左侧,底部和右侧有很大的空白。通过将BufferedImages写入jpeg,我已经确认,从我的Powerpoint提取的图像中不存在那些白色边框。
我正在缩放图像,否则会得到低分辨率的540图像,我正在将2缩放为1080图像