|
@@ -259,7 +259,7 @@ public class ImageUtil {
|
|
}
|
|
}
|
|
{
|
|
{
|
|
ByteArrayOutputStream os = new ByteArrayOutputStream();
|
|
ByteArrayOutputStream os = new ByteArrayOutputStream();
|
|
- drawLaugh(72, isTextBlack, os);
|
|
|
|
|
|
+ drawLaugh(120, isTextBlack, os);
|
|
os.close();
|
|
os.close();
|
|
InputStream is = new ByteArrayInputStream(os.toByteArray());
|
|
InputStream is = new ByteArrayInputStream(os.toByteArray());
|
|
BufferedImage bi = ImageIO.read(is);
|
|
BufferedImage bi = ImageIO.read(is);
|
|
@@ -271,7 +271,7 @@ public class ImageUtil {
|
|
}
|
|
}
|
|
{
|
|
{
|
|
ByteArrayOutputStream os = new ByteArrayOutputStream();
|
|
ByteArrayOutputStream os = new ByteArrayOutputStream();
|
|
- drawCry(72, isTextBlack, os);
|
|
|
|
|
|
+ drawCry(120, isTextBlack, os);
|
|
os.close();
|
|
os.close();
|
|
InputStream is = new ByteArrayInputStream(os.toByteArray());
|
|
InputStream is = new ByteArrayInputStream(os.toByteArray());
|
|
BufferedImage bi = ImageIO.read(is);
|
|
BufferedImage bi = ImageIO.read(is);
|
|
@@ -294,22 +294,22 @@ public class ImageUtil {
|
|
}
|
|
}
|
|
{
|
|
{
|
|
OutputStream os = new FileOutputStream("Laugh1.bmp");
|
|
OutputStream os = new FileOutputStream("Laugh1.bmp");
|
|
- drawLaugh(72, false, os);
|
|
|
|
|
|
+ drawLaugh(120, false, os);
|
|
os.close();
|
|
os.close();
|
|
}
|
|
}
|
|
{
|
|
{
|
|
OutputStream os = new FileOutputStream("Laugh2.bmp");
|
|
OutputStream os = new FileOutputStream("Laugh2.bmp");
|
|
- drawLaugh(72, true, os);
|
|
|
|
|
|
+ drawLaugh(120, true, os);
|
|
os.close();
|
|
os.close();
|
|
}
|
|
}
|
|
{
|
|
{
|
|
OutputStream os = new FileOutputStream("Cry1.bmp");
|
|
OutputStream os = new FileOutputStream("Cry1.bmp");
|
|
- drawCry(72, false, os);
|
|
|
|
|
|
+ drawCry(120, false, os);
|
|
os.close();
|
|
os.close();
|
|
}
|
|
}
|
|
{
|
|
{
|
|
OutputStream os = new FileOutputStream("Cry2.bmp");
|
|
OutputStream os = new FileOutputStream("Cry2.bmp");
|
|
- drawCry(72, true, os);
|
|
|
|
|
|
+ drawCry(120, true, os);
|
|
os.close();
|
|
os.close();
|
|
}
|
|
}
|
|
|
|
|