Code Monkey home page Code Monkey logo

qml-imagepicker's Introduction

用途&特性

  • qml图库组件或叫做图片选择器
  • 完全是qt做的没有调用系统Gallery,可以说是跨平台的
  • 你可以方便的进行优化和扩展

使用

  • 当需要集成到你的项目时你需要把gallerymanager.h放入头文件目录里
  • gallerymanager.cpp放入源代码目录
  • 在main函数中注册组件 qmlRegisterType<GalleryManager>("DjangoX.Gallery", 1, 0, "GalleryManager");
  • ImagePicker.qml放进资源系统
  • 在需要调用的地方使用组件
    ImagePicker{
        id:imagePicker
        anchors.fill:parent
        maxDepth:3  //遍历深度
        loadingImage: "qrc:/imagepicker/loading"  //加载中图片
        checkImage: "qrc:/imagepicker/check"      //选择图片遮罩
        onSelect:{  //当点击图片时
            console.log(filePath) //打印图片路径
        }
    }

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.