Merge "Update README for dali-swig" into devel/master
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / public-api / image-loader / sync-image-loader.h
index 3450ba9..c065664 100644 (file)
@@ -56,11 +56,13 @@ namespace SyncImageLoader
  * orientationCorrection = true
  *
  * @SINCE_1_2_14
+ * @REMARK_INTERNET
+ * @REMARK_STORAGE
  *
  * @param[in] url The URL of the image file to load.
  * @return A PixelData object containing the image, or an invalid object on failure.
  */
-PixelData Load( const std::string& url );
+DALI_IMPORT_API PixelData Load( const std::string& url );
 
 /**
  * @brief Load an image synchronously by specifying the target dimensions.
@@ -70,16 +72,20 @@ PixelData Load( const std::string& url );
  * orientationCorrection = true
  *
  * @SINCE_1_2_14
+ * @REMARK_INTERNET
+ * @REMARK_STORAGE
  *
  * @param[in] url The URL of the image file to load.
  * @param[in] dimensions The width and height to fit the loaded image to.
  * @return A PixelData object containing the image, or an invalid object on failure.
  */
-PixelData Load( const std::string& url, ImageDimensions dimensions );
+DALI_IMPORT_API PixelData Load( const std::string& url, ImageDimensions dimensions );
 
 /**
  * @brief Load an image synchronously by specifying the target dimensions and options.
  * @SINCE_1_2_14
+ * @REMARK_INTERNET
+ * @REMARK_STORAGE
  *
  * @param[in] url The URL of the image file to load.
  * @param[in] dimensions The width and height to fit the loaded image to.
@@ -88,7 +94,7 @@ PixelData Load( const std::string& url, ImageDimensions dimensions );
  * @param[in] orientationCorrection Reorient the image to respect any orientation metadata in its header.
  * @return A PixelData object containing the image, or an invalid object on failure.
  */
-PixelData Load( const std::string& url,
+DALI_IMPORT_API PixelData Load( const std::string& url,
                 ImageDimensions dimensions,
                 FittingMode::Type fittingMode,
                 SamplingMode::Type samplingMode,