국립농산물품질관리원(원장 김대근)은 2014. 10. 15 ~ 11. 15까지 양곡 매매, 가공업체를 대상으로 양곡표시 이행실태를 조사하고 그 결과를 발표하였다.
금번 조사는 투명성과 객관성 확보 차원에서 (사)전국주부교실 중앙회에 위탁하여 전국을 대상으로 임의 추출한 1,116개소(매매 1,036, 가공 80개소)를 현장 방문하여 양곡표시의 적정 여부를 테마별(업태, 품목, 항목)로 조사하였다.
$(function() {
$('#news_body_area img').each(function(i) {
var tmpImage = new Image();
tmpImage.src = $(this).attr('src');
if (parseInt(tmpImage.width) > 550) {
$(this).css('width', '550px');
}
});
});
var MYNEWS_PHOTO_LIMIT_WIDTH = parseInt("550");
$("img[xtype='photo']").load(function(obj) {
var title = $(this).attr('title');
$(this).attr('alt', title);
$(this).removeAttr('title');
var image_align_class = "";
var clazz = $(this).attr('class');
if (clazz != null && clazz.length > 0) {
image_align_class = " "+clazz;
}
$(this).attr('class', 'img');
$(this).removeAttr('xtype');
var w = parseInt($(this).css('width'));
if (isNaN(w)) {
w = 0;
}
var h = parseInt($(this).css('height'));
if (isNaN(h)) {
h = 0;
}
if (w <= 0) {
var timg = new Image();
timg.src = this.src;
w = parseInt(timg.width);
if (isNaN(w)) {
//...
}
}
if (w > MYNEWS_PHOTO_LIMIT_WIDTH) {
var pct = parseFloat(MYNEWS_PHOTO_LIMIT_WIDTH) / parseFloat(w);
w = MYNEWS_PHOTO_LIMIT_WIDTH;
if (pct > 0 && pct < 1 && h > 0) {
h = Math.floor(parseFloat(h) * pct);
}
}
$(this).css('width', w+"px");
if (h > 0) {
$(this).css('height', h+"px");
}
$(this).wrap("");
if (title != null && title.length > 0) {
if (title.indexOf('▲') == -1) {
title = '▲' + title;
}
$(this).after("