Yes you can.
See my working fiddle here:
http://jsfiddle.net/MonkimoE/0wtgm8a1/
- You need to add an id.
example: <img class="img" id="imageid".....
-
Delete all atribute “data-width” and “data-height”. because it will added automatically.
-
Add this javascript:
(you may change the ‘$’ to ‘jQuery’ if doesn’t work with your theme)
<script> var img = document.getElementById('imageid'); var width = img.naturalWidth; var height = img.naturalHeight;
$( document ).ready(function() {
$('div.aspectRatioPlaceholder').find('*').attr('data-width', width);
$('div.aspectRatioPlaceholder').find('*').attr('data-height', height); }); </script>
Better is using javascript like example above.
But if you want to process with php. you can modify your themes/plugin using this:
<?php list($width, $height) = getimagesize("image URL here"); ?>
it will produce $width as real image width, $height as real image height.
Good luck!