从智能手机相机中选择要发布的图像

时间:2018-03-29 18:39:47

标签: jquery angularjs html5

如何让用户在angularjs单页面应用程序中使用用户智能手机相机捕获图像并发布?我已经尝试过HTML5标签媒体捕获以及一些jQuery功能,它们只允许我浏览图像,但不允许我从相机中选择拍摄的照片。

1 个答案:

答案 0 :(得分:0)

您使用的是哪种移动浏览器? Android还是iOS?

您是否以这种方式尝试过HTML5 Media Capture:

#include <iostream>
#include <SFML/Graphics.hpp>

int main()
{
    // Create the main window
    sf::RenderWindow window(sf::VideoMode(800, 600), "SFML window");
    // Load a sprite to display
    sf::Texture texture;
    if (!texture.loadFromFile("professor_walk_cycle_no_hat.png"))
        return EXIT_FAILURE;
    sf::Sprite sprite(texture);

    // Start the game loop
    while (window.isOpen())
    {
        // Process events
        sf::Event event;
        while (window.pollEvent(event))
        {
            // Close window: exit
            if (event.type == sf::Event::Closed)
                window.close();
        }
        // Clear screen
        window.clear();
        // Draw the sprite
        window.draw(sprite);
        // Update the window
        window.display();
    }
    return EXIT_SUCCESS;
}