Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

User:Alex 21/script-imageres.js

    From Wikipedia, the free encyclopedia
    <User:Alex 21
    Code that you insert on this page could contain malicious content capable of compromising your account. If you import a script from another page with "importScript", "mw.loader.load", "iusc", or "lusc", take note that this causes you to dynamically load a remote script, which could be changed by others. Editors are responsible for all edits and actions they perform, including by scripts. User scripts are not centrally supported and may malfunction or become inoperable due to software changes.A guide to help you find broken scripts is available. If you are unsure whether code you are adding to this page is safe, you can ask at theappropriate village pump.
    This codewill be executed when previewing this page.
    Thisuser script seems to have a documentation page atUser:Alex 21/script-imageres.
    Note: After saving, you have to bypass your browser's cache to see the changes.Google Chrome,Firefox,Microsoft Edge andSafari: Hold down the⇧ Shift key and click theReload toolbar button. For details and instructions about other browsers, seeWikipedia:Bypass your cache.
    $(document.getElementsByClassName("fileInfo")).ready(function(){// Filenamespace onlyif(mw.config.get("wgNamespaceNumber")!==6)return;// Get file information: height and widthvarfileInfo=document.getElementsByClassName("fileInfo")[0];if(!fileInfo)return;varheight_width=fileInfo.innerHTML.match(/([\d,]+) × ([\d,]+)/);// With the height and width, calculate the total pixel countvarwidth=parseInt(height_width[1].replace(/,/g,''));varheight=parseInt(height_width[2].replace(/,/g,''));vartotal_pixels=height*width;// Maximum pixel count per IMAGERESvarmax_pixels=100000;// Calculate the new width, height, dimensions and total pixel count with the// formula from IMAGERES, and confirm the new total pixel count is within rangevarnew_width=Math.floor(Math.sqrt(max_pixels*width/height));varnew_height=Math.round(height*new_width/width);varnew_total_pixels=new_width*new_height;while(new_total_pixels>max_pixels){new_width--;new_height=Math.round(height*new_width/width);new_total_pixels=new_width*new_height;}varnew_dimensions=new_width+" × "+new_height;// Colour coding the results; green = good, red = badvarcolour_start="";varcolour_end="";if(total_pixels>max_pixels){colour_start="<span style='color:red'><b>";colour_end="</b></span>";}else{colour_start="<span style='color:green'>";colour_end="</span>";}// Add the total pixel count after the initial dimensionsfileInfo.innerHTML=fileInfo.innerHTML.replace("pixels,","pixels, "+colour_start+number_format(total_pixels)+colour_end+" total pixels, ");// If the image exceeds 0.1MP, then report the errorif(total_pixels>max_pixels){// Create a image link with the maximum reduced sizevarimage_link=document.getElementsByClassName('internal')[0].href;varnew_image_link=image_link.replace("/en/","/en/thumb/")+"/"+new_width+"px-"+image_link.substr(image_link.lastIndexOf("/")+1);varreuploadReason="Resize to less than 0.1 MP per [[WP:IMAGERES]] via [[User:Alex 21/script-imageres|script]].";varreplaceLink=document.getElementById('mw-imagepage-reupload-link');if(!replaceLink||!replaceLink.children)return;varreuploadLink=replaceLink.children[0];varreuploadLinkNew=reuploadLink.href+"&wpUploadDescription="+reuploadReason;// Add the maximum size of the image that's less than 0.1MP, the total pixel count, the new image link, and the reupload link summaryfileInfo.innerHTML=fileInfo.innerHTML+"<br>(maximum size: "+colour_start+new_dimensions+colour_end+" pixels, "+number_format(new_total_pixels)+" total pixels, <a href='"+new_image_link+"'>resized file</a>, <a href='"+reuploadLinkNew+"'>upload resized file</a>)";}// Add commas to values over 1,000functionnumber_format(x){returnx.toString().replace(/\B(?=(\d{3})+(?!\d))/g,",");}});
    Retrieved from "https://en.wikipedia.org/w/index.php?title=User:Alex_21/script-imageres.js&oldid=1181705240"

    [8]ページ先頭

    ©2009-2025 Movatter.jp