묻고답하기
본문에 이미지 자동 삽입관련 입니다.
2009.09.06 21:40
본문에 이미지를 자동으로 첨부하는 기능이 필요해 검색하던중 좋은 자료를 찾았습니다.
http://www.xpressengine.com/16467971#comment_17495980
그런데 이미지 사이즈가 클 경우 게시물을 보는데 불편함이 있어서
이미지의 크기를 일정하게 정해서 삽입할수 없을까요?
<!--@if($module_info->auto_img_insert!='N')-->
{@ $uploaded_list = $oDocument->getUploadedFiles() }
<!--@foreach($uploaded_list as $key => $file)-->
source_filename'>{@$file_explode=explode(".",strtoupper($file->source_filename))}
<!--@if($file_explode[1]=="GIF" || $file_explode[1]=="JPG" || $file_explode[1]=="PNG" || $file_explode[1]=="BMP")-->
{@$picture.="<p align=center><img src="./.$file->uploaded_filename." style='' editor_component='image_link' /><br /></p>"}
<!--@end-->
<!--@end-->
<!--@if($picture)-->
{@ $cont=$oDocument->get('content')}
{@ $oDocument->add('content',$cont.$picture)}
<!--@end-->
{$oDocument->getContent()}
<!--@else-->
{$oDocument->getContent()}
<!--@end-->
에서 수정하면 될것같은데 이쪽으로는 아는게 하나도 없어서 도움 요청합니다.
혹시 이런거 요청하면 저작권 관련해서 문제가 될런지 모르겠네요
{@$picture.="<p align=center><img src='".$file->uploaded_filename."'여기에 크기를 지정하면 되네요style='' editor_component='image_link' />
추가 질문이 생기는데
이미지 비율에 맞게 삽입은 안될까요??
꼬리에 꼬리를 무는 문제군요 ^^;;