X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Fpublic-api%2Fimage-loader%2Fsync-image-loader.h;h=c065664e53fcc6b3023b65f2219e829dc3113c4f;hp=3450ba9a5eba390fa3530d9e8ea9bb0e8e0dd219;hb=baeb5ad3a0b2b1535c48dfb25f3d7ace66cde857;hpb=7386b0e7cc501917168284f388353dab660db58f diff --git a/dali-toolkit/public-api/image-loader/sync-image-loader.h b/dali-toolkit/public-api/image-loader/sync-image-loader.h index 3450ba9..c065664 100644 --- a/dali-toolkit/public-api/image-loader/sync-image-loader.h +++ b/dali-toolkit/public-api/image-loader/sync-image-loader.h @@ -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,