Skip to content

Get actual image size #3

@drianautz

Description

@drianautz

Hello, actually how to get the actuall image size as currently is always set the image to 256 x 256 on w x h, event i change the code to >

var file = files[0];
var width = $("#profile-avatar").width();
var height = $("#profile-avatar").height();

resizeImage: function(file, width, height, callback) {

  var fileTracker = new FileReader;
  fileTracker.onload = function() {
    Resample(
      this.result,
      width,
      height,
      callback
    );
  }
  fileTracker.readAsDataURL(file);

  var minValue = Math.min(img.height, img.width);
  var _width = $("#profile-avatar").width();
  var _height = $("#profile-avatar").height();
  width == null && (width = _width );
  height == null && (height =  _height);
  console.log(_width);
  console.log(_height);

its always show me the 256

Thanks

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions