FileStoredPngMapleCanvas.java
上传用户:gwt600
上传日期:2021-06-03
资源大小:704k
文件大小:2k
源码类别:

游戏

开发平台:

Java

  1. /*
  2. This file is part of the OdinMS Maple Story Server
  3.     Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc> 
  4.                        Matthias Butz <matze@odinms.de>
  5.                        Jan Christian Meyer <vimes@odinms.de>
  6.     This program is free software: you can redistribute it and/or modify
  7.     it under the terms of the GNU Affero General Public License version 3
  8.     as published by the Free Software Foundation. You may not use, modify
  9.     or distribute this program under any other version of the
  10.     GNU Affero General Public License.
  11.     This program is distributed in the hope that it will be useful,
  12.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.     GNU Affero General Public License for more details.
  15.     You should have received a copy of the GNU Affero General Public License
  16.     along with this program.  If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. package net.sf.odinms.provider.xmlwz;
  19. import java.awt.image.BufferedImage;
  20. import java.io.File;
  21. import java.io.IOException;
  22. import javax.imageio.ImageIO;
  23. import net.sf.odinms.provider.MapleCanvas;
  24. public class FileStoredPngMapleCanvas implements MapleCanvas {
  25. private File file;
  26. private int width;
  27. private int height;
  28. private BufferedImage image;
  29. public FileStoredPngMapleCanvas(int width, int height, File fileIn) {
  30. this.width = width;
  31. this.height = height;
  32. this.file = fileIn;
  33. }
  34. @Override
  35. public int getHeight() {
  36. return height;
  37. }
  38. @Override
  39. public int getWidth() {
  40. return width;
  41. }
  42. @Override
  43. public BufferedImage getImage() {
  44. loadImageIfNecessary();
  45. return image;
  46. }
  47. private void loadImageIfNecessary() {
  48. if (image == null) {
  49. try {
  50. image = ImageIO.read(file);
  51. // replace the dimensions loaded from the wz by the REAL dimensions from the image - should be equal tho
  52. width = image.getWidth();
  53. height = image.getHeight();
  54. } catch (IOException e) {
  55. throw new RuntimeException(e);
  56. }
  57. }
  58. }