Package kr.pe.okjsp.util

Examples of kr.pe.okjsp.util.Thumbnailer


      throw new ServletException("need login");
    }
    // �ӽõ��丮�� ���� ����
    File file = saveToTemp(request);
    // ���� ������¡
        Thumbnailer tt = new Thumbnailer(file.getPath(),
            getServletContext().getRealPath(request.getContextPath())
        + "/profile/"+ sid + ".jpg",
                385, 385);
        tt.createThumbnail();
        try {
      Thread.sleep(1000);
    } catch (InterruptedException e1) {
    }
        file.delete();
View Full Code Here

TOP

Related Classes of kr.pe.okjsp.util.Thumbnailer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.