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=9d0a820e7e514a759b6f3088c3ec8703f11d3d44;hp=1586218046c7b44dc5615ecc3525fd3e123ff93d;hb=refs%2Ftags%2Fdali_1.2.61;hpb=f871dce5373ce3d4f414963a68505eefc0d49cd2 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 1586218..9d0a820 100644 --- a/dali-toolkit/public-api/image-loader/sync-image-loader.h +++ b/dali-toolkit/public-api/image-loader/sync-image-loader.h @@ -49,44 +49,47 @@ namespace SyncImageLoader */ /** - * @brief Load an image synchronously. + * @brief Loads an image synchronously. * Note: When using this method, the following defaults will be used: * fittingMode = FittingMode::DEFAULT * samplingMode = SamplingMode::BOX_THEN_LINEAR * orientationCorrection = true * * @SINCE_1_2_14 - * - * @param[in] url The URL of the image file to load. - * @return A PixelData object containing the image, or an invalid object on failure. + * @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 */ DALI_IMPORT_API PixelData Load( const std::string& url ); /** - * @brief Load an image synchronously by specifying the target dimensions. + * @brief Loads an image synchronously by specifying the target dimensions. * Note: When using this method, the following defaults will be used: * fittingMode = FittingMode::DEFAULT * samplingMode = SamplingMode::BOX_THEN_LINEAR * orientationCorrection = true * * @SINCE_1_2_14 - * - * @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. + * @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 */ DALI_IMPORT_API PixelData Load( const std::string& url, ImageDimensions dimensions ); /** - * @brief Load an image synchronously by specifying the target dimensions and options. + * @brief Loads an image synchronously by specifying the target dimensions and options. * @SINCE_1_2_14 - * - * @param[in] url The URL of the image file to load. - * @param[in] dimensions The width and height to fit the loaded image to. - * @param[in] fittingMode The method used to fit the shape of the image before loading to the shape defined by the size parameter. - * @param[in] samplingMode The filtering method used when sampling pixels from the input image while fitting it to desired size. - * @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. + * @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 + * @param[in] fittingMode The method used to fit the shape of the image before loading to the shape defined by the size parameter + * @param[in] samplingMode The filtering method used when sampling pixels from the input image while fitting it to desired size + * @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 */ DALI_IMPORT_API PixelData Load( const std::string& url, ImageDimensions dimensions,